.profile-contact {
  margin: 32px 0 42px;
  padding: 24px 26px 26px;
  max-width: 780px;
  background: var(--aged-paper-bg);
  box-shadow: var(--aged-paper-shadow);
  color: var(--dark);
}

.profile-contact .eyebrow {
  margin-bottom: 14px;
  color: var(--dark);
}

.profile-contact > div {
  display: flex;
  flex-wrap: wrap;
  column-gap: 36px;
  row-gap: 12px;
}

/* Exactly 4 items (e.g. locatie + telefoon + e-mail + website): 2 op 2 i.p.v. op een rij */
.profile-contact > div:has(> :nth-child(4):last-child) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 12px;
}

.profile-contact a,
.profile-contact .profile-location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  text-decoration: none;
}

.profile-contact a svg,
.profile-contact .profile-location svg {
  flex: none;
  color: var(--dark);
}

.profile-contact .profile-location a {
  display: inline;
  text-decoration: underline;
}

.profile-contact a:hover strong,
.profile-contact a:focus-visible strong {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.profile-contact strong {
  overflow-wrap: break-word;
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.3;
}

.profile-list-heading {
  margin: 34px 0 12px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.profile-list {
  max-width: 780px;
  margin: 14px 0 28px;
  padding: 0;
  list-style: none;
}

.profile-list li {
  position: relative;
  padding: 11px 0 11px 25px;
  border-top: 1px solid var(--line);
  line-height: 1.45;
}

.profile-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.profile-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #8c7420;
}

.profile-list-title {
  color: var(--dark);
  font-weight: 600;
}

.profile-list-meta {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 400;
  font-size: .88rem;
}

.profile-list-note {
  max-width: 780px;
  margin: -12px 0 28px;
  color: var(--muted);
  font-size: .92rem;
  font-style: italic;
}

@media (max-width: 720px) {
  .profile-contact > div,
  .profile-contact > div:has(> :nth-child(4):last-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
