/* =========================================================
   FARAKLIT — Premium Blog CSS
   Renk Paleti: Gece Laciverti #0A1A2F | Krem #F5F1E8 | Altın #C9A86A
   Tipografi: Playfair Display (başlık) | Inter + Lora (gövde)
   ========================================================= */

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

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
a { text-decoration: none; }

/* ─── CSS VARIABLES — LIGHT MODE ────────────────────────── */
:root {
  --navy:       #0A1A2F;
  --cream:      #F5F1E8;
  --gold:       #C9A86A;
  --gold-h:     #B8965A;
  --gold-dim:   rgba(201,168,106,0.13);

  --bg:         #F5F1E8;
  --bg-alt:     #EDE9DF;
  --surface:    #FFFFFF;
  --surface-2:  #F8F5EF;
  --border:     #E2DDD3;

  --text:       #1A2332;
  --text-2:     #526070;
  --text-3:     #8A94A0;

  --nav-bg:     rgba(245,241,232,0.94);
  --shadow-sm:  0 2px 12px rgba(10,26,47,0.06);
  --shadow:     0 8px 32px rgba(10,26,47,0.10);
  --shadow-lg:  0 20px 60px rgba(10,26,47,0.14);

  --r:   8px;
  --rl:  16px;
  --t:   0.28s ease;
  --mw:  1200px;
  --cw:  780px;
}

/* ─── CSS VARIABLES — DARK MODE ─────────────────────────── */
[data-theme="dark"] {
  --bg:        #0A1A2F;
  --bg-alt:    #0D2040;
  --surface:   #112A47;
  --surface-2: #0F2342;
  --border:    #1C3A60;

  --text:      #EAE6DD;
  --text-2:    #A0B0C0;
  --text-3:    #6B7D90;

  --nav-bg:    rgba(10,26,47,0.96);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.25);
  --shadow:    0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.50);
}

/* ─── BASE ───────────────────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background var(--t), color var(--t);
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; line-height: 1.25; color: var(--text); }
a { color: var(--gold); transition: color var(--t); }
a:hover { color: var(--gold-h); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container  { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.content-w  { max-width: var(--cw); margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.gold-line { display: block; width: 56px; height: 3px; background: var(--gold); margin-bottom: 20px; border-radius: 2px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--gold); }

.section-title { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 12px; }
.section-sub   { font-size: .95rem; color: var(--text-2); margin-bottom: 48px; font-family:'Inter',sans-serif; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--r);
  font-size: .88rem; font-weight: 600; cursor: pointer;
  border: none; transition: all var(--t);
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-h); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,106,.35); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold-dim); transform: translateY(-2px); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t), border-color var(--t);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--mw); margin: 0 auto; padding: 0 28px;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-name {
  font-family: 'Playfair Display', serif; font-size: 1.55rem;
  font-weight: 700; color: var(--text); letter-spacing: -.5px;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-tag { font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-3); margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: .84rem; font-weight: 500; color: var(--text-2);
  padding: 7px 14px; border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: var(--gold-dim); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface);
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; color: var(--text-2);
  transition: all var(--t); font-size: .9rem;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--nav-bg); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px 24px; z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a { display: block; padding: 13px 0; font-size: .95rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }

/* ─── SEARCH OVERLAY ─────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; background: rgba(10,26,47,.88);
  backdrop-filter: blur(8px); z-index: 2000;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 110px; opacity: 0; visibility: hidden; transition: all var(--t);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box { width: 100%; max-width: 580px; padding: 0 24px; }
.search-wrap {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 2px solid var(--gold);
  border-radius: 50px; padding: 6px 6px 6px 24px;
}
.search-wrap input {
  flex: 1; border: none; background: transparent;
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  color: var(--text); outline: none; padding: 10px 0;
}
.search-wrap input::placeholder { color: var(--text-3); }
.search-close-btn {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--gold); color: var(--navy); cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--t);
}
.search-close-btn:hover { background: var(--gold-h); }
.search-results { margin-top: 16px; }
.search-result {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 18px; margin-bottom: 6px;
  display: block; text-decoration: none; transition: all var(--t);
}
.search-result:hover { border-color: var(--gold); transform: translateX(4px); }
.search-result-title { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--text); margin-bottom: 3px; }
.search-result-cat { font-size: .75rem; color: var(--gold); }

/* ─── PAGE LOADER ────────────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-brand { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); animation: pulsate 1.4s ease-in-out infinite; }
@keyframes pulsate { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ─── READING PROGRESS ───────────────────────────────────── */
.read-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1100; background: transparent; }
.read-progress-bar { height: 100%; background: var(--gold); width: 0; transition: width .1s linear; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--navy); color: var(--cream);
  padding: 14px 22px; border-radius: var(--r);
  font-size: .84rem; z-index: 3000;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(201,168,106,.3);
  transform: translateY(80px); opacity: 0; transition: all .3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 500px at 15% 60%, rgba(201,168,106,.07) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 85% 20%, rgba(10,26,47,.05) 0%, transparent 55%);
}
[data-theme="dark"] .hero-glow {
  background:
    radial-gradient(ellipse 700px 500px at 15% 60%, rgba(201,168,106,.10) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 85% 20%, rgba(201,168,106,.04) 0%, transparent 55%);
}
.hero-inner { position: relative; z-index: 1; max-width: var(--mw); margin: 0 auto; padding: 100px 28px 80px; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 700; line-height: 1.12; max-width: 860px;
  margin-bottom: 28px; letter-spacing: -1.5px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc { font-size: 1.08rem; color: var(--text-2); max-width: 540px; line-height: 1.85; margin-bottom: 48px; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-3); font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.15)} }

