/* @group Actor Page */

/* --------------------------------
   Actor Page Base
-------------------------------- */

.section-page--actor {
  min-height: 100vh;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 8rem);
  color: var(--tr-off-white);
}

.actor-page__inner {
  width: min(var(--page-max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}


/* --------------------------------
   Actor Hero / Intro
-------------------------------- */

.actor-hero {
  display: grid;
  grid-template-columns:
   clamp(170px, 22vw, 285px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  margin-bottom: clamp(4rem, 7vw, 7rem);
  padding-top: 20px;
}
.actor-hero-image  {
	
width: min(100%, 1120px);
    margin: 0 auto clamp(4rem, 7vw, 6rem);
	
	}

.actor-hero__ball {
  width: clamp(150px, 16vw, 245px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;

  background: var(--tr-brown);
  color: var(--tr-black);

  font-family: var(--font-display);
     font-size: clamp(38px, 4vw, 72px);
	 line-height: clamp(54px, 6.1vw, 95px);
  font-weight: 400;
  letter-spacing:0;
  text-align: center;
  text-transform: uppercase;
}

.actor-hero__ball-text {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.actor-hero__letter-muted {
  color: var(--tr-muted);
}

.actor-hero__rule {
  width: 1px;
  height: clamp(54px, 7vw, 92px);
  background: rgba(242, 240, 234, 0.72);
}

.actor-hero__content {
  max-width: 620px;
}
.actor-hero__content p {
  margin: 0;
  font-family: var(--font-body);
  color: var(--tr-off-white);
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.55; 
	font-weight: 700;
 }
.actor-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.6rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}
.actor-subnav__ball {
    width: clamp(92px, 9vw, 132px);
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 0.65rem;
      background: var(--tr-brown);
    color: var(--tr-black);
    text-decoration: none;
    font-family: var(--font-jaywalker);
    font-size: clamp(20px, 2.3vw, 34px);
    line-height: 0.86;
    letter-spacing: -0.025em;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(3deg);
    transition: transform 180ms ease,
    opacity 180ms ease;
}

/* --------------------------------
   Shared Section Heading
-------------------------------- */

.section-heading {
  margin: 0 0 clamp(2rem, 4vw, 3.25rem);
  padding-top: 0.75rem;
  border-top: 2px solid rgba(242, 240, 234, 0.92);

  color: var(--tr-off-white);
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}


/* --------------------------------
   Featured Credit
-------------------------------- */

.actor-featured,
.credit-section {
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.featured-credit {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.featured-credit__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: auto;
    overflow: hidden;
}

.featured-credit__media img,
.featured-credit__iframe,
.featured-credit__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-credit__media img {
  object-fit: cover;
}

.featured-credit__iframe {
  border: 0;
}

.featured-credit__media-placeholder {
  background: var(--tr-white);
}

.featured-credit__body {
  display: grid;
  grid-template-columns: minmax(110px, 210px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(860px, 100%);
  margin-inline: auto;
}

.featured-credit__status {
  margin: 0.5rem 0 0.25rem;
  font-size: 16px;
}

.featured-credit__dots {
  display: flex;
  gap: 0.45rem;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.featured-credit__dots li {
  width: 17px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--tr-off-white);
}

.featured-credit__years {
  margin: 0 0 0.65rem;
  font-size: 16px;
}


/* --------------------------------
   Streaming Links
-------------------------------- */

.featured-credit__streaming {
  margin-top: 0.5rem;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.streaming-links__item {
  margin: 0;
  padding: 0;
}

.streaming-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 30px;
  padding: 0.3rem 0.6rem;

  border: 1px solid rgba(242, 240, 234, 0.72);
  border-radius: 999px;

  color: var(--tr-off-white);
  text-decoration: none;

  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1;
}

.streaming-link:hover,
.streaming-link:focus-visible {
  color: var(--tr-black);
  background: var(--tr-off-white);
  border-color: var(--tr-off-white);
}

.streaming-link__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.streaming-link__icon i {
  display: block;
  font-size: 14px;
  line-height: 1;
}

.streaming-link__icon img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.streaming-link__label {
  white-space: nowrap;
}


/* --------------------------------
   Credit Sections / Cards
-------------------------------- */

.credit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5.25rem);
}

.credit-card {
  min-width: 0;
}

.credit-card__image {
  display: block;
  margin-bottom: 1.5rem;
  background: var(--tr-white);
}

.credit-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.66 / 1;
  object-fit: cover;
  background: var(--tr-white);
}

.credit-card__title {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.credit-card__character, .credit-card__years, .credit-card__caption {
    margin: 0;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: -0.04em;
}

.credit-card__character {
  font-weight: 700;
}

.credit-card__caption {
    margin-top: 0.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(242, 240, 234, 0.56);
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: -0.04em;
}
.credit-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.credit-list li {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.3;
  font-style: italic;
}


/* --------------------------------
   See More Ball
-------------------------------- */

.credit-section__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.see-more-ball {
  width: clamp(54px, 5vw, 74px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: var(--tr-brown);
  color: var(--tr-black);

  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.78;
  letter-spacing:0;
  text-align: center;
  text-transform: uppercase;
}
/* --------------------------------
   Credit Detail Page
-------------------------------- */

.credit-detail__inner {
  width: min(var(--page-max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.credit-detail__back {
  display: inline-block;
  margin-bottom: clamp(2rem, 4vw, 3rem);

  color: var(--tr-off-white);
  text-decoration: none;
  text-transform: uppercase;

  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1;
}

.credit-detail__back:hover,
.credit-detail__back:focus-visible {
  color: var(--tr-brown);
}

.credit-detail__hero {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.credit-detail__hero .credit-detail__general-photo-credit, .credit-gallery .credit-detail__general-photo-credit{
	
text-align: center;
    margin-top: 20px;
	
}
.credit-detail__hero .credit-detail__general-photo-credit p, .credit-gallery .credit-detail__general-photo-credit p {
    color: var(--tr-muted);
	    font-style: italic

	
	}    
    
.credit-detail__video,
.credit-detail__featured-image,
.credit-detail__placeholder {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.credit-detail__iframe,
.credit-detail__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--tr-white);
}

.credit-detail__featured-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.credit-detail__iframe {
  border: 0;
}

.credit-detail__featured-image-button,
.credit-gallery__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.credit-detail__featured-image img {
  object-fit: contain;
}

/*.credit-detail-slider {
  position: relative;
}

.credit-detail-slider__track {
  position: relative;
}

.credit-detail-slider__slide {
  display: none;
  margin: 0;
}

.credit-detail-slider__slide.is-active {
  display: block;
}

.credit-detail-slider__caption {
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.4;
    color: rgba(242, 240, 234, 0.78);
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    text-transform: uppercase;
}
.credit-detail-slider__caption span + span::before,
.credit-gallery__caption span + span::before,
.credit-lightbox__caption span + span::before {
  content: " / ";
}

.credit-detail-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.credit-detail-slider__arrow {
  width: 32px;
  height: 32px;
  border: 1px solid var(--tr-brown);
  border-radius: 50%;
  background: transparent;
  color: var(--tr-brown);
  cursor: pointer;

  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.credit-detail-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.credit-detail-slider__dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(242, 240, 234, 0.5);
  cursor: pointer;
}

.credit-detail-slider__dot.is-active {
  background: var(--tr-brown);
}*/

.credit-detail__header {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;

  padding-top: 1.5rem;
  border-top: 2px solid rgba(242, 240, 234, 0.9);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.credit-detail__title {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: right;
  font-weight: 100;
}
.credit-detail__subtitle {
	    display: block;
    font-family: var(--font-jaywalker);
    text-transform: none;
    font-size: 24px;
    margin-top: 12px;
    font-weight: bold;
}
.credit-detail__meta {
  font-family: var(--font-body);
}

.credit-detail__role {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.credit-detail__years,
.credit-detail__status {
  margin: 0 0 0.75rem;
    font-family: var(--font-body);
    color: var(--tr-off-white);
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.55;
    font-weight: 700;
}

.credit-detail__content {
  max-width: 760px;
  margin-left: auto;
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.credit-detail__description {
  margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: clamp(16px, 1vw, 20px);
    line-height: 1.55;
}
.credit-detail__description p {
	
    margin: 0;
    font-family: var(--font-body);
    color: var(--tr-off-white);
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.55;
    font-weight: 700;
}

/* --------------------------------
   Credit Gallery Grid
-------------------------------- */

.credit-gallery {
  margin-top: clamp(4rem, 7vw, 6rem);
}

.credit-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.credit-gallery__item {
  margin: 0;
}

.credit-gallery__button img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.credit-gallery__caption {
  margin-top: 0.65rem;

  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.4;
  color: rgba(242, 240, 234, 0.72);
}


/* --------------------------------
   Full Screen Lightbox
-------------------------------- */

/*.has-lightbox-open {
  overflow: hidden;
}

.credit-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.credit-lightbox.is-open {
  display: block;
}

.credit-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.credit-lightbox__dialog {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
}

.credit-lightbox__media {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.credit-lightbox__slide {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.985);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0ms linear 220ms;
}

.credit-lightbox__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0ms;
}

.credit-lightbox__slide img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
}

.credit-lightbox__caption {
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 3vw, 2rem);

    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    text-transform: uppercase;
	text-align: center;
}

.credit-lightbox__close,
.credit-lightbox__arrow {
  position: relative;
  z-index: 3;

  border: 0;
  background: transparent;
  color: var(--tr-off-white);
  cursor: pointer;
}

.credit-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;

  width: 48px;
  height: 48px;

  font-size: 44px;
  line-height: 1;
}

.credit-lightbox__arrow {
  width: 64px;
  height: 64px;

  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.credit-lightbox__arrow--prev {
  grid-column: 1;
}

.credit-lightbox__arrow--next {
  grid-column: 3;
}*/
/*.credit-detail-slider__track {
  position: relative;
  display: grid;
}

.credit-detail-slider__slide {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.995);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0ms linear 220ms;
}

.credit-detail-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0ms;
}*/

/* =========================================================
   Credit Detail Slider — Page Hero Style Override
========================================================= */

/*.credit-detail-slider--page-style {
  --credit-slider-image-height: min(72vh, 760px);

  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.credit-detail-slider--page-style .credit-detail-slider__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.credit-detail-slider--page-style .credit-detail-slider__track {
  position: relative;
  display: flex !important;
  width: 100%;
  height: var(--credit-slider-image-height) !important;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms ease;
  will-change: transform;
}

.credit-detail-slider--page-style .credit-detail-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: var(--credit-slider-image-height) !important;
  margin: 0;

  display: flex !important;
  align-items: center;
  justify-content: center;

  pointer-events: auto;
  transform: none !important;
  grid-area: auto !important;
}

.credit-detail-slider--page-style .credit-detail-slider__button {
  display: flex !important;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: var(--credit-slider-image-height) !important;

  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.credit-detail-slider--page-style .credit-detail-slider__slide img {
  display: block;

  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: var(--credit-slider-image-height) !important;

  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center;
  background: transparent !important;
}

.credit-detail-slider--page-style .credit-detail-slider__arrow {
  position: absolute;
  top: calc(var(--credit-slider-image-height) / 2);
  z-index: 5;

  width: clamp(42px, 5vw, 68px);
  height: clamp(42px, 5vw, 68px);

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--tr-off-white);

  cursor: pointer;
  transform: translateY(-50%);
}

.credit-detail-slider--page-style .credit-detail-slider__arrow--prev {
  left: 0;
}

.credit-detail-slider--page-style .credit-detail-slider__arrow--next {
  right: 0;
}

.credit-detail-slider--page-style .credit-detail-slider__arrow-mark {
  display: block;
  width: clamp(18px, 2.4vw, 32px);
  height: clamp(18px, 2.4vw, 32px);

  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.credit-detail-slider--page-style .credit-detail-slider__arrow--prev .credit-detail-slider__arrow-mark {
  transform: rotate(-45deg);
}

.credit-detail-slider--page-style .credit-detail-slider__arrow--next .credit-detail-slider__arrow-mark {
  transform: rotate(135deg);
}

.credit-detail-slider--page-style .credit-detail-slider__arrow:hover,
.credit-detail-slider--page-style .credit-detail-slider__arrow:focus-visible {
  color: var(--tr-brown);
}

.credit-detail-slider--page-style .credit-detail-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;

  margin: 1.25rem 0 0;
  padding: 0;
}

.credit-detail-slider--page-style .credit-detail-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;

  border: 1px solid var(--tr-off-white);
  border-radius: 50%;
  background: transparent;

  cursor: pointer;
}

.credit-detail-slider--page-style .credit-detail-slider__dot.is-active,
.credit-detail-slider--page-style .credit-detail-slider__dot[aria-current="true"] {
  background: var(--tr-off-white);
}

.credit-detail-slider--page-style .credit-detail-slider__caption {
  max-width: 760px;
  min-height: 1.45em;
  margin: 1rem auto 0;

  color: rgba(242, 240, 234, 0.78);

  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}*/

@media (max-width: 800px) {
  .credit-detail-slider--page-style {
    --credit-slider-image-height: min(58vh, 520px);
  }

  .credit-detail-slider--page-style .credit-detail-slider__arrow {
    display: none;
  }

  .credit-detail-slider--page-style .credit-detail-slider__caption {
    font-size: 12px;
  }
}

/* --------------------------------
   Responsive
-------------------------------- */

@media (max-width: 900px) {
  .credit-detail__header {
    grid-template-columns: 1fr;
  }

  .credit-detail__content {
    margin-left: 0;
  }

  .credit-gallery__grid {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .credit-detail__iframe,
  .credit-detail__placeholder {
    aspect-ratio: 4 / 3;
  }

  .credit-gallery__grid {
    grid-template-columns: 1fr;
  }

  .credit-lightbox__dialog {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }

  .credit-lightbox__media {
    padding: 3.5rem 0.75rem 4rem;
  }

  .credit-lightbox__arrow {
    width: 48px;
    height: 48px;
    font-size: 34px;
  }

  .credit-lightbox__slide img {
    max-height: calc(100vh - 8rem);
  }
}
/* =========================================================
   Actor Featured Sections — constrain cards, not headings
========================================================= */

.actor-featured {
  width: 100%;
  margin-top: clamp(4rem, 7vw, 7rem);
}

/* Keep Out Now / Pick of the Month heading full width */
.actor-featured > .section-heading {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

/* Constrain the actor feature card/content below the heading */
.actor-featured > article,
.actor-featured .actor-feature-credit,
.actor-featured .actor-credit-card,
.actor-featured .featured-credit {
  width: min(100%, 1180px);
  margin: clamp(3rem, 5vw, 5rem) auto 0;
}


/* Make featured images behave consistently */
.actor-featured img {
  display: block;
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 800px) {
  .actor-featured .actor-feature-credit,
  .actor-featured .actor-credit-card,
  .actor-featured .featured-credit {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

/* --------------------------------
   Actor Responsive
-------------------------------- */

@media (max-width: 900px) {
  .actor-hero {
    grid-template-columns: clamp(170px, 22vw, 285px) minmax(0, 1fr);
    gap: 1.75rem;
  }

  .featured-credit__body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-inline: 0;
  }

  .credit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-page--actor {
    padding-top: 3rem;
  }

  .actor-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 4rem;
  }

  .actor-hero__ball {
    width: clamp(140px, 48vw, 190px);
  }

  .actor-hero__rule {
    display: none;
  }

  .credit-grid {
    grid-template-columns: 1fr;
  }

  .credit-card__image {
    max-width: 240px;
  }

  .featured-credit__media {
    aspect-ratio: 4 / 3;
  }
}
.button-link--actor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin-top: 1rem;
    padding: 0.5rem 0.85rem;
    background: var(--tr-hot-pink);
    color: var(--tr-black);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0;
}

/* --------------------------------
   Credit Detail Gallery Ratio Fix
   Keep detail/gallery images uncropped.
-------------------------------- */

.credit-detail__featured-image img,
.credit-gallery__button img {
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center;
}

.credit-detail__featured-image,
.credit-gallery__item,
.credit-gallery__button {
  height: auto !important;
  aspect-ratio: auto !important;
}

.credit-gallery__button {
  overflow: visible;
}

/* @end */

.credit-detail__header,
.credit-detail__content,
.credit-gallery {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.credit-detail__content {
    max-width: 760px;
    margin-left: 0;
}

/* =========================================================
   Credit Mixed Media Gallery
========================================================= */

.credit-gallery--mixed {
  width: min(100%, 1180px);
  margin: clamp(4rem, 7vw, 6rem) auto 0;
}

.credit-gallery--mixed .credit-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.credit-gallery--mixed .credit-gallery__item {
  margin: 0;
  background: transparent;
}

/* Images keep original aspect ratio */
.credit-gallery--mixed .credit-gallery__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.credit-gallery--mixed img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: transparent !important;
}

/* Uploaded and embedded videos */
.credit-gallery__video {
  width: 100%;
  background: var(--tr-black);
}

.credit-gallery__video--embed,
.credit-gallery__video--file {
  aspect-ratio: 16 / 9;
}

.credit-gallery__video iframe,
.credit-gallery__video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--tr-black);
}

.credit-gallery__video video {
  object-fit: contain;
}

.credit-gallery__caption {
  margin-top: 0.65rem;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.4;
  color: rgba(242, 240, 234, 0.72);
}

@media (max-width: 800px) {
  .credit-gallery--mixed .credit-gallery__grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   Actor Coming Soon — comp style
========================================================= */

.actor-coming-soon {
  width: min(100%, 1180px);
  margin: clamp(6rem, 10vw, 10rem) auto clamp(4rem, 7vw, 6rem);
  padding: 0;
  text-align: center;
}

.actor-coming-soon__balls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.actor-coming-soon__balls span {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: clamp(145px, 18vw, 235px);
  aspect-ratio: 1;
  border-radius: 50%;

  background: var(--tr-brown);
  color: var(--tr-black);

  font-family: var(--font-display);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;

  z-index: 1;
}

/* overlap balls */
.actor-coming-soon__balls span + span {
  margin-left: clamp(-4.25rem, -5vw, -2.25rem);
}

/* Lots */
.actor-coming-soon__balls span:nth-child(1) {
  transform: rotate(-4deg) translateY(0.35rem);
  z-index: 1;
}

/* More */
.actor-coming-soon__balls span:nth-child(2) {
  transform: rotate(4deg) translateY(1.25rem);
  z-index: 2;
}

/* Coming — larger and raised */
.actor-coming-soon__balls span:nth-child(3) {
  width: clamp(165px, 20vw, 270px);
  transform: rotate(-2deg) translateY(-1.25rem);
  z-index: 3;
}

/* Soon */
.actor-coming-soon__balls span:nth-child(4) {
  transform: rotate(5deg) translateY(0.6rem);
  z-index: 2;
}

.actor-coming-soon__title {
    margin: 0 auto;
    color: var(--tr-off-white);
    font-family: var(--font-display);
    font-size: clamp(18px, 5.3vw, 34px);
    line-height: 0.9;
    letter-spacing:0;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}
/* --------------------------------
   Actor Coming Soon Responsive
-------------------------------- */

@media (max-width: 760px) {
  .actor-coming-soon {
    width: min(100%, 520px);
    margin-top: clamp(4rem, 14vw, 6rem);
  }

  .actor-coming-soon__balls {
    flex-wrap: wrap;
    max-width: 420px;
    row-gap: 0;
  }

  .actor-coming-soon__balls span {
    width: clamp(118px, 38vw, 170px);
    font-size: clamp(34px, 11vw, 54px);
  }

  .actor-coming-soon__balls span + span {
    margin-left: clamp(-2.25rem, -8vw, -1rem);
  }

  .actor-coming-soon__balls span:nth-child(3) {
    width: clamp(132px, 43vw, 190px);
  }

  .actor-coming-soon__title {
    font-size: clamp(18px, 5vw, 24px);
  }
}

/* =========================================================
   Credit Gallery — JS Masonry
   True masonry, preserves gallery/DOM order
========================================================= */

.credit-gallery .credit-gallery__grid--masonry,
.credit-gallery--mixed .credit-gallery__grid--masonry {
  --credit-masonry-gap: 20px;

  position: relative;
  display: block !important;
  width: 100%;
}

.credit-gallery .credit-gallery__grid--masonry .credit-gallery__item,
.credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__item {
  position: absolute;
  margin: 0;

}

.credit-gallery .credit-gallery__grid--masonry .credit-gallery__button,
.credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: visible;
}

.credit-gallery .credit-gallery__grid--masonry img,
.credit-gallery--mixed .credit-gallery__grid--masonry img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center;
  background: transparent !important;
}

.credit-gallery .credit-gallery__grid--masonry .credit-gallery__video,
.credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__video {
  display: block;
  width: 100%;
  background: var(--tr-black);
}

.credit-gallery .credit-gallery__grid--masonry .credit-gallery__video--embed,
.credit-gallery .credit-gallery__grid--masonry .credit-gallery__video--file,
.credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__video--embed,
.credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__video--file {
  aspect-ratio: 16 / 9;
}

.credit-gallery .credit-gallery__grid--masonry .credit-gallery__video iframe,
.credit-gallery .credit-gallery__grid--masonry .credit-gallery__video video,
.credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__video iframe,
.credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--tr-black);
}

.credit-gallery .credit-gallery__grid--masonry .credit-gallery__caption,
.credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__caption {
  margin-top: 0.5rem;
    color: var(--tr-off-white) !important;
    font-family: var(--font-display) !important;
    font-size: clamp(18px, 2vw, 28px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    text-align: left !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.credit-gallery .credit-gallery__grid--masonry .credit-gallery__caption span,
.credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__caption span {
  display: block;
}

@media (max-width: 900px) {
  
}

@media (max-width: 640px) {
  .credit-gallery .credit-gallery__grid--masonry .credit-gallery__item,
  .credit-gallery--mixed .credit-gallery__grid--masonry .credit-gallery__item {
    position: static;
    width: 100%;
    margin-bottom: var(--credit-masonry-gap);
  }
}

/* Caption above dots */
/*.credit-detail-slider--page-style .credit-detail-slider__caption {
    max-width: 760px;
    min-height: 1.45em;
    margin: 1rem auto 0.85rem;
    color: rgba(242, 240, 234, 0.78);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
    display: block !important;
    position: relative !important;
    z-index: 30 !important;
    width: min(100% - 2rem, 760px) !important;
    margin: 0.85rem auto 0 !important;
    padding: 0 !important;
    color: var(--tr-off-white) !important;
    font-family: var(--font-display) !important;
    font-size: clamp(18px, 2vw, 28px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 30px;
}

.credit-detail-slider--page-style .credit-detail-slider__caption.is-empty {
  display: none;
}*/

/* Dots styled like page hero slider */
/*.credit-detail-slider--page-style .credit-detail-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;

  margin: 0;
  padding: 0;
}

.credit-detail-slider--page-style .credit-detail-slider__dot {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(242, 240, 234, 0.5);
    cursor: pointer;

  cursor: pointer;
}

.credit-detail-slider--page-style .credit-detail-slider__dot.is-active,
.credit-detail-slider--page-style .credit-detail-slider__dot[aria-current="true"] {
      background: var(--tr-brown);
}

.credit-detail-slider--page-style .credit-detail-slider__dot:hover,
.credit-detail-slider--page-style .credit-detail-slider__dot:focus-visible {
  border-color: var(--tr-brown);
  background: var(--tr-brown);
}*/

/* =========================================================
   Credit Cast & Crew
========================================================= */

.credit-cast-crew {
  width: min(100%, 1180px);
  margin: clamp(4rem, 7vw, 6rem) auto 0;
}

.credit-cast-crew__content {
  max-width: 760px;
  margin-left: auto;

  color: var(--tr-off-white);

  font-family: var(--font-body);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.6;
}

.credit-cast-crew__content > *:first-child {
  margin-top: 0;
}

.credit-cast-crew__content > *:last-child {
  margin-bottom: 0;
}

.credit-cast-crew__content p {
  margin: 0 0 1rem;
}

.credit-cast-crew__content ul,
.credit-cast-crew__content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.credit-cast-crew__content li {
  margin-bottom: 0.35rem;
}

.credit-cast-crew__content strong,
.credit-cast-crew__content b {
  font-weight: 700;
}

.credit-cast-crew__content a {
  color: var(--tr-brown);
  text-decoration: none;
}

.credit-cast-crew__content a:hover,
.credit-cast-crew__content a:focus-visible {
  color: var(--tr-off-white);
}


/* Actor feature slider arrows — outside image, vertically centered */
/*.actor-feature-slider.credit-detail-slider--page-style {
  position: relative;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__viewport {
  position: relative;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__controls {
  position: static;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow {
  position: absolute !important;
  top: calc(var(--credit-slider-image-height) / 2) !important;
  z-index: 6;

  width: clamp(48px, 5vw, 76px);
  height: clamp(48px, 5vw, 76px);

  display: grid;
  place-items: center;

  border: 0;
  background: transparent;
  color: var(--tr-off-white);
  cursor: pointer;

  transform: translateY(-50%) !important;

  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow[data-slider-prev] {
  left: clamp(-3.75rem, -5vw, -2.25rem) !important;
  right: auto !important;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow[data-slider-next] {
  right: clamp(-3.75rem, -5vw, -2.25rem) !important;
  left: auto !important;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow span[aria-hidden="true"] {
  display: block;
  line-height: 1;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow span[aria-hidden="true"] {
  position: relative;
  display: block;
  width: clamp(22px, 2.4vw, 34px);
  height: clamp(34px, 3.5vw, 52px);
  font-size: 0;
  line-height: 0;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow span[aria-hidden="true"]::before,
.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 50%;
  background: currentColor;
  transform-origin: center bottom;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow span[aria-hidden="true"]::before {
  top: 0;
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow span[aria-hidden="true"]::after {
  bottom: 0;
  transform-origin: center top;
}

/* Previous arrow *!/
.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow[data-slider-prev] span[aria-hidden="true"]::before {
  transform: translateX(-50%) rotate(45deg);
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow[data-slider-prev] span[aria-hidden="true"]::after {
  transform: translateX(-50%) rotate(-45deg);
}

/* Next arrow *!/
.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow[data-slider-next] span[aria-hidden="true"]::before {
  transform: translateX(-50%) rotate(-35deg);
}

.actor-feature-slider.credit-detail-slider--page-style .credit-detail-slider__arrow[data-slider-next] span[aria-hidden="true"]::after {
  transform: translateX(-50%) rotate(45deg);
}*/
/* =========================================================
   Credit Detail — Featured Videos / Conversations
========================================================= */

.credit-featured-videos {
  width: min(100%, 1180px);
  margin: clamp(4rem, 7vw, 6rem) auto 0;
}

.credit-featured-videos__list {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
}

.credit-featured-videos__item {
  display: block;
}

.credit-featured-videos__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--tr-black);
  aspect-ratio: 16 / 9;
  border: 0;
}

.credit-featured-videos__iframe,
.credit-featured-videos__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0 !important;
  outline: 0;
}

.credit-featured-videos__video {
  object-fit: cover;
}

.credit-featured-videos__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(242, 240, 234, 0.22);
}

.credit-featured-videos__body {
  max-width: 760px;
  margin-top: clamp(1.25rem, 3vw, 2rem);
  color: var(--tr-off-white);
}

.credit-featured-videos__title {
  margin: 0 0 1rem;
  color: var(--tr-off-white);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
}

.credit-featured-videos__description {
  color: rgba(242, 240, 234, 0.84);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
}

.credit-featured-videos__description p {
  margin: 0 0 1em;
}

.credit-featured-videos__description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .credit-featured-videos {
    margin-top: clamp(3rem, 10vw, 4rem);
  }

  .credit-featured-videos__body {
    max-width: none;
  }
}
.credit-featured-videos__item {

    width: min(100%, 1180px);
    margin-left: auto;
    margin-right: auto;
display: block;
margin-bottom: 80px;
}

.credit-streaming__status {
	margin-bottom: 15px;
}

.credit-gallery__grid--masonry .credit-gallery__item--video {
	max-width: none;
}

.credit-gallery__grid--masonry .credit-gallery__item--video iframe,
.credit-gallery__grid--masonry .credit-gallery__item--video video,
.credit-gallery__grid--masonry .credit-gallery__item--video .credit-gallery__embed,
.credit-gallery__grid--masonry .credit-gallery__item--video_file iframe,
.credit-gallery__grid--masonry .credit-gallery__item--video_file video,
.credit-gallery__grid--masonry .credit-gallery__item--video_file .credit-gallery__embed {
	display: block;
	width: 100%;
}

.credit-spoiler-alert__image {
    margin: 0 auto;
    max-width: 238px;
}