.cc-city-hub {
  --cc-city-accent: var(--theme-palette-color-1, #23d3d3);
  --cc-city-accent-hover: var(--theme-palette-color-2, #23d3d3);
  --cc-city-accent-soft: color-mix(in srgb, var(--cc-city-accent) 14%, white);
  --cc-city-heading: #10232f;
  --cc-city-text: #526274;
  --cc-city-line: rgba(15, 23, 42, 0.08);
  --cc-city-line-strong: rgba(15, 23, 42, 0.14);
  --cc-city-card: rgba(255, 255, 255, 0.92);
  --cc-city-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
  --cc-city-shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.07);
  --cc-city-radius-xl: 34px;
  --cc-city-radius-lg: 28px;
  --cc-city-radius-md: 22px;
  --cc-city-radius-pill: 999px;
  color: var(--cc-city-heading);
}

.cc-city-hub .ct-container {
  width: min(1280px, calc(100% - 40px));
}

.cc-city-hub__hero {
  position: relative;
  overflow: visible;
  padding: 132px 0 70px;
  background:
    radial-gradient(circle at 8% 10%, rgba(35, 211, 211, 0.12), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(35, 211, 211, 0.16), transparent 28%),
    linear-gradient(180deg, #eef7f7 0%, #fbfdfd 28%, #ffffff 100%);
}
.cc-city-hub__hero-grid,
.cc-city-hub__hero-copy,
.cc-city-hub__search-wrap,
.cc-search,
.cc-search__field {
  position: relative;
  overflow: visible;
}
.cc-city-hub__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  pointer-events: none;
}

.cc-city-hub__hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.cc-city-hub__hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

.cc-city-hub__eyebrow-wrap {
  margin-bottom: 14px;
}

.cc-city-hub__eyebrow,
.cc-city-hub__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #1a6c74;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-city-hub__eyebrow {
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--cc-city-radius-pill);
  border: 1px solid rgba(35, 211, 211, 0.32);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
}

.cc-city-hub__kicker {
  margin-bottom: 10px;
}

.cc-city-hub__title {
  max-width: 100%;
  margin: 0;
  color: var(--cc-city-heading);
  font-size: clamp(46px, 5.4vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.cc-city-hub__lede {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--cc-city-heading);
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.cc-city-hub__intro {
  max-width: 700px;
  margin-top: 22px;
  color: var(--cc-city-text);
  font-size: 18px;
  line-height: 1.8;
}

.cc-city-hub__intro p {
  margin: 0 0 14px;
}

.cc-city-hub__intro p:last-child {
  margin-bottom: 0;
}

.cc-city-hub__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cc-city-hub__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: var(--cc-city-radius-pill);
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.cc-city-hub__btn:hover {
  transform: translateY(-1px);
}

.cc-city-hub__btn--primary {
  color: #ffffff;
  background: var(--cc-city-accent);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--cc-city-accent) 28%, transparent);
}

.cc-city-hub__btn--primary:hover,
.cc-city-hub__btn--primary:focus {
  color: #ffffff;
  background: var(--cc-city-accent-hover);
}

.cc-city-hub__btn--secondary {
  color: var(--cc-city-heading);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--cc-city-line-strong);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.cc-city-hub__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cc-city-hub__stat {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--cc-city-radius-pill);
  color: var(--cc-city-heading);
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--cc-city-line);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  font-size: 15px;
  font-weight: 700;
}

.cc-city-hub__search-wrap {
  margin-top: 24px;
  max-width: 760px;
}

.cc-search {
  position: relative;
}

.cc-search__field {
  position: relative;
}

.cc-search__input {
  width: 100%;
  height: 68px;
  padding: 0 86px 0 24px;
  border-radius: var(--cc-city-radius-pill);
  border: 1px solid rgba(35, 211, 211, 0.20);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  font-size: 17px;
  color: var(--cc-city-heading);
}

.cc-search__input::placeholder {
  color: #78879a;
  opacity: 1;
}