/* Stats */
.hero-stats { display: flex; gap: 52px; margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-stat-n { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.hero-stat-l { font-size: .78rem; color: var(--text-3); letter-spacing: .5px; }

/* ─── ARTICLE CARDS ──────────────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 28px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.card-img {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.card-img-psikoloji { background: linear-gradient(135deg, #0A1A2F 0%, #1b3f63 100%); }
.card-img-felsefe   { background: linear-gradient(135deg, #1a1508 0%, #3a2e0e 100%); }
.card-img-teoloji   { background: linear-gradient(135deg, #081a12 0%, #0f3326 100%); }

.card-body { padding: 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.badge {
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-dim); padding: 3px 10px; border-radius: 50px;
}
.meta-dot { width: 3px; height: 3px; background: var(--text-3); border-radius: 50%; }
.meta-text { font-size: .75rem; color: var(--text-3); display: flex; align-items: center; gap: 4px; }
.card-title { font-size: 1.22rem; font-weight: 600; line-height: 1.38; margin-bottom: 10px; color: var(--text); transition: color var(--t); }
.card:hover .card-title { color: var(--gold); }
.card-excerpt { font-size: .85rem; color: var(--text-2); line-height: 1.75; flex: 1; margin-bottom: 22px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--border); }
.read-link { font-size: .8rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap var(--t); }
.card:hover .read-link { gap: 10px; }

/* Featured Card */
.featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden; margin-bottom: 56px;
  transition: all var(--t);
}
.featured-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.featured-img { min-height: 380px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.featured-body { padding: 52px 44px; display: flex; flex-direction: column; justify-content: center; }
.featured-tag { font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.featured-title { font-size: 2rem; line-height: 1.22; margin-bottom: 18px; }
.featured-excerpt { font-size: .92rem; color: var(--text-2); line-height: 1.8; margin-bottom: 28px; flex: 1; }

/* ─── CATEGORY SECTION ───────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: all var(--t); display: block; text-decoration: none;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.cat-header { padding: 36px 28px; }
.cat-psikoloji { background: linear-gradient(135deg, #0A1A2F, #1a3f6a); }
.cat-felsefe   { background: linear-gradient(135deg, #1c1505, #332c0b); }
.cat-teoloji   { background: linear-gradient(135deg, #07180e, #0e3020); }
.cat-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.cat-count { font-size: .75rem; color: rgba(245,241,232,.65); }
.cat-body { padding: 22px 28px; }
.cat-desc { font-size: .84rem; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.cat-arrow { color: var(--gold); font-size: 1.1rem; display: inline-block; transition: transform var(--t); }
.cat-card:hover .cat-arrow { transform: translateX(5px); }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 64px; text-align: center;
}
.nl-icon { font-size: 2.4rem; margin-bottom: 18px; }
.nl-title { font-size: 1.8rem; margin-bottom: 12px; }
.nl-desc { font-size: .9rem; color: var(--text-2); margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }
.nl-form { display: flex; max-width: 420px; margin: 0 auto; gap: 8px; }
.nl-input {
  flex: 1; padding: 12px 18px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--bg);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: .88rem;
  outline: none; transition: border-color var(--t);
}
.nl-input:focus { border-color: var(--gold); }
.nl-input::placeholder { color: var(--text-3); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--navy); color: var(--cream); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--cream); margin-bottom: 14px; }
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: .84rem; color: rgba(245,241,232,.6); line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 37px; height: 37px; border-radius: 50%;
  border: 1px solid rgba(245,241,232,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,241,232,.6); font-size: .85rem;
  transition: all var(--t); text-decoration: none;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: .84rem; color: rgba(245,241,232,.6); transition: color var(--t); }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(245,241,232,.1); }
.footer-bottom p { font-size: .78rem; color: rgba(245,241,232,.4); }

/* ─── CATEGORY FILTER PILLS ──────────────────────────────── */
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.pill {
  padding: 7px 18px; border-radius: 50px; font-size: .8rem; font-weight: 500;
  border: 1.5px solid var(--border); color: var(--text-2);
  cursor: pointer; transition: all var(--t); background: transparent;
}
.pill:hover, .pill.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ─── PAGE HEADER ────────────────────────────────────────── */
.page-hero {
  padding: 148px 0 72px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.page-hero-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.page-hero-title { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.page-hero-desc { font-size: 1.05rem; color: var(--text-2); max-width: 560px; line-height: 1.8; }

/* ─── BREADCRUMBS ────────────────────────────────────────── */
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--text-3); flex-wrap: wrap; margin-bottom: 28px; }
.breadcrumbs a { color: var(--text-2); transition: color var(--t); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--border); }
.breadcrumbs .curr { color: var(--gold); }

/* ─── SINGLE ARTICLE ─────────────────────────────────────── */
.article-header { padding: 120px 0 56px; border-bottom: 1px solid var(--border); background: var(--surface); }
.article-header-inner { max-width: var(--cw); margin: 0 auto; padding: 0 28px; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.article-title { font-size: clamp(1.9rem, 5vw, 3.1rem); font-weight: 700; line-height: 1.18; margin-bottom: 22px; letter-spacing: -.5px; }
.article-lead {
  font-family: 'Lora', serif; font-size: 1.12rem; color: var(--text-2);
  line-height: 1.85; border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 28px;
}
.article-info { display: flex; align-items: center; gap: 20px; font-size: .82rem; color: var(--text-3); }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--cw)) 280px;
  gap: 64px;
  max-width: calc(var(--cw) + 280px + 64px);
  margin: 0 auto; padding: 60px 28px;
  align-items: start;
}
.article-body { min-width: 0; }
.article-body h2 { font-size: 1.7rem; margin: 48px 0 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gold-dim); }
.article-body h3 { font-size: 1.28rem; margin: 36px 0 14px; }
.article-body p  { font-family: 'Lora', serif; font-size: 1.04rem; line-height: 1.92; margin-bottom: 22px; }
.article-body blockquote {
  border-left: 4px solid var(--gold); padding: 18px 24px;
  margin: 32px 0; background: var(--gold-dim); border-radius: 0 8px 8px 0;
}
.article-body blockquote p { font-style: italic; margin: 0; font-size: 1.08rem; }
.article-body ul, .article-body ol { font-family: 'Lora', serif; font-size: 1.04rem; line-height: 1.9; margin-bottom: 22px; padding-left: 28px; }
.article-body li { margin-bottom: 8px; }
.article-body .author-note { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 20px 24px; margin: 32px 0; font-size: .88rem; color: var(--text-2); }

