/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --forest: #2b3d2c;
  --forest-dark: #1a251b;
  --amber: #8a6820;
  --accent: #c05a2a;
  --gradient: linear-gradient(135deg, #2b3d2c 0%, #4a7c59 100%);
  --gradient-hero: linear-gradient(105deg, rgba(43,61,44,0.93) 0%, rgba(74,124,89,0.50) 100%);
  --white: #ffffff;
  --off-white: #f8f6f1;
  --text: #1c1c18;
  --text-muted: #6b6b5e;
  --border: #ddd8cf;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(43,61,44,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(43,61,44,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --radius: 3px;
  --radius-lg: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Lora', serif; line-height: 1.25; }

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

/* ===== READING PROGRESS BAR ===== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--amber);
  z-index: 2000;
  transition: width 0.1s linear;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid var(--amber);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.transparent {
  background: rgba(43,61,44,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled,
.site-header.article-header {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  top: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.site-header.transparent .header-logo { color: white; }
.site-header.scrolled .header-logo,
.site-header.article-header .header-logo { color: var(--forest); }

.header-logo img {
  height: 48px;
  width: auto;
  transition: filter var(--transition);
}

.site-header.transparent .header-logo img { filter: brightness(0) invert(1); }
.site-header.scrolled .header-logo img,
.site-header.article-header .header-logo img { filter: none; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.header-nav li a,
.header-nav a {
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.site-header.transparent .header-nav li a,
.site-header.transparent .header-nav a {
  color: rgba(255,255,255,0.85);
}
.site-header.transparent .header-nav li a:hover,
.site-header.transparent .header-nav a:hover {
  color: white;
  background: rgba(255,255,255,0.10);
}
.site-header.scrolled .header-nav li a,
.site-header.scrolled .header-nav a,
.site-header.article-header .header-nav li a,
.site-header.article-header .header-nav a {
  color: var(--text);
}
.site-header.scrolled .header-nav li a:hover,
.site-header.scrolled .header-nav a:hover,
.site-header.article-header .header-nav li a:hover,
.site-header.article-header .header-nav a:hover {
  color: var(--forest);
  background: var(--off-white);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem !important;
  border-radius: var(--radius) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  background: var(--accent) !important;
  color: white !important;
  transition: opacity var(--transition), transform var(--transition) !important;
}
.btn-nav-cta:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px) !important;
  background: var(--accent) !important;
}

/* ===== HOMEPAGE HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroBgScale 8s ease-out forwards;
}

@keyframes heroBgScale {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 0;
  background: var(--amber);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: white;
  max-width: 680px;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.4s;
  opacity: 0;
  line-height: 1.18;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  max-width: 500px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.6s;
  opacity: 0;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.8s;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--accent);
  color: white;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 4px 20px rgba(192,90,42,0.35);
  font-family: 'Open Sans', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,90,42,0.45);
  opacity: 0.92;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.55);
  transition: background var(--transition), border-color var(--transition);
  font-family: 'Open Sans', sans-serif;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: white;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 0.6s ease both 1.2s;
  opacity: 0;
}

.scroll-arrow {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ===== SECTION WRAPPER ===== */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }
.container { max-width: 1280px; margin: 0 auto; }
.container-md { max-width: 960px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  font-family: 'Open Sans', sans-serif;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--amber);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--forest);
  border-bottom: none;
  padding: 0;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 40px; height: 40px;
  border-radius: 0;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-number {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: white;
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ===== FEATURED ARTICLE ===== */
.featured-section { background: var(--off-white); }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
  border: 1px solid var(--border);
}

.featured-image {
  background: var(--gradient);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-image-emoji {
  font-size: 5rem;
  opacity: 0.6;
  position: relative;
  z-index: 2;
}

.featured-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 40px
  );
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--amber);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0;
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--amber);
}

.featured-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  font-family: 'Open Sans', sans-serif;
}

.featured-title {
  font-size: 1.7rem;
  color: var(--forest);
  margin-bottom: 1rem;
  line-height: 1.28;
  font-style: italic;
}

