/* Blok: Kontakt na terenie Polski – 4 kolumny */

.vca-contact-pl {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 2.5rem;
  padding-bottom: 4.375rem;
  box-sizing: border-box;
  background: #fff;
}

.vca-contact-pl__container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.vca-contact-pl__title {
  margin: 0 0 3rem;
  text-align: center;
  font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  color: #111;
}

/* Zawsze 4 kolumny na większych ekranach; kolejne wpisy repeatera w kolejnych rzędach */
.vca-contact-pl__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  align-items: start;
}

.vca-contact-pl__col {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/* Nagłówki kolumn – semantycznie <h5> w index.php */
.vca-contact-pl__col-title {
  margin: 0 0 1rem;
  padding: 0;
  font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #111;
}

.vca-contact-pl__email {
  display: inline;
  cursor: pointer;
  margin: 0;
  font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: rgb(35, 199, 103);
  text-decoration: none;
}

.vca-contact-pl__email + .vca-contact-pl__phones {
  margin-top: 0.5rem;
}

.vca-contact-pl__email:hover,
.vca-contact-pl__email:focus {
  text-decoration: underline;
}

.vca-contact-pl__phones {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vca-contact-pl__phones li {
  margin: 0 0 0.35rem;
  padding: 0;
  line-height: 30px;
}

.vca-contact-pl__phones li:last-child {
  margin-bottom: 0;
}

.vca-contact-pl__phone {
  display: inline;
  cursor: pointer;
  font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: rgb(131, 140, 149);
  text-decoration: none;
  text-decoration-color: rgb(131, 140, 149);
}

.vca-contact-pl__phone:hover,
.vca-contact-pl__phone:focus {
  color: rgb(131, 140, 149);
  text-decoration: underline;
  text-decoration-color: rgb(131, 140, 149);
}

/* Tablet: 2 kolumny */
@media (max-width: 1024px) {
  .vca-contact-pl__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}

/* Telefon / wąski tablet: jedna kolumna (wcześniej niż typowe 640px – lepszy komfort na iPad itp.) */
@media (max-width: 768px) {
  .vca-contact-pl {
    padding-top: 1.75rem;
    padding-bottom: 2.5rem;
  }

  .vca-contact-pl__container {
    padding: 0 1.125rem;
  }

  .vca-contact-pl__title {
    margin: 0 0 1.75rem;
    font-size: 1.375rem;
    line-height: 1.3;
    padding: 0 0.125rem;
  }

  .vca-contact-pl__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vca-contact-pl__col {
    padding: 1.25rem 0 1.5rem;
    border-bottom: 1px solid #e8ecef;
  }

  .vca-contact-pl__col:first-child {
    padding-top: 0;
  }

  .vca-contact-pl__col:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .vca-contact-pl__col-title {
    margin: 0 0 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.35;
  }

  .vca-contact-pl__email {
    display: inline-block;
    max-width: 100%;
    padding: 0.35rem 0;
    font-size: 0.9375rem;
    line-height: 1.45;
    word-break: break-word;
  }

  .vca-contact-pl__phones li {
    margin: 0 0 0.5rem;
    line-height: 1.45;
  }

  .vca-contact-pl__phone {
    display: inline-block;
    padding: 0.45rem 0;
    font-size: 0.9375rem;
    line-height: 1.45;
  }
}

/* Bardzo wąski ekran – mniejszy tytuł sekcji */
@media (max-width: 380px) {
  .vca-contact-pl__title {
    font-size: 1.25rem;
  }
}
