.guest-profiles {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 1120px;
}

.guest-profiles__header {
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
}

.guest-profiles__header h1 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.48px;
  line-height: 32px;
  margin: 0;
  text-transform: uppercase;
}

.guest-profiles__grid {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 168px minmax(0, 1fr);
}

.guest-profiles__nav {
  align-content: start;
  background: #fff;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 16px;
}

.guest-profile-nav-link {
  border-radius: 4px;
  color: #000;
  display: grid;
  min-height: 64px;
  padding: 8px;
  text-decoration: none;
}

.guest-profile-nav-link:hover {
  background: #eef0f2;
}

.guest-profile-nav-link.is-selected {
  background: #e7ebee;
}

.guest-profile-nav-link__name,
.guest-profile-nav-link__descriptor {
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.guest-profile-nav-link__name {
  align-self: end;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.guest-profile-nav-link__descriptor {
  color: #525252;
  font-size: 12px;
  line-height: 20px;
}

.guest-profiles__content,
.guest-profile-island-stack {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.guest-profile-card-grid,
.guest-profile-island-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guest-profile-card {
  min-width: 0;
}

.guest-profile-card h2 {
  color: #525252;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.96px;
  line-height: 16px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.guest-profile-field-list {
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 16px;
}

.guest-profile-field-list > div {
  display: grid;
  gap: 12px;
  grid-template-columns: 128px minmax(0, 1fr);
}

.guest-profile-field-list dt,
.guest-profile-field-list dd {
  font-size: 12px;
  line-height: 16px;
  margin: 0;
  min-width: 0;
}

.guest-profile-field-list dt {
  color: #737373;
  overflow-wrap: anywhere;
}

.guest-profile-field-list dd {
  color: #000;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.guest-profile-field-list dd.is-empty {
  color: #a3a3a3;
  font-weight: 400;
}

@media (max-width: 980px) {
  .guest-profiles__grid,
  .guest-profile-card-grid,
  .guest-profile-island-grid {
    grid-template-columns: 1fr;
  }
}
