.section-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 20px;
}
.section-heading::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  margin-top: 10px;
}

.contact-page {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  margin: auto;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 600px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-card .section-heading {
  margin-bottom: 12px;
}
.contact-card .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.contact-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.contact-list li {
  margin-bottom: 6px;
}
.contact-list li:last-child {
  margin-bottom: 0;
}
.contact-list a {
  color: var(--black);
  font-size: 0.95rem;
}
.contact-list a:hover {
  color: var(--red);
  text-decoration: underline;
}

/*# sourceMappingURL=contact.css.map */
