/* ══════════ PUBLICACIONES — BLOG STYLES ══════════ */
/* Uses same :root variables from styles.css */

:root {
  --teal: #3BBFA0;
  --teal-dark: #28917A;
  --gold: #F5A623;
  --gold-dark: #C47D0A;
  --navy: #1B2A4A;
  --navy-mid: #273D6A;
  --navy-dark: #0D1827;
  --off-white: #F7F5F0;
  --white: #fff;
  --text-muted: #6B7280;
  --border: #E5E1D8;
  --font-head: 'League Spartan', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== NAV (same as index.html) ========== */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: var(--navy);
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-sumko {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 8px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 22px !important;
  border-radius: 3px;
  font-weight: 600 !important;
  border-bottom: none !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: #fff !important; }

/* ========== HERO BLOG ========== */
.hero-blog {
  background: var(--navy);
  color: white;
  padding: 80px 32px 100px;
  position: relative;
  overflow: hidden;
}
.hero-blog::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(60px);
}
.hero-blog::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 250px;
  height: 250px;
  background: var(--teal);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(70px);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title-accent {
  color: var(--gold);
  font-weight: 800;
  text-transform: lowercase;
}
.hero-subtitle {
  font-size: 18px;
  max-width: 600px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

/* ========== FILTROS ========== */
.filters {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  position: sticky;
  top: 56px;
  z-index: 50;
}
.filters-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tag {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--off-white);
  color: var(--navy);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tag:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.filter-tag.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  min-width: 280px;
}
.filter-search input {
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  color: var(--navy);
}
.filter-search input::placeholder { color: var(--text-muted); }

/* ========== POSTS SECTION ========== */
.posts-section { padding: 80px 32px; }
.posts-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.posts-section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.posts-section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
}
.posts-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
}
.posts-title-accent {
  color: var(--gold);
  font-weight: 800;
  text-transform: lowercase;
}

/* ========== FEATURED POST ========== */
.post-featured {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.post-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(27,42,74,0.15);
}
.post-featured-image {
  position: relative;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}
.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-featured-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.post-featured-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.post-featured-meta-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.post-featured-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.post-featured-excerpt {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}
.post-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
}
.post-featured-link svg { transition: transform 0.2s; }
.post-featured-link:hover svg { transform: translateX(4px); }

/* ========== POSTS GRID ========== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27,42,74,0.1);
}
.post-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card-media.video::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}
.post-card-media.video::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 16px solid var(--navy);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  z-index: 3;
}
.post-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
}
.post-card-tag.gold { background: var(--gold); color: var(--navy); }
.post-card-tag.teal { background: var(--teal); color: white; }
.post-card-tag.white { background: white; color: var(--navy); }
.post-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.post-card-meta-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.post-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.post-card-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex: 1;
}
.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  align-self: flex-start;
}
.post-card-link::after {
  content: '\2192';
  transition: transform 0.2s;
  color: var(--gold);
}
.post-card-link:hover::after { transform: translateX(4px); }

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination .page-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: white;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.pagination .page-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.pagination .page-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ========== NEW POST BUTTON ========== */
.btn-new-post {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-new-post:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ========== EMPTY STATE ========== */
.posts-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
  font-size: 16px;
}

/* ========== FOOTER ========== */
footer {
  background: #0D1827;
  padding: 48px 60px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: color .2s;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.18);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 22px;
  text-align: center;
  letter-spacing: .05em;
  font-family: var(--font-body);
}


/* ══════════ DETALLE DE PUBLICACIÓN ══════════ */

