/* faithful-base.css — baseline layout so pages NEVER look like bare browser defaults.
   Injected by ensure_theme_css when archive theme CSS is thin / CDN-only (WP.com).
   Targets common WP class names from Argent/Divi/twentysomething archives.
*/
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  margin: 0;
  padding: 0;
  color: #1a1a1a;
  background: #f6f3ee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}
a { color: #0b5cab; text-decoration: none; }
a:hover { text-decoration: underline; }
.site, #page, .hfeed, .site-content, #content, .content-area, #primary {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
.site-header, #masthead, header[role="banner"] {
  background: #1f2a24;
  color: #f4f1ea;
  padding: 1.25rem 1.25rem 1rem;
  margin: 0 0 1.75rem;
  border-bottom: 4px solid #c4a35a;
}
.site-header a, #masthead a, header[role="banner"] a { color: #f4f1ea; }
.site-title, .site-header .site-title, .site-branding .site-title {
  font-family: Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}
.site-title a { text-decoration: none !important; border: 0; color: inherit; }
.site-description {
  margin: 0;
  opacity: 0.85;
  font-size: 0.95rem;
  font-style: italic;
}
.main-navigation, #site-navigation, nav[role="navigation"] {
  margin-top: 0.85rem;
}
.main-navigation ul, #primary-menu, .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
.main-navigation li { margin: 0; }
.main-navigation a {
  color: #f4f1ea;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.menu-toggle, .screen-reader-text.skip-link { 
  /* keep accessible but don't look like raw browser button mess */
  font-family: system-ui, sans-serif;
}
button.menu-toggle {
  background: #c4a35a;
  color: #1f2a24;
  border: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}
/* when nav is a naked UL after toggle (no JS): still readable */
.main-navigation .menu { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; list-style: none; padding: 0; }

.site-main, #main, .content-area {
  background: #fff;
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
article, .post, .hentry, .type-post {
  padding: 0 0 1.5rem;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #e6e0d6;
}
article:last-child, .hentry:last-child { border-bottom: 0; }
.entry-title, .entry-header .entry-title, h1.entry-title, h2.entry-title {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  color: #142018;
}
.entry-title a { color: #142018; text-decoration: none !important; }
.entry-title a:hover { color: #0b5cab; }
.entry-meta, .posted-on, .byline {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  color: #6b6560;
  margin: 0 0 0.75rem;
}
.entry-summary, .entry-content, .entry-content p {
  color: #2c2c2c;
}
.entry-content img, .post-thumbnail img, .wp-post-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.widget-area, #secondary, aside.widget-area {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e6e0d6;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}
.widget { margin: 0 0 1.25rem; }
.widget-title, .widget h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1f2a24;
  border-bottom: 2px solid #c4a35a;
  padding-bottom: 0.35rem;
  margin: 0 0 0.65rem;
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: 0.25rem 0; border-bottom: 1px dotted #e6e0d6; }
.site-footer, #colophon, footer[role="contentinfo"] {
  max-width: 1080px;
  margin: 2rem auto 0;
  padding: 1.25rem;
  color: #6b6560;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  text-align: center;
}
/* hide WP.com chrome leftovers */
#actionbar, .wpcom-masterbar, #wpadminbar { display: none !important; }
@media (min-width: 900px) {
  .site-content, #content {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.75rem;
    align-items: start;
  }
  .widget-area, #secondary { margin-top: 0; padding-top: 0; border-top: 0; }
  .content-area, #primary { grid-column: 1; }
  .widget-area, #secondary { grid-column: 2; }
}
