/* Homepage + offers hub — sitelink-style section cards */
.sitelink-strip {
  padding: 1.35rem 0 0.35rem;
  background: #fff;
  border-bottom: 1px solid rgba(16, 40, 51, 0.06);
}

.sitelink-strip .section-label {
  margin-bottom: 0.85rem;
}

.sitelink-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.sitelink-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.95rem 0.9rem 1.05rem;
  border-radius: 14px;
  background: #f7fbfa;
  border: 1px solid rgba(16, 40, 51, 0.08);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sitelink-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 174, 151, 0.4);
  box-shadow: 0 10px 22px rgba(16, 40, 51, 0.07);
}

.sitelink-card strong {
  color: var(--navy, #1b2e3e);
  font-size: 0.95rem;
}

.sitelink-card span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted, #5a6d7c);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 40, 51, 0.08);
  box-shadow: 0 10px 28px rgba(16, 40, 51, 0.05);
  text-decoration: none;
  color: inherit;
}

.offer-card .kicker {
  margin: 0 0 0.35rem;
  color: var(--teal-deep, #008f7c);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-card h2,
.offer-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.offer-card p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--muted, #5a6d7c);
}

.offer-card .more {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-deep, #008f7c);
}

@media (max-width: 980px) {
  .sitelink-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .sitelink-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.city-hub-strip .section-title {
  margin: 0 0 1rem;
  font-size: 1.45rem;
}

.city-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.city-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.05rem 1.2rem;
  border-radius: 16px;
  background: #f7fbfa;
  border: 1px solid rgba(16, 40, 51, 0.08);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

a.city-hub-card:hover,
.city-hub-card.is-active {
  border-color: rgba(0, 174, 151, 0.45);
  box-shadow: 0 10px 22px rgba(16, 40, 51, 0.07);
}

.city-hub-card strong {
  color: var(--navy, #1b2e3e);
  font-size: 1.05rem;
}

.city-hub-card span {
  font-size: 0.82rem;
  color: var(--muted, #5a6d7c);
}

.city-hub-card.is-soon {
  opacity: 0.72;
  cursor: default;
  background: #f3f5f6;
}

.city-pick-wrap {
  padding: 0 0 0.5rem;
}

.city-pick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.35rem 0 0.75rem;
}

.city-pick {
  appearance: none;
  border: 1px solid rgba(16, 40, 51, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy, #1b2e3e);
}

.city-pick.is-active {
  background: rgba(0, 174, 151, 0.12);
  border-color: rgba(0, 174, 151, 0.45);
  color: var(--teal-deep, #008f7c);
}

.city-pick.is-soon {
  opacity: 0.65;
  cursor: default;
}

.city-soon-note {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted, #5a6d7c);
}

@media (max-width: 800px) {
  .city-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
