.contact-options {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-options .contact-card {
  height: auto;
  min-height: 96px;
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon link";
  column-gap: 1rem;
  align-items: center;
}

.contact-options .contact-card i {
  grid-area: icon;
  width: 48px;
  height: 48px;
  margin: 0;
}

.contact-options .contact-card h2 {
  grid-area: title;
  margin: 0;
  font-size: 1.05rem;
}

.contact-options .contact-card a {
  grid-area: link;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 575px) {
  .contact-options .contact-card {
    min-height: 88px;
    padding: .9rem 1rem;
  }
}