/* Sidebar */
.article-sidebar { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 24px; }
.sidebar-title { font-size: .67rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.toc-list { list-style: none; border-left: 2px solid var(--border); }
.toc-list li { padding: 5px 0 5px 14px; border-left: 2px solid transparent; margin-left: -2px; transition: all var(--t); }
.toc-list li.active { border-left-color: var(--gold); }
.toc-list a { font-size: .8rem; color: var(--text-2); display: block; line-height: 1.5; transition: color var(--t); }
.toc-list li.active a, .toc-list a:hover { color: var(--gold); }
.toc-list .toc-h3 { padding-left: 26px; }
.share-row { display: flex; flex-direction: column; gap: 7px; }
.share-btn {
  display: flex; align-items: center; gap: 10px; padding: 9px 14px;
  border-radius: 8px; border: 1px solid var(--border); background: transparent;
  color: var(--text); font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: all var(--t); text-decoration: none;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* Related Articles */
.related-section { padding: 56px 0; border-top: 1px solid var(--border); margin-top: 40px; }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-symbol {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a3f6a);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(201,168,106,.2); margin: 0 auto 40px;
}
.about-content { max-width: 760px; margin: 0 auto; padding: 72px 28px; }
.about-content h2 { font-size: 1.65rem; margin: 44px 0 18px; }
.about-content p { font-family: 'Lora', serif; font-size: 1.04rem; line-height: 1.92; color: var(--text-2); margin-bottom: 22px; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.mission-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 28px 22px; text-align: center;
  transition: all var(--t);
}
.mission-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.mission-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.mission-title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.mission-desc { font-size: .82rem; color: var(--text-2); line-height: 1.7; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; max-width: 960px; margin: 0 auto; padding: 72px 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-2); margin-bottom: 7px; letter-spacing: .3px; }
.form-input, .form-textarea {
  width: 100%; padding: 11px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--bg);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: .88rem;
  outline: none; transition: border-color var(--t);
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { height: 150px; resize: vertical; font-family: 'Lora', serif; }
.contact-social-row { display: flex; gap: 10px; margin-top: 20px; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.fade-up { animation: fadeUp .6s ease forwards; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1100px){
  .article-layout { grid-template-columns: 1fr; max-width: var(--cw); }
  .article-sidebar { position: static; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px){
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .hero-title { font-size: 2.2rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-box { padding: 36px 24px; }
  .nl-form { flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .featured-body { padding: 28px; }
}
@media(max-width:480px){
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
}
