/* Страница «Контакты» */
.contacts-page-hero {
  background-image: url("../img/hero-atm-bg.png");
  background-position: center 48%;
  background-size: cover;
}

.contacts-page-hero .inner-hero__overlay {
  background: linear-gradient(90deg, rgba(22, 32, 51, .94), rgba(22, 32, 51, .58));
}

body.contacts-page .contacts-info-section {
  padding: 80px 0;
}

.contacts-info-section .section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(22, 32, 51, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(22, 31, 48, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(22, 31, 48, .14);
}

.contact-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  background: #fff3ea;
}

.contact-card__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.contact-card__value {
  margin: auto 0 0;
  color: var(--il-text);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

.contact-card__value:hover {
  color: var(--il-orange);
}

.contact-card__note {
  margin: 0 0 18px;
  color: var(--il-muted);
}

body.contacts-page .contacts-map-section {
  padding: 0 0 88px;
}

.contacts-map {
  overflow: hidden;
  min-height: 430px;
  border-radius: 22px;
  background: #e9eef5;
  box-shadow: 0 16px 44px rgba(22, 31, 48, .12);
}

.contacts-map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.contacts-map__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: #fff;
}

.contacts-map__footer h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.contacts-map__footer p {
  margin: 0;
  color: var(--il-muted);
}

@media (max-width: 767.98px) {
  body.contacts-page .contacts-info-section {
    padding: 54px 0;
  }

  body.contacts-page .contacts-map-section {
    padding: 0 0 54px;
  }

  .contacts-info-section .section-heading {
    margin-bottom: 30px;
  }

  .contact-card {
    padding: 24px;
  }

  .contacts-map {
    min-height: 0;
  }

  .contacts-map iframe {
    height: 360px;
  }

  .contacts-map__footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }
}
