/* =========================
   Contacts page
========================= */

.contacts-page .page-title{
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 700;
}

/* 4 карточки как на скрине (2x2) */
.contacts-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.contacts-card{
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 18px;
  background: #fff;
  padding: 22px 24px;
  min-height: 220px; /* чтобы визуально было как на макете */
}

.contacts-card__title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.contacts-card__text{
  font-size: 15px;
  line-height: 1.6;
}

.contacts-card a{
  text-decoration: none;
}
.contacts-card a:hover{
  text-decoration: underline;
}

/* Заголовок + карта */
.contacts-map__title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.contacts-map__frame{
  border-radius: 12px;
  overflow: hidden;
}
/* mobile */
@media (max-width: 900px){
  .contacts-grid{
    grid-template-columns: 1fr;
  }
  .contacts-card{
    min-height: auto;
  }
  .contacts-map__frame iframe{
    height: 360px;
  }
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: 0.2s ease;
}

.social-link:hover {
  color: #d60000;
}
.page-head {
    padding: 24px 0 10px;
}