/* ---------- Ad slots ---------- */
.cc-ad-slot {
  background: var(--ev-line-soft);
  border: 1px dashed var(--ev-line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ev-muted);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cc-ad-slot--banner { height: 90px; margin-bottom: 24px; }
.cc-ad-slot--inline { height: 100px; margin-bottom: 24px; }
.cc-ad-slot--sidebar { height: 250px; position: sticky; top: 90px; }

.cc-ad-slot ins.adsbygoogle { width: 100%; }

/* ---------- Buttons / chips ---------- */
.cc-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.cc-btn--primary { background: var(--ev-blue); color: #fff; }
.cc-btn--primary:hover { background: var(--ev-blue-dark); }
.cc-btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; }

.cc-chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--ev-ink);
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ev-line);
  display: inline-block;
}

.cc-chip.is-active, .cc-chip:hover {
  background: var(--ev-blue);
  color: #fff;
  border-color: var(--ev-blue);
}

.cc-chip-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

/* ---------- Hero (navy) ---------- */
.cc-hero-band {
  background: var(--ev-navy);
  color: #fff;
  padding: 56px 24px 48px;
}

.cc-hero-band__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cc-hero-card {
  background: var(--ev-navy);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.cc-hero-card--compact { padding: 34px 36px; }

.cc-hero-card--photo {
  background-size: cover;
  background-position: center;
}

.cc-hero-credit {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, .75);
  background: rgba(0, 0, 0, .25);
  padding: 3px 8px;
  border-radius: 999px;
}
.cc-hero-credit:hover { color: #fff; }

.cc-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ev-sky);
}

.cc-flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
  flex: 0 0 auto;
}

.cc-flag--sm { width: 22px; height: 16px; box-shadow: 0 0 0 1px rgba(0, 0, 0, .1); }

.cc-hero-card h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.cc-hero-card p {
  font-size: 15px;
  color: #c9d3dc;
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}

.cc-hero-actions { display: flex; gap: 10px; }

/* ---------- Search ---------- */
.cc-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px 8px 6px 22px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.cc-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 12px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--ev-ink);
  background: transparent;
}

/* ---------- Stats strip ---------- */
.cc-stats-grid {
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 28px 24px 4px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.cc-stat-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.cc-stat-card__value { font-size: 26px; font-weight: 600; color: var(--ev-navy); }
.cc-stat-card__label { font-size: 13px; color: var(--ev-muted); margin-top: 4px; }

@media (max-width: 700px) {
  .cc-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Letter nav ---------- */
.cc-letter-nav {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 0 24px;
  width: 100%;
}

.cc-letter-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: var(--radius);
  padding: 10px;
}

.cc-letter-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ev-ink);
}

.cc-letter-btn:hover { background: var(--ev-blue); color: #fff; }
.cc-letter-btn--disabled { color: var(--ev-line); cursor: default; }

/* ---------- Section letter badge (homepage) ---------- */
.cc-section-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--ev-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

/* ---------- Photo card (homepage) ---------- */
.cc-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cc-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cc-card-grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 860px) {
  .cc-card-grid, .cc-card-grid--3, .cc-card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .cc-card-grid, .cc-card-grid--3, .cc-card-grid--2 { grid-template-columns: 1fr; }
}

.cc-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: var(--radius);
  transition: box-shadow .15s, transform .15s;
  display: block;
}

.cc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.cc-card__photo {
  height: 110px;
  background: var(--ev-line-soft);
  border-radius: var(--radius) var(--radius) 0 0;
}

.cc-card__body {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-card__capital { font-size: 14px; font-weight: 600; color: var(--ev-ink); }
.cc-card__country { font-size: 12px; color: var(--ev-muted); }

/* ---------- Listing cards (city guide sections) ---------- */
.cc-listing-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: var(--radius);
  padding: 16px;
}

.cc-listing-card__eyebrow {
  font-size: 12px;
  color: var(--ev-amber);
  font-weight: 600;
  margin-bottom: 6px;
}

