/* props-project.css — TV props catalog layout (v1)
   loaded only by props project pages */

/* ── metadata band (after hero) — mirrors .cs-core on design pages ─ */
.pp-meta {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border-top: 1px solid rgba(14,13,11,0.12);
  border-bottom: 1px solid rgba(14,13,11,0.12);
  margin-bottom: 2rem;
}

.pp-meta-col {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.pp-meta-col + .pp-meta-col {
  border-left: 1px solid rgba(14,13,11,0.08);
}

.pp-meta-col h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pp-meta-col p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(14,13,11,0.78);
  margin-bottom: 0.5rem;
}

.pp-meta-col p:last-child { margin-bottom: 0; }

.pp-meta-col a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(14,13,11,0.25);
}
.pp-meta-col a:hover { border-color: #0e0d0b; }

.pp-meta-footer {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.4);
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(14,13,11,0.08);
}

/* series strip format reused for TV show siblings */
.ill-series-strip {
  margin: 2rem 0 2.5rem;
  background: #f3f3f0;
  padding: 2.5rem 2rem 3rem;
}

.ill-series-strip-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.55);
  margin-bottom: 1.25rem;
}

.ill-series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ill-series-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: rgba(14,13,11,0.06);
}

@media (max-width: 900px) {
  .pp-meta { grid-template-columns: 1fr; }
  .pp-meta-col + .pp-meta-col { border-left: 0; border-top: 1px solid rgba(14,13,11,0.08); }
}

/* ── prop sections ──────────────────────────────────────────────── */
.pp-catalog {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.pp-prop {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.pp-prop:last-child {
  margin-bottom: 0;
}

.pp-prop-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.5rem 0 0.4rem;
  border-top: 1px solid rgba(14,13,11,0.12);
}

.pp-prop:first-child .pp-prop-header {
  border-top: none;
  padding-top: 0;
}

.pp-prop-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pp-prop-type {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.4);
}

/* ── prop image grid ────────────────────────────────────────────── */
.pp-prop-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: start;
}

.pp-prop-images--2 {
  grid-template-columns: repeat(2, 1fr);
}

.pp-prop-images--1 {
  grid-template-columns: 1fr;
}

.pp-prop-img {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: zoom-in;
}

.pp-prop-img > div:first-child {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.pp-prop-img-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(14,13,11,0.4);
  padding: 0.4rem 0 1.5rem;
}

/* ── direction / brief block ────────────────────────────────────── */
.pp-direction {
  padding: 2rem 0;
  border-top: 1px solid rgba(14,13,11,0.12);
  border-bottom: 1px solid rgba(14,13,11,0.12);
  margin-bottom: 2.5rem;
}

.pp-direction h2 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.5);
  margin-bottom: 0.8rem;
}

.pp-direction p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(14,13,11,0.75);
  max-width: 60ch;
}

/* ── bottom credits band ────────────────────────────────────────── */
.pp-credits {
  background: #f3f3f0;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.pp-credits-col h3 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14,13,11,0.45);
  margin-bottom: 0.6rem;
}

.pp-credits-col p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(14,13,11,0.78);
}

.pp-credits-networks {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.pp-credits-networks img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.pp-credits-networks img[alt="Prime Video"] {
  height: 56px;
}

.pp-credits-networks img[alt="RTP"] {
  height: 56px;
}

/* ── responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pp-prop-images { grid-template-columns: repeat(2, 1fr); }
  .pp-credits { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 700px) {
  .pp-catalog { gap: 0; }
  .pp-prop { margin-bottom: 0.25rem; }
  .pp-prop-images { grid-template-columns: 1fr; }
  .pp-credits { padding: 1.5rem; }
  .ill-series-strip { margin-top: 1.5rem; padding: 1.75rem 1.25rem 2.25rem; }
}