.cc-search__input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--cc-city-accent) 48%, white);
  box-shadow:
    0 0 0 5px color-mix(in srgb, var(--cc-city-accent) 12%, transparent),
    0 16px 34px rgba(15, 23, 42, 0.08);
}

.cc-search__submit {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--cc-city-accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
}

.cc-search__submit:hover,
.cc-search__submit:focus {
  background: var(--cc-city-accent-hover);
  color: #ffffff;
}

.cc-search__icon {
  width: 20px;
  height: 20px;
  display: block;
}

.cc-search__results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 120;
  display: none;
  border-radius: 24px;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--cc-city-line);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  max-height: min(420px, 60vh);
  overflow-y: auto;
}
.cc-search {
  z-index: 120;
}

.cc-city-hub__section--quick-cards,
.cc-city-hub__top-searches-card,
.cc-city-hub__main,
.cc-city-hub__section {
  position: relative;
  z-index: 1;
}
.cc-search__results.is-visible {
  display: block;
}

.cc-search__state,
.cc-search__item {
  display: block;
  padding: 16px 18px;
  border-top: 1px solid rgba(15,23,42,0.06);
}

.cc-search__state:first-child,
.cc-search__item:first-child {
  border-top: 0;
}

.cc-search__state {
  color: var(--cc-city-text);
}

.cc-search__item {
  text-decoration: none;
}

.cc-search__item:hover {
  background: #f7fbfb;
}

.cc-search__item-title {
  display: block;
  color: var(--cc-city-heading);
  font-weight: 700;
}

.cc-search__item-type {
  display: block;
  margin-top: 4px;
  color: #718196;
  font-size: 13px;
}

.cc-city-hub__inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cc-city-hub__inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--cc-city-radius-pill);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--cc-city-line);
  color: var(--cc-city-heading);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.cc-city-hub__inline-link:hover,
.cc-city-hub__hero-card-chips a:hover,
.cc-city-hub__term-chip:hover,
.cc-city-hub__hero-card-link:hover {
  background: #f6fbfc;
  border-color: rgba(35, 211, 211, 0.24);
  transform: translateY(-1px);
}

.cc-city-hub__hero-visual {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.cc-city-hub__hero-image {
  position: absolute;
  inset: 22px 0 52px 88px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(35,211,211,.10), rgba(255,255,255,.12)),
    var(--cc-city-hero-image, none) center/cover no-repeat,
    linear-gradient(135deg, #dff4f5 0%, #e9f3f7 44%, #dbe4f0 100%);
  box-shadow: var(--cc-city-shadow);
}

.cc-city-hub__hero.has-media .cc-city-hub__hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(15,23,42,.12));
}

.cc-city-hub__hero-visual.no-media .cc-city-hub__hero-image {
  inset: 28px 14px 68px 84px;
  background:
    radial-gradient(circle at 26% 26%, rgba(35, 211, 211, 0.28), transparent 26%),
    radial-gradient(circle at 76% 28%, rgba(35, 211, 211, 0.18), transparent 23%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(235, 247, 248, 0.96));
  border: 1px solid rgba(35,211,211,0.12);
}

.cc-city-hub__hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.cc-city-hub__hero-orb--a {
  width: 124px;
  height: 124px;
  top: 10px;
  right: 24px;
  background: rgba(35, 211, 211, 0.24);
}

.cc-city-hub__hero-orb--b {
  width: 78px;
  height: 78px;
  bottom: 28px;
  left: 112px;
  background: rgba(35, 211, 211, 0.18);
}

.cc-city-hub__hero-card,
.cc-city-hub__hero-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  padding: 24px 24px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(14px);
}

.cc-city-hub__hero-panel {
  margin-left: 12px;
}

