:root {
  --editorial-card-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.premium-photo-band {
  display: grid;
  gap: 22px;
  padding-top: 6px;
}

.premium-photo-band.is-contained {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 16px 0;
}

.premium-photo-band-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: end;
  column-gap: 28px;
  row-gap: 12px;
}

.premium-photo-band-head .eyebrow,
.premium-photo-band-head h2 {
  grid-column: 1;
}

.premium-photo-band-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.premium-photo-band-head p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 72ch;
  margin: 0;
  padding-bottom: 10px;
  color: var(--muted, rgba(255, 255, 255, 0.72));
  line-height: 1.78;
}

.premium-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 22px;
}

.premium-photo-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line, rgba(255, 255, 255, 0.12));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(9, 9, 9, 0.72);
  box-shadow: var(--editorial-card-shadow);
  isolation: isolate;
}

.premium-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.22) 28%, rgba(0, 0, 0, 0.78) 100%);
}

html[data-theme="light"] .premium-photo-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(18, 18, 18, 0.08) 26%, rgba(18, 18, 18, 0.6) 100%);
}


.premium-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06) brightness(0.82);
  transform: scale(1.02);
  transition:
    transform var(--transition, 320ms cubic-bezier(.2, .8, .2, 1)),
    filter var(--transition, 320ms cubic-bezier(.2, .8, .2, 1));
}

html[data-theme="light"] .premium-photo-card img {
  filter: saturate(0.9) contrast(1.04) brightness(0.94);
}

.premium-photo-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.95) contrast(1.08) brightness(0.88);
}

.premium-photo-credit {
  display: none;
}

.premium-photo-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.premium-photo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

html[data-theme="light"] .premium-photo-kicker {
  border-color: rgba(20, 20, 20, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(20, 20, 20, 0.66);
}

.premium-photo-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.78;
}

.premium-photo-title {
  margin: 0;
  color: #f8f8f8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.95rem, 3.4vw, 3.15rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

html[data-theme="light"] .premium-photo-title {
  color: #fafafa;
}

.premium-photo-card-secondary .premium-photo-title,
.premium-photo-card-compact .premium-photo-title {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  max-width: 13ch;
}

.premium-photo-text {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

html[data-theme="light"] .premium-photo-text {
  color: rgba(255, 255, 255, 0.82);
}

.premium-photo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-photo-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

html[data-theme="light"] .premium-photo-tags span {
  border-color: rgba(20, 20, 20, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(255, 255, 255, 0.84);
}

.summary-card .premium-photo-card {
  margin-bottom: 18px;
  min-height: 300px;
}


.premium-photo-card-compact .premium-photo-copy {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

@media (max-width: 1080px) {
  .premium-photo-band-head {
    grid-template-columns: 1fr;
  }

  .premium-photo-band-head p {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    padding-bottom: 0;
  }

  .premium-photo-grid {
    grid-template-columns: 1fr;
  }

  .premium-photo-card {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .premium-photo-band {
    gap: 18px;
  }

  .premium-photo-grid {
    gap: 16px;
  }

  .premium-photo-card,
  .summary-card .premium-photo-card {
    min-height: 280px;
    border-radius: 24px;
  }

.premium-photo-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .premium-photo-kicker,
  .premium-photo-tags span {
    min-height: 32px;
    font-size: 0.72rem;
  }

  .premium-photo-text {
    font-size: 0.94rem;
    line-height: 1.62;
  }
}
