.profile {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-block: var(--s-5);
  background: var(--ground);
}
.profile__group { padding: var(--s-4); border-right: 1px solid var(--line); }
.profile__group:last-child { border-right: 0; }
.profile__group--handling { background: var(--mist); }

.profile__label {
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.profile__list { display: grid; gap: var(--s-3); }
.profile__row { display: grid; gap: 1px; }
.profile__row dt { font-size: var(--step--2); color: var(--ink-faint); }
.profile__row dd { margin: 0; font-size: var(--step--1); color: var(--ink); word-break: break-word; line-height: 1.4; }

@media (max-width: 980px) {
  .profile { grid-template-columns: 1fr; }
  .profile__group { border-right: 0; border-bottom: 1px solid var(--line); }
  .profile__group:last-child { border-bottom: 0; }
}
