.city-page-box {
  max-width: 860px;
  margin: 0 auto;
}

.city-hub-box {
  margin-top: 0;
}

.city-hub-header {
  margin-bottom: 12px;
}

.city-hub-header h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.city-hub-header p {
  margin: 0;
  color: #b8b8b8;
  line-height: 1.55;
  font-size: 14px;
}

.city-section {
  margin-top: 22px;
}

.city-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c8b27a;
  margin-bottom: 12px;
}

.city-section-soon .city-section-title {
  color: #8ea0b8;
}

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

.city-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;

  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);

  text-decoration: none;
  color: #fff;

  transition: transform 0.18s ease,
              background 0.18s ease,
              border-color 0.18s ease,
              opacity 0.18s ease;
}

.city-card-active {
  background: rgba(255,255,255,0.04);
}

.city-card-active:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}

.city-card-soon {
  background: rgba(255,255,255,0.025);
  opacity: 0.82;
  cursor: default;
}

.city-card-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  margin-bottom: 10px;
  position: relative;
}

.city-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.city-card-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,0.28)
  );
}

.city-card-body {
  min-width: 0;
}

.city-card-title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.2;
}

.city-card-desc {
  font-size: 13px;
  line-height: 1.45;
  color: #b8b8b8;
}

.city-card-main-action {
  background: rgba(255,255,255,0.06);
  border-color: rgba(200,178,122,0.22);
}

.city-card-main-action:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,178,122,0.35);
}

.city-card-wide {
  grid-column: 1 / -1;
}

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