/* ========== BREADCRUMB ========== */
.breadcrumb {
  background: var(--off-white);
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-separator { color: var(--gold); font-weight: 700; }
.breadcrumb-current { color: var(--navy); }

/* ========== ARTICLE HEADER ========== */
.article-header {
  background: var(--navy);
  color: white;
  padding: 80px 32px 100px;
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--gold);
  opacity: 0.06;
  border-radius: 50%;
  filter: blur(80px);
}
.article-header::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: var(--teal);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(80px);
}
.article-container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.article-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.article-tag-line { width: 32px; height: 2px; background: var(--gold); }
.article-tag-text {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.article-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 900px;
}
.article-title-accent {
  color: var(--gold);
  font-weight: 800;
  text-transform: lowercase;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.article-meta-icon {
  width: 32px;
  height: 32px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.article-meta-separator { color: var(--gold); font-weight: 700; }

/* ========== HERO IMAGE ========== */
.article-hero-image {
  max-width: 1080px;
  margin: -50px auto 0;
  padding: 0 32px;
  position: relative;
  z-index: 5;
}
.article-hero-image-inner {
  position: relative;
  height: 480px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(13,24,39,0.3);
}
.article-hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-image-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  margin-top: 16px;
}

/* ========== ARTICLE BODY ========== */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
}
.article-lead {
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.article-lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
  transform: translateY(-32px);
}
.article-body p {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.75;
}
.article-body h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 56px 0 24px;
  line-height: 1.1;
  color: var(--navy);
  position: relative;
  padding-left: 24px;
}
.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background: var(--gold);
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin: 40px 0 16px;
  color: var(--navy);
}
.article-body strong { color: var(--navy); font-weight: 700; }
.article-body em { color: var(--gold-dark); font-style: italic; }
.article-body ul {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}
.article-body ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.6;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--teal);
}
.article-body blockquote {
  margin: 48px 0;
  padding: 32px 40px;
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  position: relative;
}
.article-body blockquote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-head);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.article-body blockquote p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
  font-style: italic;
}
.article-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}

/* Tags & share */
.article-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.article-tags span {
  padding: 8px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}
.article-share { display: flex; align-items: center; gap: 12px; }
.article-share-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.article-share-buttons { display: flex; gap: 8px; }
.article-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--navy);
  text-decoration: none;
}
.article-share-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ========== AUTHOR CARD ========== */
.author-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 80px;
}
.author-card-inner {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  color: white;
  font-size: 32px;
  font-weight: 800;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.author-info-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 4px;
}
.author-info-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.author-info-bio {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== RELATED POSTS ========== */
.related {
  background: var(--off-white);
  padding: 80px 32px;
  border-top: 1px solid var(--border);
}
.related-wrap { max-width: 1280px; margin: 0 auto; }
.related-header { margin-bottom: 48px; }
.related-section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.related-section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
}
.related-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
}
.related-title-accent {
  color: var(--gold);
  font-weight: 800;
  text-transform: lowercase;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.related-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27,42,74,0.1);
}
.related-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: white;
  color: var(--navy);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.related-card-content { padding: 24px; }
.related-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.related-card-meta-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.related-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--navy);
  color: white;
  padding: 80px 32px;
  text-align: center;
}
.cta-wrap { max-width: 720px; margin: 0 auto; }
.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 24px;
}
.cta-title-accent {
  color: var(--gold);
  font-weight: 800;
  text-transform: lowercase;
}
.cta-text {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 40px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-button:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--teal);
  color: #fff;
  padding: 13px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font-body);
  transform: translateY(70px);
  opacity: 0;
  transition: all .3s;
  z-index: 9999;
  pointer-events: none;
  font-weight: 500;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ========== LANG SWITCHER ========== */
.lang-switcher{display:flex;align-items:center;gap:4px;margin-left:20px;}
.lang-btn{background:none;border:none;color:rgba(255,255,255,.5);font-family:var(--font-head);font-size:12px;font-weight:700;letter-spacing:.1em;cursor:pointer;padding:4px 8px;transition:color .2s;}
.lang-btn:hover{color:rgba(255,255,255,.8);}
.lang-btn.active{color:var(--gold);}
.lang-sep{color:rgba(255,255,255,.3);font-size:12px;}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero-blog { padding: 60px 20px 80px; }
  .filters { padding: 20px; top: 52px; }
  .filters-wrap { flex-direction: column; align-items: stretch; }
  .filter-search { min-width: auto; }
  .posts-section { padding: 60px 20px; }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured-image { height: 280px; }
  .post-featured-content { padding: 32px 24px; }
  .posts-grid { grid-template-columns: 1fr; }
  .article-header { padding: 60px 20px 80px; }
  .article-hero-image { padding: 0 20px; }
  .article-hero-image-inner { height: 300px; }
  .article-body { padding: 60px 20px; }
  .article-body h2 { font-size: 26px; }
  .author-card { padding: 0 20px 60px; }
  .author-card-inner { flex-direction: column; text-align: center; }
  .related { padding: 60px 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .article-footer { flex-direction: column; align-items: flex-start; }
  footer { padding: 40px 24px 24px; }
}
@media (max-width: 580px) {
  .posts-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