.featured-excerpt {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.meta-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.avatar-sm {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meta-sep { color: var(--border); }

.btn-featured {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--forest);
  color: white;
  transition: transform var(--transition), box-shadow var(--transition);
  align-self: flex-start;
  font-family: 'Open Sans', sans-serif;
}
.btn-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43,61,44,0.3);
}

/* ===== CATEGORY GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.category-emoji {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  display: block;
}

.category-name {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.category-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

/* ===== ARTICLES GRID ===== */
.articles-section { background: var(--off-white); }

.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  border-left: 4px solid var(--forest);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--amber);
}

/* Hide the large gradient image blocks – editorial text-first design */
.card-image { display: none; }
.card-image-gradient-1,
.card-image-gradient-2,
.card-image-gradient-3,
.card-image-gradient-4,
.card-image-gradient-5,
.card-image-gradient-6 { display: none; }

.card-body {
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.55rem;
  font-family: 'Open Sans', sans-serif;
}

.card-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.card-excerpt {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--text-muted);
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  transition: gap var(--transition), color var(--transition);
}
.article-card:hover .card-read-more {
  gap: 0.5rem;
  color: var(--amber);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Open Sans', sans-serif;
}
.about-label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--amber);
}

.about-title {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  color: var(--forest);
  margin-bottom: 1.25rem;
  line-height: 1.22;
  font-style: italic;
}

.about-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text);
}

.check-icon {
  width: 20px; height: 20px;
  border-radius: 0;
  background: var(--amber);
  color: white;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
  outline: 1px solid var(--border);
}

.about-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
}

.about-stats-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--forest);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stats-number {
  font-family: 'Lora', serif;
  font-size: 1.9rem;
  color: white;
  line-height: 1;
}

.stats-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.stats-icon {
  width: 44px; height: 44px;
  border-radius: 0;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--off-white);
  border-top: 4px solid var(--forest);
  border-bottom: 4px solid var(--forest);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--forest);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--forest);
  color: white;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(43,61,44,0.2);
  font-family: 'Open Sans', sans-serif;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43,61,44,0.3);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 0;
  border-top: 4px solid var(--amber);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo img { height: 30px; filter: brightness(0) invert(1); }

.footer-about {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* Article-page footer (inner container) */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: white; }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== ARTICLE PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb-bar {
  margin-top: 71px;
  padding: 0.85rem 2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--amber); }

.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* Article Hero – light warm style, distinct from studymind dark hero */
.article-hero {
  background: var(--off-white);
  border-bottom: 3px solid var(--amber);
  padding: 3.5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--forest);
}

.article-hero .container {
  max-width: 1280px;
  position: relative;
  z-index: 2;
  padding-left: 2rem;
}

.article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 0;
  margin-bottom: 1.25rem;
  font-family: 'Open Sans', sans-serif;
}

.article-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  color: var(--forest);
  max-width: 780px;
  line-height: 1.22;
  font-style: italic;
}

/* Meta Bar */
.meta-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.meta-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.meta-author-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.avatar-md {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
}

.author-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.meta-sep { color: var(--border); font-size: 1.2rem; line-height: 1; }

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.meta-item svg { color: var(--amber); }

.meta-updated {
  margin-left: auto;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Article Layout */
.article-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}

/* Article Content */
.article-content {
  min-width: 0;
}

.article-body {
  font-size: 1.02rem;
  line-height: 1.88;
  color: #1e1e1a;
}

.article-body > p:first-of-type::first-letter {
  float: left;
  font-family: 'Lora', serif;
  font-size: 4rem;
  line-height: 0.85;
  margin: 0.08em 0.1em 0 0;
  color: var(--forest);
  font-style: italic;
}

.article-body p {
  margin-bottom: 1.4rem;
}

.article-body h2 {
  font-size: 1.65rem;
  color: var(--forest);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
  line-height: 1.28;
  font-style: italic;
}

