*, *::before, *::after {
  box-sizing: border-box;
}

.kontakt-page {
  padding-top: 145px;
  min-height: 100vh;
}
.kontakt-page .content {
  margin: auto;
  padding-inline: 20px;
}
.kontakt-page .text {
  margin-bottom: 60px;
}
.kontakt-page .text h1 {
  font-size: 28px;
  color: #141a3a;
  font-family: "Stampa", "Roboto", sans-serif;
  margin-bottom: 15px;
}
.kontakt-page .text .intro {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1F1F1F;
  max-width: 600px;
}
.kontakt-page .contact-section {
  margin-bottom: 70px;
}
.kontakt-page .contact-section h2 {
  font-family: "Stampa", "Roboto", sans-serif;
  font-size: 22px;
  color: #141a3a;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.kontakt-page .contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.kontakt-page .contact-person {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 18px;
}
.kontakt-page .contact-person img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}
.kontakt-page .contact-person .info {
  flex: 1;
}
.kontakt-page .contact-person .info h3 {
  font-family: "Stampa", "Roboto", sans-serif;
  font-size: 16px;
  color: #141a3a;
  margin: 0;
}
.kontakt-page .contact-person .info p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #1F1F1F;
  margin: 2px 0 0 0;
}
.kontakt-page .contact-person .flex-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.kontakt-page .contact-person .actions {
  display: flex;
  gap: 12px;
}
.kontakt-page .contact-person .actions a {
  width: 26px;
  height: 26px;
  background: white;
  color: #b6a265;
  border: 1px solid rgba(182, 162, 101, 0.5882352941);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-decoration: none;
  transition: 0.2s;
}
.kontakt-page .contact-person .actions a:hover {
  transform: translateY(-2px);
}

/* Desktop spacing */
@media (min-width: 1140px) {
  .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
    width: 100%;
  }
  .flex .contact-section {
    min-width: calc(33% - 100px);
    max-width: calc(33% - 100px);
  }
  .kontakt-page .content {
    padding-inline: 50px;
  }
  .kontakt-page .content h2 {
    font-size: 26px;
  }
  .kontakt-page .content .text .intro {
    font-size: 18px;
  }
  .kontakt-page .content .contact-person .flex-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .kontakt-page .content .contact-person .info h3 {
    font-size: 20px;
  }
  .kontakt-page .content .contact-person .actions a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .kontakt-page .text h1 {
    font-size: 55px;
  }
}/*# sourceMappingURL=kontakt.css.map */