.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 32rem;
  margin: 0 auto;
}

.contact-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  align-self: center;
}

.contact-card h2 span {
  color: var(--green);
}

.contact-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  border: 2px solid var(--green);
  object-fit: cover;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

dl.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  align-items: baseline;
  align-self: center;
  margin: 0 auto;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  white-space: nowrap;
}

.contact-value {
  font-size: 0.9rem;
}
.contact-value a {
  color: var(--green);
  text-decoration: none;
}
.contact-value a:hover {
  text-decoration: underline;
}

.contact-card .btn-primary {
  align-self: center;
}

@media (max-width: 600px) {
  dl.contact-row {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
  .contact-label {
    margin-top: 0.6rem;
  }
}
