.exhibition-section {
  scroll-margin-top: 120px;
  padding: clamp(72px, 8vw, 120px) clamp(22px, 5vw, 76px);
  background: #f7f6f2;
  color: #17191c;
}

.exhibition-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}

.exhibition-heading h2 {
  max-width: 980px;
  margin: 13px 0 14px;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.exhibition-heading p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: #5d615d;
  font-size: 17px;
  line-height: 1.65;
}

.exhibition-badge {
  align-self: start;
  padding: 16px 22px;
  border: 1px solid #9db800;
  border-radius: 9px;
  color: #8aa100;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.exhibition-photo {
  grid-column: span 3;
  margin: 0;
}

.exhibition-photo.exhibition-feature {
  grid-column: span 7;
}

.exhibition-photo.highlight {
  grid-column: span 5;
}

.exhibition-photo-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #e6e7e2;
  cursor: zoom-in;
  box-shadow: 0 14px 34px rgba(24, 27, 24, 0.08);
}

.exhibition-photo-button::after {
  content: "VIEW";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(23, 25, 28, 0.84);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.exhibition-photo-button:hover::after,
.exhibition-photo-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.exhibition-photo img {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.exhibition-photo.exhibition-feature img,
.exhibition-photo.highlight img {
  height: 430px;
}

.exhibition-photo-button:hover img {
  transform: scale(1.025);
}

.exhibition-photo figcaption {
  position: relative;
  padding: 13px 0 0;
  color: #30332f;
  font-size: 12px;
}

.exhibition-photo figcaption::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 9px;
  background: #b6d500;
}

.exhibition-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 23px 30px;
  border-radius: 10px;
  background: #17191c;
  color: #fff;
  font-size: clamp(16px, 1.6vw, 24px);
}

.exhibition-cta span {
  color: #b6d500;
  font-size: 36px;
  line-height: 1;
}

.exhibition-lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(12, 14, 13, 0.92);
  backdrop-filter: blur(8px);
}

.exhibition-lightbox.open {
  display: flex;
}

.exhibition-lightbox figure {
  width: min(1180px, 100%);
  margin: 0;
}

.exhibition-lightbox img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
}

.exhibition-lightbox figcaption {
  padding-top: 13px;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.exhibition-lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: #17191c;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .exhibition-heading {
    grid-template-columns: 1fr;
  }

  .exhibition-badge {
    justify-self: start;
  }

  .exhibition-photo,
  .exhibition-photo.exhibition-feature,
  .exhibition-photo.highlight {
    grid-column: span 6;
  }

  .exhibition-photo img,
  .exhibition-photo.exhibition-feature img,
  .exhibition-photo.highlight img {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .exhibition-section {
    padding: 66px 22px;
  }

  .exhibition-heading h2 {
    font-size: 45px;
  }

  .exhibition-photo,
  .exhibition-photo.exhibition-feature,
  .exhibition-photo.highlight {
    grid-column: 1 / -1;
  }

  .exhibition-photo img,
  .exhibition-photo.exhibition-feature img,
  .exhibition-photo.highlight img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .exhibition-cta {
    justify-content: space-between;
    padding: 20px;
  }
}

/* 2026 joins the original 2024 gallery without changing its photographs. */
.exhibition-latest{background:#eef1e9}.exhibition-years{display:inline-flex;gap:8px;margin:0 0 40px;padding:5px;border:1px solid #d8ddca;border-radius:999px;background:#fff}.exhibition-years a{padding:9px 22px;border-radius:999px;color:#394333;font-size:12px;font-weight:800;letter-spacing:.08em}.exhibition-years a[aria-current=page],.exhibition-years a:hover{background:#b6d500;color:#1f251c}.exhibition-years a:focus-visible,.exhibition-next:focus-visible{outline:3px solid #879d12;outline-offset:3px}.exhibition-next{text-decoration:none;cursor:pointer}.exhibition-next:hover{background:#293127}
.exhibition-latest .exhibition-photo-button img{object-position:center}
@media(max-width:680px){.exhibition-years{margin-bottom:30px}.exhibition-years a{padding:8px 18px}}

.exhibition-archive{background:#f5f4ee}
@media(max-width:380px){.exhibition-years a{padding:8px 13px}}

.exhibition-first{background:#efeee9}
@media(max-width:380px){.exhibition-years{gap:2px}.exhibition-years a{padding:8px 10px}}
