.curations-page,
.curation-detail {
  font-family: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
}

.curations-page .curation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 20px;
  max-width: 980px;
  margin: 48px auto 0;
}

.curations-page .curation-list article {
  min-width: 0;
  padding: 0;
  border: 0;
}

.curations-page .curation-list article > a {
  display: block;
}

.curation-thumbnail {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: #e8e5de;
  color: #8b877e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.55;
  text-align: center;
}

.curation-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.curation-list a:hover .curation-thumbnail img,
.curation-list a:focus-visible .curation-thumbnail img {
  transform: scale(1.025);
}

.curation-card-copy {
  display: block;
  padding-top: 14px;
}

.curation-card-copy > small,
.curation-card-link {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.curations-page .curation-list h2 {
  margin: 6px 0 7px;
  font-family: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.curations-page .curation-list p {
  display: -webkit-box;
  margin: 0 0 13px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.curation-detail {
  max-width: 1040px;
  padding-top: 70px;
  background: #fff;
}

.curation-detail-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.curation-detail-header h1 {
  margin: 0.3em 0 0.35em;
  font-family: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.curation-detail-header .lead {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.curated-books {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 72px auto 0;
  padding: 0;
  list-style: none;
}

.curated-books li {
  position: relative;
  display: grid;
  grid-template-columns: 36px 170px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

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

.curated-book-order {
  align-self: start;
  padding-top: 3px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.curated-book-cover {
  display: grid;
  width: 170px;
  min-height: 230px;
  place-items: center;
  background: #efeee9;
  color: #99978f;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.curated-book-cover img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 13px 30px rgba(42, 38, 31, 0.15);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.curated-book-cover:hover img,
.curated-book-cover:focus-visible img {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(42, 38, 31, 0.21);
}

.curated-book-copy {
  min-width: 0;
}

.curated-book-label {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.curated-book-copy h2 {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.curated-book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.curated-book-meta span + span::before {
  margin: 0 9px;
  content: "·";
}

.curated-book-reason {
  margin: 24px 0 0;
  color: #484741;
  font-size: 1rem;
  line-height: 1.85;
  white-space: pre-line;
}

.curated-book-link {
  display: inline-block;
  margin-top: 24px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .curations-page .curation-list {
    max-width: 660px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .curation-detail {
    padding-top: 50px;
  }

  .curated-books {
    margin-top: 52px;
  }

  .curated-books li {
    grid-template-columns: 28px 110px minmax(0, 1fr);
    gap: 16px;
    padding: 32px 0;
  }

  .curated-book-cover {
    width: 110px;
    min-height: 150px;
  }
}

@media (max-width: 600px) {
  .curations-page .curation-list {
    max-width: 360px;
    grid-template-columns: 1fr;
  }

  .curated-books li {
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
  }

  .curated-book-cover {
    width: min(150px, 100%);
  }

  .curated-book-copy {
    grid-column: 2;
  }
}
