/**
 * @file
 * Секция «Контакты» (нода mt_contact): обёртка формы и сетка страницы.
 */

.mt-contacts-section {
  scroll-margin-top: 6rem;
  width: 100%;
  overflow-x: clip;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mt-contacts-section {
    margin-top: 3rem;
    margin-bottom: 0rem;
  }
}

.mt-contacts-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.mt-contacts-section__form-col,
.mt-contacts-section__aside {
  min-width: 0;
}

@media (min-width: 1024px) {
  .mt-contacts-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Карточка вокруг webform */
.mt-contacts-section__form-card {
  position: relative;
  overflow: hidden;
  height: fit-content;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.06);
}

@media (min-width: 768px) {
  .mt-contacts-section__form-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .mt-contacts-section__form-card {
    padding: 1rem;
  }
}

.mt-contacts-section__form-decoration {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  margin-top: -5rem;
  margin-right: -5rem;
  border-radius: 50%;
  background: #faf5ff;
  opacity: 0.5;
  filter: blur(48px);
}

.mt-contacts-section__form-title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.mt-contacts-section__form-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}

.mt-contacts-section__form-inner {
  position: relative;
  z-index: 1;
}

/* Правая колонка (контакты / карта) */
.mt-contacts-section__aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