.cc-city-hub__hero-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--cc-city-radius-pill);
  border: 1px solid rgba(35,211,211,.34);
  color: #1f6b74;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cc-city-hub__hero-card-title {
  margin: 16px 0 0;
  color: var(--cc-city-heading);
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.cc-city-hub__hero-card-text {
  margin: 12px 0 0;
  color: var(--cc-city-text);
  font-size: 15px;
  line-height: 1.68;
}

.cc-city-hub__hero-card-chips,
.cc-city-hub__hero-panel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cc-city-hub__hero-card-chips a,
.cc-city-hub__hero-panel-chips span,
.cc-city-hub__term-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--cc-city-radius-pill);
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  color: var(--cc-city-heading);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.cc-city-hub__hero-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--cc-city-radius-pill);
  background: #f7fbfb;
  color: var(--cc-city-heading);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.cc-city-hub__hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cc-city-hub__hero-metric {
  display: grid;
  gap: 3px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f5fbfb);
  border: 1px solid rgba(35,211,211,.14);
}

.cc-city-hub__hero-metric-value {
  color: var(--cc-city-heading);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cc-city-hub__hero-metric-label {
  color: var(--cc-city-text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cc-city-hub__main {
  padding-bottom: 84px;
}

.cc-city-hub__section {
  margin-top: 58px;
}

.cc-city-hub__section--quick-cards {
  margin-top: 64px;
}

.cc-city-hub__section-header {
  margin-bottom: 22px;
}

.cc-city-hub__section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.cc-city-hub__section-title {
  margin: 0;
  color: var(--cc-city-heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.cc-city-hub__section-intro {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--cc-city-text);
  font-size: 17px;
  line-height: 1.75;
}

.cc-city-hub__section-link {
  flex: 0 0 auto;
  color: var(--cc-city-accent);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}

.cc-city-hub__quick-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.cc-city-hub__quick-card {
  position: relative;
  grid-column: span 4;
  min-height: 230px;
  border-radius: var(--cc-city-radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(145deg, var(--cc-city-accent), color-mix(in srgb, var(--cc-city-accent) 72%, #123f54));
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--cc-city-shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cc-city-hub__quick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(15,23,42,.14);
}

.cc-city-hub__quick-card.is-featured {
  grid-column: span 5;
}

.cc-city-hub__quick-card.has-media {
  background:
    linear-gradient(180deg, rgba(5, 19, 28, 0.18) 0%, rgba(5, 19, 28, 0.48) 58%, rgba(5, 19, 28, 0.76) 100%),
    var(--cc-quick-card-image) center/cover no-repeat;
}

.cc-city-hub__quick-card.has-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 24, 36, 0.10));
}

.cc-city-hub__quick-card.overlay-soft.has-media {
  background:
    linear-gradient(180deg, rgba(5, 19, 28, 0.10) 0%, rgba(5, 19, 28, 0.30) 58%, rgba(5, 19, 28, 0.58) 100%),
    var(--cc-quick-card-image) center/cover no-repeat;
}

.cc-city-hub__quick-card.overlay-strong.has-media {
  background:
    linear-gradient(180deg, rgba(5, 19, 28, 0.22) 0%, rgba(5, 19, 28, 0.56) 58%, rgba(5, 19, 28, 0.80) 100%),
    var(--cc-quick-card-image) center/cover no-repeat;
}

.cc-city-hub__quick-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: 20px;
  gap: 10px;
}

.cc-city-hub__quick-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  border-radius: var(--cc-city-radius-pill);
  background: rgba(255,255,255,.94);
  color: var(--cc-city-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: lowercase;
}

.cc-city-hub__quick-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,.16);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.cc-city-hub__quick-icon svg {
  width: 22px;
  height: 22px;
}

.cc-city-hub__quick-text {
  display: grid;
  gap: 7px;
  color: #ffffff;
}

.cc-city-hub__quick-title {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.cc-city-hub__quick-desc {
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.55;
}

.cc-city-hub__quick-arrow {
  align-self: flex-start;
  color: #ffffff;
  font-size: 22px;
}

.cc-city-hub__cards-grid .cc-locatie-card,
.cc-city-hub .cc-activitate-card {
  margin-bottom: 0;
}

.cc-city-hub .cc-activitate-card .cc-locatie-card__body {
  min-height: 200px;
}

.cc-city-hub .cc-activitate-card .cc-locatie-card__title {
  font-size: 18px;
}

.cc-city-hub .cc-activitate-card .cc-activitate-card__meta-location,
.cc-city-hub .cc-locatie-card .cc-locatie-card__meta-item--location {
  display: block;
  white-space: normal;
  line-height: 1.4;
}

.cc-city-hub .cc-locatie-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
}

.cc-city-hub__terms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cc-city-hub__posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cc-city-hub__post-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--cc-city-shadow-soft);
}

