#city-switcher {
  z-index: 1055;
}

.city-switcher-dialog {
  max-width: 560px;
  max-height: min(80vh, 640px);
}

.city-switcher-results {
  height: 320px;
}

.promo-image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.promo-slider {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
}

.promo-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.promo-card-body {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 58%, #edf6ff 100%);
  border-top: 1px solid rgba(13, 110, 253, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: #1f2937;
}

.promo-contact-icons {
  background: linear-gradient(120deg, rgba(13, 110, 253, 0.85), rgba(25, 135, 84, 0.18), rgba(13, 202, 240, 0.2));
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.promo-icon-link {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  text-decoration: none;
}

.promo-contact-icons .icon-only-link {
  animation: iconPulse 1.6s ease-in-out infinite;
  transform-origin: center;
}

.promo-contact-icons .icon-only-link:nth-child(2n) {
  animation-delay: 0.2s;
}

.promo-contact-icons .icon-only-link:nth-child(3n) {
  animation-delay: 0.4s;
}

.promo-contact-icons .icon-only-link img {
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.promo-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  min-height: calc(1.35em * 2);
  font-size: 0.9rem !important;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: #111827;
}

.promo-bio {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
  min-height: calc(1.4em * 3);
  font-size: 0.8rem;
  color: #374151 !important;
}

.promo-meta-overlay {
  background: rgba(17, 24, 39, 0.82);
  font-size: 0.7rem;
  line-height: 1.2;
}

.promo-badge-fresh {
  background: linear-gradient(135deg, #9f1239, #c2410c);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  letter-spacing: 0.35px;
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

@keyframes iconPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.08);
  }
}
