/* ================================
   CONTACT
   Sekcja kontaktu (kafle + lokalizacja)
================================ */

.contact.section {
  padding: 72px 0 88px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.contact-card {
  grid-column: span 6;
  background: #ffffff;
  border-radius: 4px;
  padding: 22px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-card--wide {
  grid-column: span 12;
}

.contact-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 2px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.04);
  color: #111;
}

.contact-card__title {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.2;
}

.contact-card__lines {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.contact-card__link {
  display: inline-block;
  color: #111;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  white-space: nowrap;
}

.contact-card__link:hover {
  text-decoration: underline;
}

.contact-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #2b2b2b;
}

.contact-card__hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #5a5a5a;
}

.contact-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 14px;
  border-radius: 2px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

.contact-card__button:hover {
  filter: brightness(1.05);
}

.contact__footer {
  margin-top: 18px;
}

.contact__footerText {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a5a;
}
.contact__lead {
  max-width: 70ch;
}
.contact__lead .nowrap {
  white-space: nowrap;
}
/* ================================
   RESPONSIVE
================================ */
@media (max-width: 820px) {
  .contact-card {
    grid-column: span 12;
  }
}

@media (max-width: 520px) {
  .contact-card__link {
    font-size: 16px;
  }
}