.cc-city-hub__post-link {
  display: block;
  text-decoration: none;
}

.cc-city-hub__post-thumb-wrap {
  aspect-ratio: 16/10;
  background: #e9eef2;
}

.cc-city-hub__post-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-city-hub__post-body {
  padding: 20px 22px 24px;
}

.cc-city-hub__post-title {
  margin: 0;
  color: var(--cc-city-heading);
  font-size: 20px;
  line-height: 1.3;
}

.cc-city-hub__post-excerpt {
  margin: 10px 0 0;
  color: var(--cc-city-text);
  font-size: 15px;
  line-height: 1.65;
}

.cc-city-hub__seo-card,
.cc-city-hub__faq-item,
.cc-city-hub__empty {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--cc-city-shadow-soft);
}

.cc-city-hub__seo-card {
  padding: 30px 32px;
  border-radius: 28px;
}

.cc-city-hub__section-title--seo {
  position: relative;
  padding-left: 18px;
}

.cc-city-hub__section-title--seo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  background: var(--cc-city-accent);
}

.cc-city-hub__seo-content {
  margin-top: 16px;
  color: #334155;
  font-size: 17px;
  line-height: 1.85;
}

.cc-city-hub__faq-list {
  display: grid;
  gap: 14px;
}

.cc-city-hub__faq-item {
  border-radius: 20px;
  padding: 0 22px;
}

.cc-city-hub__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  color: var(--cc-city-heading);
  font-size: 17px;
  font-weight: 800;
}

.cc-city-hub__faq-item summary::-webkit-details-marker {
  display: none;
}

.cc-city-hub__faq-answer {
  padding: 0 0 18px;
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
}

.cc-city-hub__empty {
  padding: 28px;
  border-radius: 24px;
}

.cc-city-hub__section-title,
.cc-city-hub__title,
.cc-city-hub__faq-item summary,
.cc-city-hub__post-title {
  word-break: normal;
  overflow-wrap: anywhere;
}

.cc-city-hub-page .cc-ad-sticky-bottom,
.tax-oras .cc-ad-sticky-bottom {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .cc-city-hub__hero {
    padding-top: 120px;
  }

  .cc-city-hub__hero-grid {
    grid-template-columns: 1fr;
  }

  .cc-city-hub__hero-copy {
    max-width: 860px;
  }

  .cc-city-hub__hero-visual {
    min-height: 420px;
  }

  .cc-city-hub__hero-image {
    inset: 0 0 0 110px;
  }

  .cc-city-hub__hero-visual.no-media .cc-city-hub__hero-image {
    inset: 0 0 0 110px;
  }
}

