/* Collaboration page image rebuild */
.collaborations-hero .container { align-items: start; }
.collab-hero-photo,
.collab-photo-card,
.collab-project-card {
  border: 1px solid rgba(210,162,58,.42);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.collab-hero-photo,
.collab-photo-card { margin: 0; }
.collab-hero-photo img,
.collab-photo-card img,
.collab-project-card img {
  width: 100%;
  display: block;
  background: #050505;
}
/* Use contain on the collaborations page so group photos are not chopped. */
.collab-hero-photo img,
.collab-photo-card img {
  height: auto;
  max-height: 560px;
  object-fit: contain;
}
.collab-hero-photo figcaption,
.collab-photo-card figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid rgba(210,162,58,.2);
}
.collab-feature-section .section-head { max-width: 920px; }
.collab-feature-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.collab-feature-copy h3 { margin-top: 0; }
.collab-feature-media { display: grid; gap: 16px; }
.collab-photo-card-large img { max-height: 620px; }
.collab-mini-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.collab-mini-photo-grid .collab-photo-card img { max-height: 280px; }
.collab-mini-photo-grid figcaption { font-size: .82rem; padding: 10px 12px; }
.collab-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.collab-project-card {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  min-height: 0;
}
.collab-project-card img {
  height: 100%;
  min-height: 260px;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  align-self: stretch;
}
.collab-project-card > div { padding: 24px; }
.collab-project-card h3 { margin-top: 0; }
.collab-project-card p:last-child { margin-bottom: 0; }
.collab-project-card-textonly { grid-template-columns: 1fr; }
.collab-project-card-textonly > div { padding: 30px; }
@media (max-width: 1050px) {
  .collab-feature-grid,
  .collab-project-grid { grid-template-columns: 1fr; }
  .collab-project-card { grid-template-columns: minmax(260px, 38%) 1fr; }
}
@media (max-width: 760px) {
  .collab-mini-photo-grid { grid-template-columns: 1fr; }
  .collab-project-card { grid-template-columns: 1fr; }
  .collab-project-card img { width: 100%; height: auto; min-height: 0; max-height: none; object-fit: contain; }
}

/* Theatre and updated collaboration image treatment */
.collab-project-card-wide { grid-column: 1 / -1; }
.collab-theatre-card { grid-template-columns: minmax(360px, 48%) 1fr; }
.collab-theatre-image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: #050505;
  padding: 8px;
  align-self: stretch;
}
.collab-theatre-image-stack img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  min-height: 260px;
  object-fit: contain;
  background: #050505;
  display: block;
}
@media (max-width: 900px) {
  .collab-theatre-card { grid-template-columns: 1fr; }
  .collab-theatre-image-stack { grid-template-columns: 1fr; }
  .collab-theatre-image-stack img { height: auto; min-height: 0; max-height: none; }
}


/* Full-width To Hell or Verona collaboration feature */
.collab-thov-feature-card {
  grid-template-columns: minmax(420px, 46%) 1fr;
}
.collab-thov-feature-card img {
  max-height: 520px;
  object-fit: contain;
  background: #050505;
}
.collab-thov-feature-card > div {
  padding: 30px;
}
.collab-highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}
.collab-highlight-list li {
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .collab-thov-feature-card { grid-template-columns: 1fr; }
  .collab-thov-feature-card img { height: auto; max-height: none; }
  .collab-highlight-list { grid-template-columns: 1fr; }
}
