/* 可索引的艺术家、作品与档案目录页 */
.seo-entity-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 104px 32px 80px;
}

.seo-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--gray);
  font-size: .78rem;
}

.seo-breadcrumb a:hover,
.seo-text-link:hover,
.seo-creator a:hover {
  color: var(--gold-dk);
}

.seo-artist-hero,
.seo-artwork-hero {
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.seo-artist-hero {
  grid-template-columns: minmax(260px, 36%) 1fr;
}

.seo-artist-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  color: var(--gold);
  background: var(--ink-lt);
  font-family: var(--font-sc);
  font-size: 4rem;
}

.seo-artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-kicker {
  margin-bottom: 12px;
  color: var(--gold-dk);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.seo-artist-copy h1,
.seo-artwork-copy h1,
.seo-catalog-header h1 {
  margin-bottom: 20px;
  font-family: var(--font-sc);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.2;
}

.seo-lead {
  color: var(--ink-md);
  font-size: .98rem;
  line-height: 2;
  white-space: pre-line;
}

.seo-facts {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dk);
}

.seo-facts > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: start;
}

.seo-facts dt {
  color: var(--gray);
  font-size: .78rem;
}

.seo-facts dd {
  color: var(--ink-md);
  font-size: .84rem;
}

.seo-text-section,
.seo-works-section {
  margin-top: 64px;
}

.seo-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.seo-section-heading span {
  color: var(--gold);
  font-family: var(--font-sc);
  font-size: .78rem;
}

.seo-section-heading h2 {
  font-family: var(--font-sc);
  font-size: 1.55rem;
  font-weight: 500;
}

.seo-rich-text {
  max-width: 880px;
  padding: 32px 36px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .72);
  color: var(--ink-md);
  font-size: .92rem;
  line-height: 2;
}

.seo-rich-text p + p {
  margin-top: 16px;
}

.seo-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.seo-work-card {
  overflow: hidden;
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.seo-work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.seo-work-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-lt);
  color: rgba(255, 255, 255, .45);
  font-size: .76rem;
}

.seo-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.seo-work-card:hover .seo-work-image img {
  transform: scale(1.025);
}

.seo-work-copy {
  padding: 16px 18px 18px;
}

.seo-work-copy h3 {
  overflow: hidden;
  margin-bottom: 7px;
  font-family: var(--font-sc);
  font-size: .98rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-work-copy p {
  overflow: hidden;
  color: var(--gray);
  font-size: .72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-empty {
  grid-column: 1 / -1;
  color: var(--gray);
}

.seo-artwork-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: stretch;
}

.seo-artwork-figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.seo-artwork-figure img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.seo-artwork-figure figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  text-align: center;
}

.seo-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  color: rgba(255, 255, 255, .45);
}

.seo-artwork-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seo-creator {
  color: var(--gray);
  font-size: .9rem;
}

.seo-creator a {
  color: var(--gold-dk);
  font-weight: 600;
}

.seo-artwork-facts {
  margin-top: 36px;
}

.seo-artwork-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.seo-copyright-note {
  margin-top: 48px;
  padding: 22px 26px;
  border: 1px solid var(--cream-dk);
  border-radius: 6px;
  color: var(--gray);
  background: rgba(255, 255, 255, .55);
  font-size: .78rem;
}

.seo-copyright-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-md);
}

.seo-catalog-header {
  padding: 56px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
}

.seo-catalog-header h1 {
  color: var(--gold);
}

.seo-catalog-header > p:last-child {
  color: rgba(255, 255, 255, .62);
}

.seo-catalog-group {
  margin-top: 48px;
  padding: 36px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.seo-catalog-artist {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-dk);
}

.seo-catalog-artist > div:first-child {
  width: 104px;
  height: 104px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink-lt);
}

.seo-catalog-artist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-catalog-artist h2 {
  margin-bottom: 7px;
  font-family: var(--font-sc);
  font-size: 1.45rem;
}

.seo-catalog-artist p {
  max-width: 820px;
  margin-bottom: 8px;
  color: var(--gray);
  font-size: .82rem;
}

.seo-text-link {
  color: var(--gold-dk);
  font-size: .78rem;
}

.seo-catalog-work-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 20px;
}

.seo-catalog-work-list li {
  border-bottom: 1px solid var(--cream-dk);
}

.seo-catalog-work-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 2px;
}

.seo-catalog-work-list a:hover span {
  color: var(--gold-dk);
}

.seo-catalog-work-list span {
  font-family: var(--font-sc);
  font-size: .9rem;
}

.seo-catalog-work-list small {
  color: var(--gray);
  font-size: .7rem;
  text-align: right;
}

@media (max-width: 980px) {
  .seo-artist-hero,
  .seo-artwork-hero {
    gap: 32px;
    padding: 32px;
  }

  .seo-work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-artwork-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .seo-entity-page {
    padding: 88px 16px 56px;
  }

  .seo-artist-hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .seo-artist-photo {
    max-height: 460px;
  }

  .seo-artwork-hero {
    padding: 16px;
  }

  .seo-artwork-figure {
    min-height: 320px;
  }

  .seo-image-placeholder {
    min-height: 300px;
  }

  .seo-rich-text {
    padding: 24px 22px;
  }

  .seo-work-grid,
  .seo-catalog-work-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-catalog-header,
  .seo-catalog-group {
    padding: 24px 20px;
  }

  .seo-catalog-artist {
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }

  .seo-catalog-artist > div:first-child {
    width: 72px;
    height: 72px;
  }

  .seo-catalog-work-list {
    display: block;
  }
}

@media (max-width: 420px) {
  .seo-work-grid {
    grid-template-columns: 1fr;
  }

  .seo-work-image {
    aspect-ratio: 16 / 10;
  }

  .seo-facts > div {
    grid-template-columns: 76px 1fr;
  }
}
