/* =============================================================
   CATALOGUE RAISONNÉ — arnaudquercy.art
   Layout and typography for T1 catalogue pages
   ============================================================= */

/* ── Main content wrapper ────────────────────────────────────── */

.aqc-catalogue-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* ── Page title ──────────────────────────────────────────────── */

.aqc-catalogue-main h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

/* ── Hero: image + physical details ─────────────────────────── */

.cr-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 2rem 0 3rem;
}

/* Image column */
.cr-hero-image .artwork-figure {
  margin: 0;
}

/* 1:1 square container — image fits inside with no crop */
.cr-img-wrap {
  aspect-ratio: 1 / 1;
  background: #f4f4f2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cr-hero-image figcaption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
}

/* Details column */
.cr-hero-details {
  padding-top: 0.25rem;
}

/* Small uppercase label above the specs list */
.aqc-catalogue-main .cr-details-heading {
  font-family: var(--font-body, sans-serif);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  margin: 0 0 1rem 0;
  border-bottom: none;
  padding: 0;
}

/* specs-list and details-section styles are in artwork_page.css */

/* ── Responsive: stack on mobile ─────────────────────────────── */

@media (max-width: 768px) {
  .cr-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cr-img-wrap {
    max-width: 100%;
  }
}

/* ── Content sections ────────────────────────────────────────── */

.cr-section {
  margin: 2.5rem 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.cr-section:last-of-type {
  border-bottom: none;
}

.aqc-catalogue-main h2.cr-section-heading {
  font-family: var(--font-body, sans-serif) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #666 !important;
  margin: 0 0 1rem 0 !important;
  border-bottom: none !important;
  padding: 0 !important;
  line-height: 1 !important;
}

/* ── Prose sections (description) ───────────────────────────── */

.cr-prose {
  max-width: 72ch;
  line-height: 1.7;
  color: #333;
}

.cr-prose p {
  margin: 0 0 1em;
}

.cr-prose p:last-child {
  margin-bottom: 0;
}

/* ── Collection ─────────────────────────────────────────────── */

.cr-collection-name {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: #222;
}

.cr-collection-style {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  font-style: italic;
}

/* ── Links list (Related Documentation, References) ─────────── */

.cr-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cr-links-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cr-links-list li:last-child {
  border-bottom: none;
}

.cr-links-list li strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 0.25rem;
}

.cr-links-list li a {
  color: #333;
  word-break: break-all;
  font-size: 0.85rem;
}

.cr-links-list li a:hover {
  color: #000;
}

/* ── Page info section ───────────────────────────────────────── */

.cr-page-info {
  opacity: 0.75;
  font-size: 0.85rem;
}

.aqc-catalogue-main .cr-page-info h2.cr-section-heading {
  font-size: 0.65rem;
}

/* ── Section dividers between hero and sections ─────────────── */

.aqc-catalogue-main hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 2.5rem 0;
}
