/* @2025 - Steffen Klausen - steffen@klausenguldbaek.dk*/
/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* CONTACTS STYLING */

.contacts {
  position: relative;
  min-height: 300px;
}

.contacts-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media (min-width: 1000px) {
  .contacts-flex {
    flex-direction: column;
  }

  .contacts {
    height: 100%;
  }
}

.contacts-person {
  flex: 1;
  text-align: center;
  padding: 1rem;
}

.contacts-person-title {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  color: #333;
}

.contacts-person-details {
  font-size: 1rem;
  line-height: normal;
  color: #333;
}

.contacts-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding: 2rem;
}
