/* =========================================
   FIFA World Cup 2026 — Page Styles
   ========================================= */

/* Dark theme override — WC page keeps its original dark look */
body.wc-page {
  --dark:       #0a1628;
  --dark2:      #0f1f3d;
  --surface:    #152240;
  --surface2:   #1a2a4a;
  --text:       #f1f5f9;
  --text-muted: #94a3b8;
  --border:     rgba(255,255,255,0.08);
  background: #0a1628;
  color: #f1f5f9;
}

/* ---- HERO ---- */
.wc-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,128,0,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,80,160,0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0a1628 0%, #0d2137 40%, #071a0e 100%);
}

.wc-grass-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 61px
    );
}

.wc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.wc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.wc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.wc-badge-ball {
  font-size: 1.2rem;
  animation: spin 4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.wc-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.wc-hero-title em {
  font-style: italic;
  color: #4ade80;
  -webkit-text-stroke: 0px;
}

.wc-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

/* Countdown */
.wc-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.wc-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 70px;
  backdrop-filter: blur(8px);
}
.wc-cd-num {
  font-size: 2rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.wc-cd-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.wc-cd-sep {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.wc-hero-flags {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 2.2rem;
}

.wc-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- STATS BAR ---- */
.wc-stats-bar {
  background: linear-gradient(90deg, #064e3b, #065f46, #064e3b);
  border-top: 1px solid rgba(74,222,128,0.2);
  border-bottom: 1px solid rgba(74,222,128,0.2);
}
.wc-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.wc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.wc-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #4ade80;
  line-height: 1;
}
.wc-stat-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wc-stat-div {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
}
@media (max-width: 600px) {
  .wc-stat-div { display: none; }
}

/* ---- HOST CITIES ---- */
.wc-cities-section {
  background: var(--dark);
  padding: 64px 0;
}
.wc-cities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.wc-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.wc-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.wc-section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Filter pills */
.wc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.wc-pill {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.wc-pill:hover  { background: rgba(255,255,255,0.1); color: #fff; }
.wc-pill.active { background: #4ade80; border-color: #4ade80; color: #0a1628; }

/* City Grid — 4 cols so each group of 4 cards fills a complete row before the ad */
.wc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .wc-grid { grid-template-columns: repeat(2, 1fr); }
}
.wc-grid .ad-infeed {
  grid-column: 1 / -1;
}
/* consistent div wrapper — always the grid item, stretches to row height */
.wc-card-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.wc-card-wrap .wc-city-card {
  flex: 1;
  height: 100%;
}

/* City Card */
.wc-city-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.wc-city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(74,222,128,0.25);
}
.wc-venue-Final   { border-color: rgba(250,204,21,0.4); }
.wc-venue-Semifinal { border-color: rgba(139,92,246,0.4); }
.wc-venue-Quarterfinal { border-color: rgba(59,130,246,0.4); }
.wc-venue-Opening { border-color: rgba(74,222,128,0.4); }

.wc-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

/* Two-image split: city left, stadium right */
.wc-img-city,
.wc-img-stadium {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
  transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
}
.wc-img-city    { left: 0; width: 50%; }
.wc-img-stadium { right: 0; width: 50%; }

/* Divider — slim sleek line */
.wc-card-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.25);
  transform: translateX(-50%);
  transition: left 0.45s cubic-bezier(0.4,0,0.2,1);
  z-index: 3;
  pointer-events: none;
}

/* Hover: city expands */
.wc-city-card:hover .wc-img-city    { width: 65%; }
.wc-city-card:hover .wc-img-stadium { width: 35%; }
.wc-city-card:hover .wc-card-img-wrap::after { left: 65%; }

/* Labels */
.wc-img-labels {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 4;
  pointer-events: none;
}
.wc-img-label-city,
.wc-img-label-stadium {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Fallback for .wc-card-img used elsewhere */
.wc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.wc-city-card:hover .wc-card-img { transform: scale(1.05); }
.wc-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.wc-venue-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.wc-badge-Final       { background: #fbbf24; color: #1a0a00; }
.wc-badge-Semifinal   { background: #7c3aed; color: #fff; }
.wc-badge-Quarterfinal{ background: #2563eb; color: #fff; }
.wc-badge-Opening     { background: #16a34a; color: #fff; }
.wc-card-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.6rem;
}

.wc-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.wc-city-emoji {
  font-size: 2rem;
  line-height: 1;
}
.wc-city-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.wc-city-region {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.wc-stadium-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.wc-stadium-name {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.wc-capacity {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.wc-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.wc-stage-tag {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  color: #4ade80;
}

.wc-transport {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.wc-tip {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.wc-card-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
  margin-top: auto;
}
.wc-highlight-txt {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- TIMELINE ---- */
.wc-timeline-section {
  background: var(--surface);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wc-timeline-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.wc-timeline {
  position: relative;
  padding-left: 36px;
}
.wc-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #4ade80, #fbbf24);
}
.wc-tl-item {
  position: relative;
  margin-bottom: 36px;
  display: flex;
  gap: 16px;
}
.wc-tl-dot {
  position: absolute;
  left: -28px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 1;
  flex-shrink: 0;
}
.wc-tl-final {
  border-color: #fbbf24;
  background: rgba(251,191,36,0.1);
  transform: scale(1.2);
}
.wc-tl-start { border-color: #4ade80; }
.wc-tl-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.wc-tl-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.wc-tl-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- GROUPS ---- */
.wc-groups-section {
  background: var(--dark);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wc-groups-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.wc-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.wc-group-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px;
}
.wc-group-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(74,222,128,0.15);
  padding-bottom: 8px;
}
.wc-team-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wc-team-row:last-child { border-bottom: none; }
.wc-team-flag { font-size: 1rem; }
.wc-team-name { font-size: 0.8rem; color: var(--text-muted); flex: 1; font-weight: 500; }
.wc-team-rank { font-size: 0.65rem; color: var(--text-muted); }
.wc-groups-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- TIPS / FAQ ---- */
.wc-tips-section {
  background: var(--surface);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wc-tips-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.wc-faq { display: flex; flex-direction: column; gap: 10px; }
.wc-faq-item {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.wc-faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.wc-faq-q:hover { color: #4ade80; }
.wc-faq-arrow {
  font-size: 0.65rem;
  opacity: 0.5;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.wc-faq-item.open .wc-faq-arrow { transform: rotate(180deg); }
.wc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.wc-faq-a p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.wc-faq-item.open .wc-faq-a { max-height: 300px; }

/* ---- CTA ---- */
.wc-cta-section {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #064e3b 100%);
  padding: 64px 20px;
  text-align: center;
  border-top: 1px solid rgba(74,222,128,0.2);
}
.wc-cta-inner { max-width: 600px; margin: 0 auto; }
.wc-cta-ball {
  font-size: 3rem;
  animation: spin 6s linear infinite;
  display: inline-block;
  margin-bottom: 16px;
}
.wc-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.wc-cta-sub { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.wc-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.wc-cta-primary {
  padding: 14px 28px;
  background: #fff;
  color: #064e3b;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.wc-cta-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.wc-cta-secondary {
  padding: 14px 28px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}
.wc-cta-secondary:hover { background: rgba(255,255,255,0.2); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .wc-cd-unit { padding: 10px 12px; min-width: 56px; }
  .wc-cd-num  { font-size: 1.5rem; }
  .wc-grid    { grid-template-columns: 1fr; }
  .wc-groups-grid { grid-template-columns: repeat(2, 1fr); }
  .wc-timeline { padding-left: 28px; }

  /* Mobile tap states */
  .wc-city-card.show-city    .wc-img-city    { width: 70%; }
  .wc-city-card.show-city    .wc-img-stadium { width: 30%; }
  .wc-city-card.show-city    .wc-card-img-wrap::after { left: 70%; }
  .wc-city-card.show-stadium .wc-img-city    { width: 30%; }
  .wc-city-card.show-stadium .wc-img-stadium { width: 70%; }
  .wc-city-card.show-stadium .wc-card-img-wrap::after { left: 30%; }

  /* Tap hint label */
  .wc-tap-hint {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.4);
    padding: 2px 8px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 4;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .wc-countdown { gap: 6px; }
  .wc-cd-sep { font-size: 1.2rem; }
  .wc-groups-grid { grid-template-columns: 1fr 1fr; }
}

/* ── EAT LIKE A LOCAL ── */
.wc-food-section {
  padding: 80px 0;
  background: var(--dark);
}
.wc-food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.wc-food-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.wc-food-card:hover {
  border-color: rgba(74,222,128,0.3);
  transform: translateY(-3px);
}
.wc-food-city-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wc-food-emoji { font-size: 1.6rem; flex-shrink: 0; }
.wc-food-city-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
}
.wc-food-stadium-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.wc-food-flag { margin-left: auto; font-size: 1.3rem; }
.wc-food-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wc-food-item {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px 12px;
  transition: background 0.15s;
}
.wc-food-item:hover { background: rgba(74,222,128,0.07); }
.wc-food-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
}
.wc-food-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.wc-food-type-badge {
  font-size: 0.62rem;
  font-weight: 600;
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.wc-food-item-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wc-food-must {
  font-size: 0.73rem;
  color: var(--text-muted);
}
.wc-food-area {
  font-size: 0.68rem;
  color: #6e7681;
}

/* State guide link on WC city cards */
.wc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.wc-state-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.35);
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.wc-state-link:hover {
  background: rgba(22,163,74,0.3);
  color: #86efac;
}
.wc-card-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.wc-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(14,133,133,0.15);
  border: 1px solid rgba(14,133,133,0.4);
  color: #2dd4bf;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.wc-blog-link:hover {
  background: rgba(14,133,133,0.3);
  color: #5eead4;
}

/* Clickable card wrapper */
.wc-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.wc-card-link:hover .wc-city-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* =========================================
   BLOG GUIDES SECTION
   ========================================= */
.wc-guides-section {
  background: var(--dark);
  padding: 64px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.wc-guides-inner {
  max-width: 900px;
  margin: 0 auto;
}
.wc-guides-header { text-align: center; margin-bottom: 32px; }
.wc-guides-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.wc-guides-sub { color: var(--text-muted); font-size: 0.95rem; }

/* Featured hub post */
.wc-guide-featured {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #0f2744 0%, #1a3a5c 100%);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 14px;
  padding: 20px 24px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wc-guide-featured:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,0.2); }
.wc-guide-featured-badge {
  background: #3b82f6;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.wc-guide-featured-body { flex: 1; }
.wc-guide-featured-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.wc-guide-featured-sub { font-size: 0.82rem; color: #93c5fd; }
.wc-guide-featured-arrow { font-size: 1.2rem; color: #3b82f6; flex-shrink: 0; }

/* 6-card grid */
.wc-guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 600px) { .wc-guides-grid { grid-template-columns: 1fr; } }

.wc-guide-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.wc-guide-card:hover {
  background: #1c2430;
  border-color: rgba(59,130,246,0.3);
  transform: translateX(3px);
}
.wc-guide-emoji { font-size: 1.5rem; flex-shrink: 0; }
.wc-guide-info { flex: 1; min-width: 0; }
.wc-guide-name { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.wc-guide-meta { font-size: 0.75rem; color: var(--text-muted); }
.wc-guide-arrow { font-size: 0.9rem; color: #3b82f6; flex-shrink: 0; }

/* ---- TRAVEL ESSENTIALS AFFILIATE SECTION ---- */
.wc-essentials-section {
  padding: 60px 20px;
  background: var(--dark);
}
.wc-essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 900px) { .wc-essentials-grid { grid-template-columns: 1fr; } }
.wc-essential-card {
  display: flex;
  flex-direction: column;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.wc-essential-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-3px);
}
.wc-essential-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.wc-essential-body { flex: 1; }
.wc-essential-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.wc-essential-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.wc-essential-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.wc-essential-perks li {
  font-size: 0.82rem;
  color: #94a3b8;
  padding: 3px 0;
}
.wc-essential-btn {
  display: block;
  text-align: center;
  background: #3b82f6;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  margin-top: auto;
}
.wc-essential-btn:hover { background: #2563eb; }