.article-body h3 {
  font-size: 1.15rem;
  color: var(--forest);
  margin: 1.8rem 0 0.75rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body strong { font-weight: 700; color: var(--forest); }

.article-body a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.article-body a:hover { color: var(--forest); }

/* Pull Quote */
.pull-quote {
  border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Lora', serif;
  color: var(--forest);
  line-height: 1.65;
}

/* FAQ Accordion */
.faq-section {
  margin: 2rem 0;
}

.faq-section h2 {
  font-size: 1.65rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
  font-style: italic;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

details:hover {
  box-shadow: var(--shadow-sm);
}

details[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(138,104,32,0.3);
}

summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
  line-height: 1;
}

details[open] summary {
  background: rgba(138,104,32,0.04);
}

details[open] summary::after {
  content: '−';
}

details > p,
details > div,
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* Also style direct p inside details */
details p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin: 0;
}

/* Sources Box */
.sources-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.sources-box h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.sources-box ul {
  list-style: none;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sources-box ul li {
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.sources-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* Author Box */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--forest);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 3rem 0;
}

.avatar-lg {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-box-content .author-box-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.2rem;
}

.author-box-content .author-box-role {
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.author-box-content p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  padding: 0;
  border: none;
}

/* Related Articles */
.related-section {
  margin: 3rem 0 1rem;
  border-top: 2px solid var(--border);
  padding-top: 2.5rem;
}

.related-title {
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Hide related card gradient images too */
.related-card-img { display: none; }

.related-card-content,
.related-card-body {
  padding: 1rem 1.1rem;
}

.related-card-cat {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
  display: block;
  font-family: 'Open Sans', sans-serif;
}

.related-card-content h3,
.related-card-title {
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  color: var(--forest);
  line-height: 1.35;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 85px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* TL;DR Box */
.tldr-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.tldr-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tldr-title::before {
  content: '';
  display: block;
  width: 14px; height: 2px;
  background: var(--amber);
}

.tldr-box ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.tldr-box ul li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
  margin: 0;
}
.tldr-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.78rem;
}

.tldr-box h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.7rem;
}

.tldr-box p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  padding: 0;
  border: none;
}

/* Sidebar Articles Box */
.sidebar-articles-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.sidebar-articles-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.sidebar-articles-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-articles-list li {
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.sidebar-articles-list li:last-child { border-bottom: none; }

.sidebar-articles-list li a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
  transition: color var(--transition), padding-left var(--transition);
}
.sidebar-articles-list li a:hover {
  color: var(--amber);
  padding-left: 0.35rem;
}

/* Sidebar article link (studymind class names, kept for compat) */
.sidebar-article-link {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--transition);
}
.sidebar-article-link:last-child { border-bottom: none; }
.sidebar-article-link:hover { padding-left: 0.3rem; }

.sidebar-article-dot {
  width: 6px; height: 6px;
  border-radius: 0;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.sidebar-article-text {
  font-size: 0.86rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
  transition: color var(--transition);
}
.sidebar-article-link:hover .sidebar-article-text { color: var(--amber); }

/* CTA Sidebar Box */
.sidebar-cta-box {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--amber);
}

.sidebar-cta-box > * { position: relative; z-index: 2; }

.sidebar-cta-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.sidebar-cta-title {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.sidebar-cta-box p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
  line-height: 1.55;
  padding: 0;
  border: none;
}

.btn-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--amber);
  color: white;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: 'Open Sans', sans-serif;
}
.btn-sidebar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .article-wrapper { grid-template-columns: 1fr; }
  .article-sidebar { position: static; order: -1; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 1.25rem; }
  .header-nav { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-image { min-height: 220px; }
  .articles-grid { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats-card { left: 0.5rem; bottom: -1rem; }
  .article-hero { padding: 2.5rem 1.25rem 2rem; }
  .article-hero .container { padding-left: 1.5rem; }
  .article-wrapper { padding: 2rem 1.25rem 3rem; }
  .breadcrumb-bar { padding: 0.75rem 1.25rem; }
  .meta-bar { padding: 0 1.25rem; }
  .meta-updated { display: none; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 1.25rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .article-hero h1 { font-size: 1.6rem; }
  .article-body h2 { font-size: 1.4rem; }
  .author-box { flex-direction: column; }
}