@media (max-width: 991.98px) {
  .cc-city-hub__hero {
    padding: 108px 0 56px;
  }

  .cc-city-hub__title {
    max-width: 100%;
    font-size: clamp(36px, 8vw, 54px);
  }

  .cc-city-hub__lede {
    font-size: clamp(20px, 4.8vw, 28px);
  }

  .cc-city-hub__section-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .cc-city-hub__quick-grid,
  .cc-city-hub__posts-grid {
    grid-template-columns: 1fr;
  }

  .cc-city-hub__quick-card,
  .cc-city-hub__quick-card.is-featured {
    grid-column: auto;
  }

  .cc-city-hub__section-header--split {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .cc-city-hub .ct-container {
    width: min(100% - 24px, 1000px);
  }

  .cc-city-hub__hero {
    padding: 94px 0 34px;
  }

  .cc-city-hub__hero-grid {
    gap: 0;
  }

  .cc-city-hub__title {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.98;
    max-width: 100%;
  }

  .cc-city-hub__lede {
    margin-top: 16px;
    font-size: 19px;
    line-height: 1.28;
  }

  .cc-city-hub__intro {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.72;
  }

  .cc-city-hub__hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .cc-city-hub__btn {
    min-height: 52px;
    padding: 0 22px;
    font-size: 16px;
  }

  .cc-city-hub__stats {
    margin-top: 16px;
  }

  .cc-city-hub__stat {
    min-height: 40px;
    font-size: 14px;
  }

  .cc-city-hub__search-wrap {
    margin-top: 18px;
  }

  .cc-search__input {
    height: 58px;
    padding: 0 72px 0 18px;
    font-size: 16px;
  }

  .cc-search__submit {
    right: 7px;
    width: 44px;
    height: 44px;
  }

  .cc-search__icon {
    width: 18px;
    height: 18px;
  }

  .cc-city-hub__inline-links {
    gap: 8px;
    margin-top: 14px;
  }

  .cc-city-hub__inline-link {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cc-city-hub__inline-links .cc-city-hub__inline-link:nth-child(n+4) {
    display: none;
  }

  

  .cc-city-hub__section {
    margin-top: 40px;
  }

  .cc-city-hub__section--quick-cards {
    margin-top: 46px;
  }

  .cc-city-hub__quick-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cc-city-hub__quick-card {
    min-height: 180px;
  }

  .cc-city-hub__quick-card.has-media {
    background:
      linear-gradient(180deg, rgba(5, 19, 28, 0.20) 0%, rgba(5, 19, 28, 0.52) 56%, rgba(5, 19, 28, 0.78) 100%),
      var(--cc-quick-card-image-mobile, var(--cc-quick-card-image)) center/cover no-repeat;
  }

  .cc-city-hub__quick-card-inner {
    padding: 18px;
  }

  .cc-city-hub__quick-title {
    font-size: 28px;
  }

  .cc-city-hub__quick-desc {
    font-size: 14px;
  }

  .cc-city-hub__terms-list {
    gap: 10px;
  }

  .cc-city-hub__term-chip {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .cc-city-hub__posts-grid {
    grid-template-columns: 1fr;
  }

  .cc-city-hub__seo-card {
    padding: 24px 22px;
  }
}

/* =========================================================
   CITY HUB V2 – ultra clean hierarchy
   ========================================================= */
.cc-city-hub__intro--hero {
  max-width: 640px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.72;
}

.cc-city-hub__intro--hero p {
  margin: 0;
}

.cc-city-hub__hero {
  padding: 138px 0 56px;
}

.cc-city-hub__hero-grid {
  align-items: start;
}

.cc-city-hub__hero-copy {
  padding-top: 0;
}

.cc-city-hub__lede {
  max-width: 580px;
  margin-top: 18px;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.3;
}

.cc-city-hub__hero-actions {
  margin-top: 24px;
}

.cc-city-hub__search-wrap {
  margin-top: 26px;
  max-width: 720px;
}

.cc-search__input {
  height: 72px;
  padding: 0 92px 0 26px;
  font-size: 18px;
}

.cc-search__submit {
  right: 10px;
  width: 54px;
  height: 54px;
}

.cc-city-hub__stats {
  margin-top: 16px;
}

.cc-city-hub__inline-links {
  margin-top: 14px;
}

.cc-city-hub__hero-visual {
  min-height: 530px;
  align-items: center;
  justify-content: center;
}

.cc-city-hub__hero-image {
  inset: 16px 12px 16px 100px;
  border-radius: 42px;
}

.cc-city-hub__hero-float {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(14px);
}

.cc-city-hub__hero-float--stats {
  left: 18px;
  bottom: 24px;
  max-width: 260px;
}

.cc-city-hub__hero-float span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: var(--cc-city-heading);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.cc-city-hub__hero-float strong {
  margin-right: 6px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.cc-city-hub__section--quick-cards {
  margin-top: 34px;
}

.cc-city-hub__section-header--top-searches {
  margin-bottom: 0;
}

.cc-city-hub__top-searches-card {
  padding: 28px 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,252,0.96));
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.cc-city-hub__mini-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(35, 211, 211, 0.10);
  border: 1px solid rgba(35, 211, 211, 0.22);
  color: #1a6c74;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cc-city-hub__terms-list--featured {
  margin-top: 18px;
}

.cc-city-hub__section-link {
  font-weight: 700;
}

.cc-city-hub__section-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f7fbfb;
  border: 1px solid rgba(15,23,42,.08);
  color: var(--cc-city-heading);
}

.cc-city-hub__quick-grid {
  gap: 18px;
}

.cc-city-hub__quick-card.has-media {
  background:
    linear-gradient(180deg, rgba(8,22,34,0.34) 0%, rgba(8,22,34,0.60) 60%, rgba(8,22,34,0.84) 100%),
    var(--cc-quick-card-image) center/cover no-repeat;
}

.cc-city-hub__quick-card {
  min-height: 208px;
}

.cc-city-hub__quick-title {
  text-shadow: 0 1px 2px rgba(0,0,0,.14);
}

.cc-city-hub__cards-grid .is-recommended,
.cc-city-hub__cards-grid .recommended,
.cc-city-hub__cards-grid .cc-is-featured {
  box-shadow: inset 0 0 0 2px rgba(35, 211, 211, 0.38);
}

@media (max-width: 1199.98px) {
  .cc-city-hub__hero {
    padding-top: 124px;
  }

  .cc-city-hub__hero-visual {
    min-height: 420px;
  }

  .cc-city-hub__hero-image {
    inset: 0 0 0 88px;
  }
}

@media (max-width: 767.98px) {
  .cc-city-hub__hero {
    padding: 92px 0 26px;
  }

  .cc-city-hub__eyebrow-wrap {
    margin-bottom: 12px;
  }

  .cc-city-hub__eyebrow {
    min-height: 34px;
    font-size: 12px;
  }

  .cc-city-hub__kicker {
    display: none;
  }

  .cc-city-hub__title {
    max-width: 100%;
    font-size: clamp(30px, 9.4vw, 42px);
    line-height: 0.98;
  }

  .cc-city-hub__lede {
    max-width: 100%;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
  }

  .cc-city-hub__intro--hero {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  .cc-city-hub__hero-actions {
    margin-top: 18px;
  }

  .cc-city-hub__hero-actions .cc-city-hub__btn:last-child {
    display: none;
  }

  .cc-city-hub__search-wrap {
    margin-top: 16px;
  }

  .cc-search__input {
    height: 60px;
    padding: 0 74px 0 18px;
    font-size: 16px;
  }

  .cc-search__submit {
    width: 46px;
    height: 46px;
    right: 7px;
  }

  .cc-city-hub__stats {
    margin-top: 14px;
    gap: 10px;
  }

  .cc-city-hub__inline-links {
    margin-top: 12px;
  }

  .cc-city-hub__inline-links .cc-city-hub__inline-link:nth-child(n+3) {
    display: none;
  }

  .cc-city-hub__section--quick-cards {
    margin-top: 28px;
  }

  .cc-city-hub__top-searches-card {
    padding: 22px 20px;
    border-radius: 26px;
  }

  .cc-city-hub__section-header--top-searches {
    gap: 14px;
  }

  .cc-city-hub__section-link--button {
    min-height: 42px;
    padding: 0 16px;
  }

  .cc-city-hub__quick-card {
    min-height: 170px;
  }

  .cc-city-hub__quick-card.has-media {
    background:
      linear-gradient(180deg, rgba(5,19,28,0.28) 0%, rgba(5,19,28,0.60) 56%, rgba(5,19,28,0.84) 100%),
      var(--cc-quick-card-image-mobile, var(--cc-quick-card-image)) center/cover no-repeat;
  }

  .cc-city-hub__quick-title {
    font-size: 25px;
  }

  .cc-city-hub__section-header--split .cc-city-hub__section-link {
    margin-top: 2px;
  }
}


/* 2026-03-21 refinements */
@media (min-width: 768px) {
  .cc-city-hub__stats {
    display: none;
  }

  .cc-city-hub__inline-links--hero-wide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
    width: min(920px, 100%);
  }

  /* Grid = 3 coloane egale; fără wrap, textul depășea fundalul rotunjit. */
  .cc-city-hub__inline-links--hero-wide .cc-city-hub__inline-link {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 10px 18px;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.35;
  }

  .cc-city-hub__quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .cc-city-hub__quick-card,
  .cc-city-hub__quick-card.is-featured {
    grid-column: auto;
    min-height: 210px;
  }
}

@media (max-width: 767.98px) {
  .cc-city-hub__hero {
    padding-top: 28px;
    margin-top: -1px;
  }

  .cc-city-hub__hero-actions .cc-city-hub__btn:last-child {
    display: inline-flex;
  }

  .cc-city-hub__inline-links--hero-wide {
    margin-top: 14px;
  }
}
@media (max-width: 767.98px) {
  .cc-city-hub__seo-card {
    padding: 22px 18px;
  }

  .cc-city-hub__section-title--seo {
    padding-left: 14px;
  }

  .cc-city-hub__section-title--seo::before {
    top: 4px;
    bottom: 4px;
  }

  .cc-city-hub__section-title {
    font-size: clamp(24px, 6.6vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    max-width: 100%;
    text-wrap: pretty;
  }
}
@media (max-width: 767.98px) {
  .cc-city-hub__hero {
    position: relative;
    padding: 28px 0 26px;
    background:
      radial-gradient(circle at 8% 10%, rgba(35, 211, 211, 0.12), transparent 34%),
      radial-gradient(circle at 88% 16%, rgba(35, 211, 211, 0.16), transparent 28%),
      linear-gradient(180deg, #eef7f7 0%, #fbfdfd 28%, #ffffff 100%);
  }

  .cc-city-hub__hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    height: 100px;
    background:
      radial-gradient(circle at 8% 10%, rgba(35, 211, 211, 0.12), transparent 34%),
      radial-gradient(circle at 88% 16%, rgba(35, 211, 211, 0.16), transparent 28%),
      linear-gradient(180deg, #eef7f7 0%, #eef7f7 100%);
    z-index: 0;
    pointer-events: none;
  }

  .cc-city-hub__hero-grid,
  .cc-city-hub__hero-copy {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 767.98px) {
  .cc-city-hub .ct-container {
    width: min(100% - 24px, 1000px);
  }

  .cc-city-hub__hero {
    position: relative;
    padding: 28px 0 26px;
    overflow: visible;
    background:
      radial-gradient(circle at 8% 10%, rgba(35, 211, 211, 0.12), transparent 34%),
      radial-gradient(circle at 88% 16%, rgba(35, 211, 211, 0.16), transparent 28%),
      linear-gradient(180deg, #eef7f7 0%, #fbfdfd 28%, #ffffff 100%);
  }

  .cc-city-hub__hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    height: 100px;
    background:
      radial-gradient(circle at 8% 10%, rgba(35, 211, 211, 0.12), transparent 34%),
      radial-gradient(circle at 88% 16%, rgba(35, 211, 211, 0.16), transparent 28%),
      linear-gradient(180deg, #eef7f7 0%, #eef7f7 100%);
    z-index: 0;
    pointer-events: none;
  }

  .cc-city-hub__hero-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
  }

  .cc-city-hub__hero-copy {
    order: 1;
    position: relative;
    z-index: 2;
    max-width: 100%;
  }

  .cc-city-hub__title {
    max-width: 100%;
    font-size: clamp(30px, 8.6vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-wrap: pretty;
  }

  .cc-city-hub__lede {
    max-width: 100%;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
  }

  .cc-city-hub__intro,
  .cc-city-hub__intro--hero {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  .cc-city-hub__hero-actions {
    margin-top: 18px;
    gap: 12px;
  }

  .cc-city-hub__btn {
    min-height: 52px;
    padding: 0 22px;
    font-size: 16px;
  }

  .cc-city-hub__hero-actions .cc-city-hub__btn:last-child {
    display: inline-flex;
  }

  .cc-city-hub__hero-visual {
    order: 2;
    display: block;
    width: 100%;
    min-height: 0;
    margin-top: 4px;
  }

  .cc-city-hub__hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: 24px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.10);
    background:
      linear-gradient(180deg, rgba(35,211,211,.08), rgba(255,255,255,.08)),
      var(--cc-city-hero-image, none) center/cover no-repeat,
      linear-gradient(135deg, #dff4f5 0%, #e9f3f7 44%, #dbe4f0 100%);
  }

  .cc-city-hub__hero-orb,
  .cc-city-hub__hero-float,
  .cc-city-hub__hero-card,
  .cc-city-hub__hero-panel {
    display: none !important;
  }

  .cc-city-hub__search-wrap {
    order: 3;
    margin-top: 0;
  }

  .cc-search__input {
    height: 60px;
    padding: 0 74px 0 18px;
    font-size: 16px;
  }

  .cc-search__submit {
    width: 46px;
    height: 46px;
    right: 7px;
  }

  .cc-city-hub__stats {
    order: 4;
    margin-top: 0;
  }

  .cc-city-hub__stat {
    min-height: 40px;
    font-size: 14px;
  }

  .cc-city-hub__inline-links,
  .cc-city-hub__inline-links--hero-wide {
    order: 5;
    margin-top: 0;
  }

  .cc-city-hub__inline-link {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cc-city-hub__inline-links .cc-city-hub__inline-link:nth-child(n+4),
  .cc-city-hub__inline-links--hero-wide .cc-city-hub__inline-link:nth-child(n+4) {
    display: none;
  }

  .cc-city-hub__seo-card {
    padding: 22px 18px;
  }

  .cc-city-hub__section-title {
    font-size: clamp(24px, 6.6vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    max-width: 100%;
    text-wrap: pretty;
  }

  .cc-city-hub__section-title--seo {
    padding-left: 14px;
  }

  .cc-city-hub__section-title--seo::before {
    top: 4px;
    bottom: 4px;
  }
}
@media (max-width: 991.98px) {
  .cc-city-hub__inline-links,
  .cc-city-hub__inline-links--hero-wide,
  .cc-city-hub__stats {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .cc-city-hub__eyebrow-wrap {
    display: none !important;
  }

  .cc-city-hub__hero-grid {
    gap: 12px;
  }

  .cc-city-hub__title {
    max-width: 100%;
    font-size: clamp(30px, 8.6vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-wrap: pretty;
  }

  .cc-city-hub__intro,
  .cc-city-hub__intro--hero {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.58;
  }

  .cc-city-hub__hero-actions {
    margin-top: 16px;
    gap: 10px;
  }

  .cc-city-hub__search-wrap {
    margin-top: 12px;
  }

  .cc-city-hub__hero-visual {
    margin-top: 10px;
  }

  .cc-city-hub__hero-image {
    aspect-ratio: 16 / 8.4;
    border-radius: 22px;
  }
}
@media (max-width: 767.98px) {
  .cc-city-hub__lede {
    display: none;
  }
}