/**
 * Contact list
 */

.contact-list {
  display: grid;
  padding: 2rem;
  background-color: var(--primary-light);
  border-radius: 2px;
  margin-top: 1rem;
}

/**
 * Contact element
 */

.contact-element {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 1rem));
  padding: 1rem 0;
  column-gap: 1rem;
}
.contact-element:not(:last-child) {
  border-bottom: 1px solid white;
}
.contact-element__title {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
}
.contact-element__text p {
  margin: 0;
}
.contact-element__text a {
  color: #DD491B;
  text-decoration: none;
}
.contact-element__text a:hover {
  text-decoration: underline;
}
.contact-element__text p:first-child {
  margin-bottom: .5rem;
}
@media all and (min-width: 700px) {
  .contact-element {
    column-gap: 2rem;
    grid-template-columns: repeat(2, calc(50% - 2rem));
  }
}
