/* === Contacts page === */
.contacts-section {
  width: 100%;
  background: #f5f6f7;
  padding: 80px 120px;
  display: flex;
  justify-content: center;
}

.contacts-inner {
  max-width: 1122px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contacts-title {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.contacts-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.4;
  max-width: 600px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
  color: #000;
  flex-shrink: 0;
}

.contact-card-icon-img {
  flex-shrink: 0;
}

.contact-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.04em;
}

.contact-card-handle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #737373;
  letter-spacing: -0.02em;
}

/* Threads card hidden in English, shown in Ukrainian */
html[lang="en"] .contact-card--threads {
  display: none;
}

@media (max-width: 768px) {
  .contacts-section {
    padding: 60px 24px;
  }
  .contacts-title {
    font-size: 44px;
  }
  .contacts-subtitle {
    font-size: 18px;
  }
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .contacts-section {
    padding: 48px 16px;
  }
  .contacts-title {
    font-size: 36px;
  }
  .contacts-subtitle {
    font-size: 16px;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}
