/* Premium postal codes section — city pages */
.postalCodesSection {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.25rem, 6vw, 5rem);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f5f7fb 100%);
}

.postalCodesSection__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1120px;
}

.postalCodesSection__head {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 2rem;
}

.postalCodesSection__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #64748b;
}

.postalCodesSection__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0c1526;
  text-transform: none;
}

.postalCodesSection__place {
  color: #1a4fd6;
}

.postalCodesSection__state {
  font-weight: 700;
  color: #0f2f8a;
}

.postalCodesSection__lead {
  margin: 0.85rem auto 0;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
}

.postalCodesSection__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.postalCodesSection__ornamentLine {
  width: clamp(48px, 8vw, 88px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 79, 214, 0.45), transparent);
}

.postalCodesSection__ornamentGem {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9b44a 0%, #e8c468 100%);
  box-shadow:
    0 0 0 3px rgba(217, 180, 74, 0.18),
    0 0 14px rgba(232, 196, 104, 0.35);
}

.postalCodesSection__panel {
  width: 100%;
  max-width: min(980px, 100%);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  border: 1px solid rgba(26, 79, 214, 0.12);
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 56px rgba(15, 35, 80, 0.08);
}

.postalCodesSection__count {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.postalCodesSection__countNum {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  color: #1a4fd6;
}

.postalCodesGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.postalCodesGrid__item {
  display: flex;
}

.postalCodesGrid__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: #1e293b;
  background: #ffffff;
  border: 1px solid rgba(26, 79, 214, 0.14);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.postalCodesGrid__chip:hover {
  border-color: rgba(26, 79, 214, 0.35);
  box-shadow: 0 8px 22px rgba(26, 79, 214, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .postalCodesGrid__chip {
    min-width: 5rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .postalCodesGrid__chip {
    transition: none;
  }

  .postalCodesGrid__chip:hover {
    transform: none;
  }
}