.cc-listing-card__title { font-size: 15px; font-weight: 600; color: var(--ev-ink); margin-bottom: 4px; }
.cc-listing-card__meta { font-size: 13px; color: var(--ev-muted); }
.cc-listing-card__cta { font-size: 14px; font-weight: 600; color: var(--ev-blue); margin-top: 10px; }

/* ---------- Stacked listing card (category deep page) ---------- */
.cc-listing-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cc-listing-row {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cc-listing-row__main { flex: 1; min-width: 0; }
.cc-listing-row__title { font-size: 16px; font-weight: 600; color: var(--ev-ink); margin-bottom: 4px; }
.cc-listing-row__meta { font-size: 13px; color: var(--ev-muted); }
.cc-listing-row__side { text-align: right; flex: 0 0 auto; }
.cc-listing-row__price { font-size: 18px; font-weight: 700; color: var(--ev-blue); }
.cc-listing-row__price-label { font-size: 12px; color: var(--ev-muted); }

/* ---------- Section headings ---------- */
.cc-section { margin-bottom: 28px; }

.cc-section__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ev-navy);
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-section__intro { font-size: 14px; color: var(--ev-muted); margin: 0 0 14px; }
.cc-section__intro a { color: var(--ev-blue); font-weight: 600; }

.cc-section__icon { width: 20px; height: 20px; flex: 0 0 auto; }

.cc-coming-soon {
  background: var(--ev-bg-soft);
  border: 1px dashed var(--ev-line);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--ev-muted);
  font-size: 14px;
}

/* ---------- Quick facts ---------- */
.cc-quick-facts {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
}

.cc-quick-facts h2 { font-size: 16px; font-weight: 700; margin: 0 0 16px; color: var(--ev-navy); }

.cc-quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 700px) {
  .cc-quick-facts__grid { grid-template-columns: repeat(2, 1fr); }
}

.cc-quick-facts__label {
  font-size: 12px;
  color: var(--ev-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.cc-quick-facts__value { font-size: 15px; font-weight: 600; color: var(--ev-ink); }

.cc-quick-facts__affiliate {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ev-blue);
}
.cc-quick-facts__affiliate:hover { color: var(--ev-blue-dark); }

/* ---------- On-this-page / explore sidebar card ---------- */
.cc-side-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: var(--radius);
  padding: 16px;
}

.cc-side-card__title { font-size: 13px; font-weight: 700; color: var(--ev-navy); margin-bottom: 10px; }

.cc-side-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.cc-side-card__list a { color: var(--ev-muted); }
.cc-side-card__list a.is-primary { color: var(--ev-blue); font-weight: 600; }

/* ---------- Climate / weather cards ---------- */
.cc-weather-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}

.cc-weather-card__season { font-size: 13px; font-weight: 600; color: var(--ev-navy); margin-bottom: 6px; }
.cc-weather-card__temp { font-size: 18px; font-weight: 600; color: var(--ev-ink); }

/* ---------- Interesting facts (weird & wonderful) ---------- */
.cc-facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 700px) {
  .cc-facts-list { grid-template-columns: 1fr; }
}

.cc-facts-list li {
  background: var(--ev-bg-soft);
  border: 1px solid var(--ev-line);
  border-left: 3px solid var(--ev-amber);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ev-ink);
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.cc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-faq-item {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.cc-faq-item summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ev-ink);
  list-style: none;
}
.cc-faq-item summary::-webkit-details-marker { display: none; }
.cc-faq-item summary::before {
  content: '+';
  display: inline-block;
  width: 16px;
  color: var(--ev-blue);
  font-weight: 700;
}
.cc-faq-item[open] summary::before { content: '\2212'; }

.cc-faq-item p {
  margin: 10px 0 0 16px;
  font-size: 14px;
  color: var(--ev-muted);
  line-height: 1.6;
}

/* ---------- Map placeholder ---------- */
.cc-map-placeholder {
  background: var(--ev-bg-soft);
  border: 1px solid var(--ev-line);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ev-muted);
  flex-direction: column;
  gap: 8px;
}
