.face-list-shell {
  width: min(1360px, calc(100% - 72px));
}

.face-list-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(42px, 7vw, 82px) 0 34px;
}

.face-list-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.7rem, 5.8vw, 5.6rem);
  line-height: 1.06;
}

.face-list-hero p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.9;
}

.face-list-switch {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.face-list-switch a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.face-list-switch .is-current {
  background: rgba(200, 117, 104, 0.12);
  color: var(--coral-dark);
}

.face-list-grid {
  display: grid;
  gap: 14px;
  padding: 12px 0 72px;
}

.face-list-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: inherit;
  text-decoration: none;
}

.face-list-card:hover {
  border-color: rgba(200, 117, 104, 0.34);
  background: rgba(255, 255, 255, 0.95);
}

.face-list-card > img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.face-list-card > div {
  display: grid;
  align-content: center;
  padding: 24px 28px 24px 0;
}

.face-list-card span {
  color: var(--coral-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.face-list-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.face-list-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.face-list-card strong {
  margin-top: 18px;
  color: var(--text);
  font-size: 0.84rem;
}

.face-list-card strong::after {
  content: " >";
  color: var(--coral);
}

@media (max-width: 820px) {
  .face-list-shell {
    width: min(100% - 24px, 720px);
  }

  .face-list-hero,
  .face-list-card {
    grid-template-columns: 1fr;
  }

  .face-list-switch {
    width: fit-content;
  }

  .face-list-card > img {
    min-height: 260px;
    aspect-ratio: 4 / 3.5;
  }

  .face-list-card > div {
    padding: 20px;
  }
}
