/* ========================================
   CONTACTS — Страница контактов
   ======================================== */

.contacts-main {
  justify-content: center;
}

.contacts-panel {
  width: 100%;
  max-width: 600px;
  border-radius: 48px;
  margin: 0 auto;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contacts-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0;
}

.contacts-row__label {
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--gray-text);
}

.contacts-row__value {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  line-height: 1.4;
}

.contacts-row__value--link {
  color: var(--red-btn);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contacts-row__value--link:hover {
  opacity: 0.7;
}

.contacts-subtitle {
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  padding-bottom: 8px;
}

.contacts-socials {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contacts-social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s;
}

.contacts-social:hover {
  background: var(--gray-light);
}

.contacts-social__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.contacts-social__name {
  flex: 1;
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.contacts-social__arrow {
  flex-shrink: 0;
  color: var(--gray-text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contacts-panel {
    border-radius: 32px;
  }
}

@media (max-width: 480px) {
  .contacts-panel {
    border-radius: 24px;
  }
}
