/* ============================================================
   ATLAS GUIDE — CITY GUIDE v5 additions
   city-v5.css — load AFTER country-v5.css on city guide pages:
     <link rel="stylesheet" href="/css/country-v5.css">
     <link rel="stylesheet" href="/css/city-v5.css">
   City guides share the country v5 design system (cg- classes);
   this file only holds city-specific components.
   ============================================================ */

/* Inline venue link woven into article prose */
.cg-venue-link {
  color: var(--cg-forest);
  text-decoration: underline;
  text-decoration-color: var(--cg-gold);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.cg-venue-link:hover { color: var(--ag-gold-700, #8a6020); text-decoration-color: currentColor; }
.cg-venue-link b { font-weight: 700; }

/* Named-place run-in heading inside article prose */
.cg-place {
  font-family: var(--cg-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cg-deep);
  margin: 24px 0 6px;
}
.cg-place .cg-place-meta {
  font-family: var(--cg-font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ag-gold-600, #b07a28);
  margin-left: 10px;
}

/* Embedded Stay22 hotel map */
.cg-map-wrap {
  border-radius: var(--cg-radius);
  overflow: hidden;
  border: 1px solid var(--cg-line);
  margin-top: 18px;
  box-shadow: var(--cg-shadow);
}
.cg-map-wrap iframe { display: block; width: 100%; border: 0; }

/* "Part of the country field guide" banner */
.cg-country-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(160deg, var(--cg-darkest), var(--cg-deep));
  color: var(--cg-parchment);
  border-radius: var(--cg-radius);
  padding: 28px 30px;
  margin-top: 30px;
}
.cg-country-banner h3 {
  font-family: var(--cg-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.cg-country-banner p { margin: 0; font-size: 0.9rem; opacity: 0.75; max-width: 52ch; }
.cg-country-banner-btn {
  display: inline-block;
  flex-shrink: 0;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--cg-gold);
  color: var(--cg-darkest);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cg-country-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 92, 0.32);
}

@media (max-width: 640px) {
  .cg-country-banner { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
  .cg-place { font-size: 1.08rem; }
  .cg-place .cg-place-meta { display: block; margin: 3px 0 0; }
}