/*
  Shayla Mini-Site Styles
  Radio Tribe Productions
  ------------------------------------------------------------------
  Purpose: Cinematic landing page styling for /shayla-the-movie/
  Notes: Bootstrap 5.3 friendly, static HTML/CSS, mobile-first.
*/

/* Design tokens */
:root {
  --rt-black: #030506;
  --rt-charcoal: #071014;
  --rt-panel: #0b1417;
  --rt-panel-2: #11191b;
  --rt-gold: #d5a254;
  --rt-gold-2: #a96e2d;
  --rt-cream: #efe5d6;
  --rt-cream-2: #d9c9b5;
  --rt-muted: #aeb1ae;
  --rt-red: #b6372f;
  --rt-border: rgba(213, 162, 84, .42);
}

/* Base / reset */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body.shayla-page {
  background: var(--rt-black);
  color: var(--rt-cream);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: .01em;
}

body.shayla-page a {
  color: inherit;
  text-decoration: none;
}

body.shayla-page a:hover {
  color: var(--rt-gold);
}

body.shayla-page a:focus-visible,
body.shayla-page button:focus-visible,
body.shayla-page .btn:focus-visible {
  outline: 3px solid var(--rt-gold);
  outline-offset: 3px;
}

body.shayla-page img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: -999px;
  z-index: 9999;
  padding: .65rem 1rem;
  background: var(--rt-gold);
  color: #000;
}

.skip-link:focus {
  left: 1rem;
}

/* Header and navigation */
.site-header {
  background: rgba(3, 5, 6, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(213, 162, 84, .18);
}

.navbar {
  min-height: 72px;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  color: #fff;
  font-size: .72rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1rem;
}

.logo-text small {
  font-size: .62rem;
  letter-spacing: .32em;
}

.navbar-nav {
  gap: 1.1rem;
}

.nav-link {
  position: relative;
  color: #f4f0e9;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: .5rem;
  bottom: .15rem;
  left: .5rem;
  height: 2px;
  background: var(--rt-red);
  transform: scaleX(0);
  transition: transform .2s;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.social-links a {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  opacity: .92;
}

.social-links a:hover {
  color: var(--rt-gold);
}

/* Hero */
.shayla-hero {
  position: relative;
  min-height: 505px;
  overflow: hidden;
  border-bottom: 1px solid var(--rt-border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .45) 37%, rgba(0, 0, 0, .18) 62%, rgba(0, 0, 0, .68) 100%),
    url('../img/hero/shayla-hero.jpg');
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(213, 162, 84, .12), transparent 40%),
    linear-gradient(0deg, rgba(0, 0, 0, .44), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 85px;
}

.min-vh-hero {
  min-height: 505px;
}

.eyebrow {
  margin-bottom: .5rem;
  color: var(--rt-gold);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.shayla-hero h1 {
  margin: 0;
  color: #e5a755;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 11vw, 9.2rem);
  font-weight: 400;
  letter-spacing: .055em;
  line-height: .86;
  text-shadow: 0 12px 30px rgba(0, 0, 0, .75);
}

.subtitle {
  margin: .8rem 0 1rem;
  color: var(--rt-gold);
  font-size: clamp(.95rem, 1.8vw, 1.35rem);
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero-logline {
  max-width: 450px;
  color: #f4efe8;
  font-size: 1.1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}

/* Buttons */
.shayla-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .72rem 1.15rem;
  gap: .55rem;
  background: linear-gradient(180deg, #e7b35c, #c68b3d);
  border: 1px solid var(--rt-gold);
  color: #050505;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .2s ease;
}

.shayla-btn:hover {
  color: #000;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.shayla-btn-outline {
  background: transparent;
  border-color: var(--rt-border);
  color: var(--rt-cream);
}

.shayla-btn-outline:hover {
  background: rgba(213, 162, 84, .13);
  color: var(--rt-gold);
}

.small-buttons .shayla-btn {
  min-height: 34px;
  padding: .45rem .8rem;
  font-size: .68rem;
}

/* Shared section styles */
.shayla-section {
  padding: 1.85rem 0;
  background: linear-gradient(180deg, #061014, #030506);
}

.section-border {
  border-bottom: 1px solid var(--rt-border);
}

.shayla-page h2,
.shayla-page h3 {
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shayla-page h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.shayla-page h3 {
  font-size: 1rem;
}

.section-intro {
  margin: 0;
  color: var(--rt-cream-2);
}

.trailer-section p,
.about-copy p {
  color: var(--rt-cream-2);
}

/* Trailer / video frame */
.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--rt-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .45);
}

.video-frame img {
  width: 100%;
  aspect-ratio: 16 / 6.7;
  object-fit: cover;
  opacity: .86;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding-left: .2rem;
  background: rgba(0, 0, 0, .42);
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  font-size: 1.8rem;
  translate: -50% -50%;
}

.video-controls {
  position: absolute;
  right: 1rem;
  bottom: .7rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-size: .8rem;
}

.video-controls .bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, .6);
  box-shadow: inset 35% 0 0 #fff;
}

.video-frame-embed {
  aspect-ratio: 16 / 9;
}

.video-frame-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.video-fallback {
  position: absolute;
  right: 1rem;
  bottom: .75rem;
  left: 1rem;
  margin: 0;
  padding: .55rem .75rem;
  background: rgba(0, 0, 0, .72);
  color: var(--rt-cream-2);
  font-size: .82rem;
  line-height: 1.35;
}

.video-fallback a {
  color: var(--rt-gold);
  font-weight: 700;
  text-decoration: underline;
}

/* About / film details band */
.about-band {
  padding: 0;
  background: #090f10;
}

.about-layout {
  overflow: hidden;
  border-right: 1px solid rgba(213, 162, 84, .22);
  border-left: 1px solid rgba(213, 162, 84, .22);
}

.panel-pad {
  padding: 2rem 2.4rem;
}

.about-copy {
  background: var(--rt-cream);
  color: #201b16;
}

.about-copy h2 {
  color: #5b3516;
}

.about-copy p {
  color: #34271d;
}

.details-panel {
  background: #efe6d9;
  color: #211b16;
  border-left: 1px solid rgba(90, 60, 30, .25);
}

.poster-panel {
  background: #07090a;
}

.poster-panel img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.film-details,
.spec-list {
  margin: 0;
}

.film-details div,
.spec-list div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  margin-bottom: .48rem;
}

.film-details dt,
.spec-list dt {
  color: var(--rt-gold-2);
  font-size: .78rem;
  text-transform: uppercase;
}

.film-details dd,
.spec-list dd {
  margin: 0;
  font-size: .85rem;
}

/* Awards and recognition */
.awards-section h2,
.stills-section h2 {
  margin-bottom: 1rem;
}

.award-box,
.list-box {
  padding: 1rem;
  background: rgba(6, 13, 15, .72);
  border: 1px solid var(--rt-border);
}

.box-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.win-pill {
  padding: .25rem .65rem;
  background: #b47b35;
  border-radius: 4px;
  color: #101010;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .9rem;
}

.award-image-grid {
  align-items: stretch;
  padding-top: 1rem;
}

.award-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: .35rem;
  background: radial-gradient(circle at center, rgba(213, 162, 84, .08), rgba(0, 0, 0, 0) 68%);
  border: 1px solid rgba(213, 162, 84, .18);
}

.award-image-card img {
  width: 100%;
  max-width: 190px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.list-box ul {
  margin: 0;
  padding-left: 1.05rem;
}

.list-box li {
  margin: .35rem 0;
  color: var(--rt-cream-2);
  font-size: .9rem;
}

.list-box li::marker {
  color: var(--rt-gold);
}

/* Stills gallery preview */
.still-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--rt-border);
}

/* Story, cast, and director note panel */
.cream-panel {
  background: var(--rt-cream);
  color: #2c241c;
}

.cream-layout {
  overflow: hidden;
  border-right: 1px solid rgba(80, 55, 32, .22);
  border-left: 1px solid rgba(80, 55, 32, .22);
}

.cream-col {
  padding: 2rem 2.4rem;
  border-right: 1px solid rgba(80, 55, 32, .22);
}

.cream-col:last-child {
  border-right: 0;
}

.cream-col h2 {
  color: #4c2b12;
  font-size: 1.35rem;
}

.cream-col p {
  color: #423529;
}

.theme-list {
  margin: 1rem 0 0;
  padding: 0;
  columns: 2;
  list-style: none;
}

.theme-list li {
  position: relative;
  margin: .6rem 0;
  padding-left: 1.5rem;
  break-inside: avoid;
}

.theme-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #ba8137;
}

.cast-list {
  margin: 0 0 .9rem;
  padding: 0;
  list-style: none;
}

.cast-list li {
  margin: .38rem 0;
  font-size: .88rem;
}

.cream-btn {
  display: inline-block;
  padding: .45rem .75rem;
  border: 1px solid #9a6c35;
  color: #3a2511;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cream-btn:hover {
  background: #e4c996;
  color: #000;
}

.blockquote,
blockquote {
  margin: 0;
  color: #3d3025;
}

/* Behind the scenes cards */
.media-card img {
  width: 100%;
  margin-bottom: .65rem;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border: 1px solid var(--rt-border);
}

.media-card h3 {
  margin: 0 0 .15rem;
  font-size: .9rem;
}

.media-card p {
  margin: 0;
  color: var(--rt-cream-2);
  font-size: .85rem;
}

/* Bottom information band */
.info-band {
  background: linear-gradient(180deg, #071014, #030506);
}

.info-col {
  padding-right: 1.5rem;
  border-right: 1px solid rgba(213, 162, 84, .25);
}

.info-col:last-child {
  border-right: 0;
}

.info-col h2 {
  font-size: 1rem;
}

.spec-list div {
  grid-template-columns: 1fr 1fr;
}

.press-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.press-list li {
  margin-bottom: .85rem;
}

.press-list a {
  display: block;
  color: var(--rt-gold);
  font-weight: 700;
}

.press-list span {
  display: block;
  color: var(--rt-cream-2);
  font-size: .82rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}

.download-grid a {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: .4rem;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #eee;
  font-size: .72rem;
  text-align: center;
  text-transform: uppercase;
}

.download-grid a:hover {
  background: rgba(213, 162, 84, .1);
  border-color: var(--rt-gold);
}

.email-link {
  display: block;
  margin-top: 1rem;
  color: var(--rt-cream);
  font-size: 1.1rem;
}

/* Footer */
.shayla-footer {
  padding: 2rem 0 .9rem;
  background: #020303;
  border-top: 1px solid var(--rt-border);
}

.footer-logo {
  margin-bottom: .9rem;
}

.shayla-footer p {
  max-width: 300px;
  color: var(--rt-cream-2);
}

.shayla-footer h2 {
  color: #eee;
  font-size: .9rem;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: .2rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--rt-cream-2);
  font-size: .9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #8f8f8f;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .award-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .site-header {
    position: sticky;
  }

  .social-links {
    padding: .5rem 0;
  }

  .shayla-hero,
  .min-vh-hero {
    min-height: 520px;
  }

  .hero-content {
    padding-top: 45px;
  }

  .panel-pad,
  .cream-col {
    padding: 1.5rem;
  }

  .details-panel {
    border-top: 1px solid rgba(90, 60, 30, .2);
    border-left: 0;
  }

  .cream-col,
  .cream-col:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(80, 55, 32, .22);
  }

  .cream-col:last-child {
    border-bottom: 0;
  }

  .info-col {
    padding-bottom: 1.4rem;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 162, 84, .25);
  }

  .info-col:last-child {
    border-bottom: 0;
  }

  .video-frame img {
    aspect-ratio: 16 / 9;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .navbar {
    min-height: 64px;
  }

  .logo-text strong {
    font-size: .85rem;
  }

  .shayla-hero h1 {
    font-size: 4rem;
  }

  .button-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .shayla-btn {
    width: 100%;
  }

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

  .theme-list {
    columns: 1;
  }

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

  .film-details div,
  .spec-list div {
    grid-template-columns: 1fr;
  }

  .poster-panel img {
    min-height: 240px;
  }

  .footer-links ul {
    grid-template-columns: 1fr;
  }

  .play-button {
    width: 58px;
    height: 58px;
  }

  .video-controls {
    font-size: .68rem;
  }
}

@media (max-width: 480px) {
  .award-grid {
    grid-template-columns: 1fr;
  }
}

/* Linked media states */
.media-link,
.media-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.media-link img,
.media-card-link img {
  transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.media-link:hover img,
.media-link:focus-visible img,
.media-card-link:hover img,
.media-card-link:focus-visible img {
  border-color: var(--rt-gold);
  opacity: .9;
  transform: translateY(-2px);
}

.media-card-link:hover h3,
.media-card-link:focus-visible h3 {
  color: #f3c77a;
}


/* ==========================================================================
   Header and footer image logos
   ========================================================================== */

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
}

.social-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-icon-youtube {
  width: 22px;
}

@media (max-width: 991.98px) {
  .site-logo-img {
    height: 36px;
  }

  .social-links {
    padding-top: 0.75rem;
  }
}


/* Hide obsolete local-preview YouTube fallback note, if present in older markup. */
.video-fallback,
.trailer-fallback,
.youtube-fallback {
  display: none;
}


/* ==========================================================================
   Social icon sizing
   ========================================================================== */

.social-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  line-height: 1;
}

.social-icon,
.social-icon-youtube {
  display: block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
}


/* ==========================================================================
   Behind the Scenes page
   ========================================================================== */

.bts-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-bottom: 1px solid var(--rt-border);
}

.bts-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.72) 100%),
    url("../img/hero/shayla-hero.jpg");
  background-size: cover;
  background-position: center;
}

.bts-hero-content {
  position: relative;
  z-index: 2;
  min-height: 470px;
  padding-top: 7rem;
  padding-bottom: 3rem;
}

.bts-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
  color: var(--rt-cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
}

.bts-page .section-kicker {
  color: var(--rt-gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bts-image-grid img,
.bts-feature-img,
.production-gallery img {
  border: 1px solid var(--rt-border);
  background: var(--rt-panel);
}

.bts-feature-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bts-image-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bts-process-section {
  border-top: 1px solid rgba(213, 162, 84, 0.28);
}

.bts-process-number {
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.bts-process-copy p {
  color: var(--rt-cream-2);
}

.production-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bts-cta-band {
  border-top: 1px solid var(--rt-border);
  border-bottom: 1px solid var(--rt-border);
  background:
    radial-gradient(circle at 18% 35%, rgba(213, 162, 84, 0.12), transparent 34%),
    linear-gradient(180deg, #071014, #030506);
}

@media (max-width: 991.98px) {
  .bts-hero,
  .bts-hero-content {
    min-height: 430px;
  }

  .bts-hero-content {
    padding-top: 6rem;
  }
}

@media (max-width: 767.98px) {
  .bts-hero h1 {
    font-size: 3.2rem;
  }
}


/* ==========================================================================
   Footer logo
   ========================================================================== */

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .footer-logo-img {
    height: 38px;
  }
}


/* ==========================================================================
   Header, footer, and social image logos
   ========================================================================== */

.site-logo,
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  line-height: 1;
}

.social-icon,
.social-icon-youtube {
  display: block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .site-logo-img { height: 36px; }
  .footer-logo-img { height: 38px; }
}


/* ==========================================================================
   Gallery page
   ========================================================================== */

.gallery-page {
  background:
    radial-gradient(circle at 20% 8%, rgba(16, 54, 57, 0.45), transparent 32rem),
    var(--rt-black);
}

.gallery-hero {
  padding-top: 8.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(213, 162, 84, 0.18);
  background:
    radial-gradient(circle at 14% 8%, rgba(22, 72, 76, 0.42), transparent 34rem),
    linear-gradient(180deg, rgba(3, 5, 6, 0.22), rgba(3, 5, 6, 0.92));
}

.gallery-hero h1 {
  margin: 0 0 0.85rem;
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.75);
}

.gallery-lede {
  max-width: 920px;
  margin: 0;
  color: var(--rt-cream);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.gallery-count {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  color: var(--rt-gold);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-count-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid var(--rt-gold);
  border-radius: 0.2rem;
  font-size: 0;
  position: relative;
}

.gallery-count-icon::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border: 2px solid var(--rt-gold);
  border-radius: 50%;
}

.gallery-count-icon::after {
  content: "";
  position: absolute;
  top: -0.28rem;
  left: 0.28rem;
  width: 0.46rem;
  height: 0.26rem;
  border: 2px solid var(--rt-gold);
  border-bottom: 0;
  border-radius: 0.12rem 0.12rem 0 0;
}

.gallery-filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 2rem auto 0;
}

.gallery-filter-nav a {
  min-width: 150px;
  padding: 0.68rem 1.2rem;
  border: 1px solid var(--rt-border);
  color: var(--rt-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.gallery-filter-nav a:hover,
.gallery-filter-nav a:focus,
.gallery-filter-nav a.active {
  color: #fff7ea;
  background: linear-gradient(180deg, #e5b966, #b7782f);
  border-color: var(--rt-gold);
}

.gallery-content {
  padding-top: 1.4rem;
}

.gallery-section {
  padding: 1.65rem 0 0.8rem;
  scroll-margin-top: 96px;
}

.gallery-section + .gallery-section {
  margin-top: 0.75rem;
}

.gallery-section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.gallery-section-heading h2 {
  margin: 0;
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-section-heading p {
  margin: 0;
  color: var(--rt-cream-2);
  font-size: 0.88rem;
}

.gallery-grid {
  display: grid;
  gap: 0.55rem;
}

.film-stills-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bts-grid,
.press-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gallery-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--rt-gold);
  background: #05090a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 180ms ease, opacity 180ms ease;
}

.gallery-card:hover img,
.gallery-card:focus img {
  opacity: 0.86;
  transform: scale(1.035);
}

.gallery-film-stills .gallery-card {
  aspect-ratio: 2.29 / 1;
}

.gallery-bts .gallery-card,
.gallery-press .gallery-card {
  aspect-ratio: 4 / 3;
}


@media (max-width: 1199.98px) {
  .film-stills-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bts-grid,
  .press-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .gallery-hero {
    padding-top: 6.6rem;
  }

  .gallery-filter-nav {
    justify-content: stretch;
  }

  .gallery-filter-nav a {
    flex: 1 1 50%;
    min-width: 0;
  }

  .film-stills-grid,
  .bts-grid,
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-section-heading {
    display: block;
  }

  .gallery-section-heading p {
    margin-top: 0.2rem;
  }
}

@media (max-width: 480px) {
  .film-stills-grid,
  .bts-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filter-nav a {
    flex-basis: 100%;
  }
}


/* ==========================================================================
   Awards page
   ========================================================================== */

.awards-page {
  background:
    radial-gradient(circle at 18% 7%, rgba(16, 54, 57, 0.42), transparent 32rem),
    var(--rt-black);
}

.awards-hero {
  padding-top: 8.6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(213, 162, 84, 0.22);
  background:
    radial-gradient(circle at 12% 10%, rgba(22, 72, 76, 0.45), transparent 34rem),
    linear-gradient(180deg, rgba(3, 5, 6, 0.18), rgba(3, 5, 6, 0.94));
}

.awards-hero h1 {
  margin: 0 0 0.9rem;
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.75);
}

.awards-lede {
  max-width: 900px;
  margin: 0;
  color: var(--rt-cream);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.awards-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.7rem;
  color: var(--rt-gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.awards-summary-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--rt-border);
  border-radius: 50%;
  color: #fff4dc;
  background: linear-gradient(180deg, rgba(213, 162, 84, 0.22), rgba(169, 110, 45, 0.18));
}

.awards-showcase {
  padding-top: 1.5rem;
}

.awards-item {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem) 0;
  border-bottom: 1px solid rgba(213, 162, 84, 0.28);
}

.awards-item-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
}

.awards-item-reverse .awards-laurel {
  order: 2;
}

.awards-item-reverse .awards-copy {
  order: 1;
}

.awards-laurel {
  padding: 0.75rem;
  border: 1px solid var(--rt-border);
  background:
    radial-gradient(circle at 50% 35%, rgba(213, 162, 84, 0.12), transparent 48%),
    #030506;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

.awards-laurel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.awards-copy h2 {
  margin: 0 0 0.25rem;
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.awards-copy h3 {
  margin: 0 0 1rem;
  color: var(--rt-cream);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
}

.awards-copy p {
  max-width: 820px;
  margin-bottom: 0.85rem;
  color: var(--rt-cream-2);
  font-size: 1.02rem;
}

@media (max-width: 991.98px) {
  .awards-item,
  .awards-item-reverse {
    grid-template-columns: 1fr;
  }

  .awards-item-reverse .awards-laurel,
  .awards-item-reverse .awards-copy {
    order: initial;
  }

  .awards-laurel {
    max-width: 360px;
  }
}

@media (max-width: 767.98px) {
  .awards-hero {
    padding-top: 6.6rem;
  }

  .awards-laurel {
    max-width: 280px;
  }
}


/* ==========================================================================
   Awards page hero image and recognition section
   ========================================================================== */

.awards-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.awards-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 5, 6, 0.88) 0%, rgba(3, 5, 6, 0.62) 48%, rgba(3, 5, 6, 0.32) 72%, rgba(3, 5, 6, 0.82) 100%),
    url("../img/hero/shayla-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.awards-hero-content {
  position: relative;
  z-index: 2;
}

.recognition-section {
  border-top: 1px solid rgba(213, 162, 84, 0.28);
  background:
    radial-gradient(circle at 16% 20%, rgba(213, 162, 84, 0.08), transparent 30rem),
    linear-gradient(180deg, #030506, #071014);
}

.recognition-header {
  max-width: 860px;
  margin-bottom: 1.8rem;
}

.recognition-header h2 {
  margin: 0 0 0.75rem;
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.recognition-header p {
  color: var(--rt-cream-2);
  font-size: 1.04rem;
}

.recognition-card {
  padding: 1.45rem;
  border: 1px solid var(--rt-border);
  background: rgba(7, 16, 20, 0.78);
}

.recognition-card h3 {
  margin: 0 0 1rem;
  color: var(--rt-cream);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recognition-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--rt-cream-2);
}

.recognition-card li + li {
  margin-top: 0.6rem;
}

@media (max-width: 767.98px) {
  .awards-hero {
    min-height: 460px;
  }
}


/* ==========================================================================
   Consistent hero system
   ========================================================================== */

.site-hero,
.shayla-hero,
.page-hero,
.gallery-hero,
.awards-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(213, 162, 84, 0.22);
}

.hero-bg,
.page-hero-bg,
.awards-hero-bg,
.gallery-hero::before {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-bg,
.page-hero-bg,
.awards-hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.hero-overlay,
.page-hero::after,
.gallery-hero::after,
.awards-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 5, 6, 0.90) 0%, rgba(3, 5, 6, 0.60) 42%, rgba(3, 5, 6, 0.40) 70%, rgba(3, 5, 6, 0.84) 100%);
}

.hero-content,
.site-hero-content,
.page-hero-content,
.gallery-hero .container,
.awards-hero-content {
  position: relative;
  z-index: 2;
}

.site-hero h1,
.page-hero h1,
.gallery-hero h1,
.awards-hero h1,
.shayla-hero h1 {
  margin: 0 0 0.85rem;
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.75);
}

.site-hero .eyebrow,
.page-hero .eyebrow,
.gallery-hero .eyebrow,
.awards-hero .eyebrow,
.shayla-hero .eyebrow {
  position: relative;
  z-index: 2;
}

.hero-bg {
  background-image: url("../img/hero/shayla-home-hero-consistent.jpg");
}

.bts-hero-article .page-hero-bg {
  background-image: url("../img/hero/shayla-bts-hero-consistent.jpg");
}

.gallery-hero::before {
  background-image: url("../img/hero/shayla-gallery-hero-consistent.jpg");
}

.awards-hero-bg {
  background-image: url("../img/hero/shayla-awards-hero-consistent.jpg");
}

.press-kit-page .page-hero-bg {
  background-image: url("../img/hero/shayla-press-kit-hero-consistent.jpg");
}

.video-page .page-hero-bg {
  background-image: url("../img/hero/shayla-video-hero-consistent.jpg");
}

@media (max-width: 991.98px) {
  .site-hero,
  .shayla-hero,
  .page-hero,
  .gallery-hero,
  .awards-hero {
    min-height: 500px;
    padding-top: 7.5rem;
  }
}

@media (max-width: 767.98px) {
  .site-hero,
  .shayla-hero,
  .page-hero,
  .gallery-hero,
  .awards-hero {
    min-height: 460px;
    padding-top: 6.75rem;
    padding-bottom: 2.5rem;
  }

  .site-hero h1,
  .page-hero h1,
  .gallery-hero h1,
  .awards-hero h1,
  .shayla-hero h1 {
    font-size: clamp(2.35rem, 10vw, 4rem);
  }
}






/* ==========================================================================
   BTS production journal layout
   ========================================================================== */

.bts-articles-section {
  background:
    radial-gradient(circle at 14% 5%, rgba(213, 162, 84, 0.08), transparent 32rem),
    var(--rt-black);
}

.bts-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid rgba(213, 162, 84, 0.26);
  scroll-margin-top: 104px;
}

.bts-article-copy {
  max-width: 720px;
}

.bts-article-copy h2 {
  margin: 0 0 1rem;
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.bts-article-dek {
  max-width: 700px;
  margin-bottom: 1rem;
  color: var(--rt-cream);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.62;
}

.bts-article-copy p:not(.section-kicker):not(.bts-article-dek) {
  max-width: 700px;
  color: var(--rt-cream-2);
  font-size: 1.02rem;
  line-height: 1.72;
}

.bts-article-copy p + p {
  margin-top: 0.95rem;
}

.bts-article-media {
  width: 100%;
  max-width: 420px;
  justify-self: start;
  align-self: start;
  margin-top: 0.25rem;
}

.bts-article-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rt-border);
  background:
    radial-gradient(circle at 40% 15%, rgba(213, 162, 84, 0.08), transparent 52%),
    var(--rt-panel);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
}

.bts-article-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bts-article-image figcaption {
  padding: 0.65rem 0.75rem 0.75rem;
  color: var(--rt-muted);
  font-size: 0.78rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

@media (min-width: 1200px) {
  .bts-article {
    grid-template-columns: minmax(0, 680px) minmax(280px, 390px);
  }

  .bts-article-media {
    max-width: 390px;
  }
}

@media (max-width: 991.98px) {
  .bts-article {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .bts-article-copy,
  .bts-article-copy p,
  .bts-article-dek {
    max-width: none;
  }

  .bts-article-media {
    max-width: 520px;
    justify-self: start;
  }
}

@media (max-width: 575.98px) {
  .bts-article {
    padding: 2rem 0;
  }

  .bts-article-media {
    max-width: none;
  }
}


/* ==========================================================================
   Press kit page
   ========================================================================== */

.press-kit-overview h2,
.press-kit-awards h2,
.press-kit-media h2,
.press-info-card h2 {
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.press-kit-logline {
  color: var(--rt-cream);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.press-kit-overview p:not(.section-kicker),
.press-kit-awards p,
.press-kit-media p {
  color: var(--rt-cream-2);
}

.press-kit-poster {
  overflow: hidden;
  border: 1px solid var(--rt-border);
  background: var(--rt-panel);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
}

.press-kit-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.press-info-card {
  padding: 1.45rem;
  border: 1px solid var(--rt-border);
  background: rgba(7, 16, 20, 0.78);
}

.press-info-card dl,
.press-info-card ul {
  margin: 0;
}

.press-info-card dt {
  color: var(--rt-gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-info-card dd {
  margin: 0 0 0.85rem;
  color: var(--rt-cream-2);
}

.press-info-card li,
.press-awards-list li {
  color: var(--rt-cream-2);
}

.press-info-card li + li,
.press-awards-list li + li {
  margin-top: 0.55rem;
}

.press-awards-list {
  margin: 0;
  padding: 1.45rem 1.45rem 1.45rem 2rem;
  border: 1px solid var(--rt-border);
  background: rgba(7, 16, 20, 0.78);
}

.press-link-list {
  display: grid;
  gap: 0.8rem;
}

.press-link-list a,
.press-download-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--rt-border);
  background: rgba(7, 16, 20, 0.78);
  color: var(--rt-cream);
}

.press-link-list a:hover,
.press-download-card:hover {
  color: var(--rt-gold);
  border-color: var(--rt-gold);
}

.press-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.press-download-card small {
  color: var(--rt-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .press-download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .press-kit-page .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
}


/* ==========================================================================
   Press kit refinements
   ========================================================================== */

.press-kit-overview .row {
  align-items: start;
}

.press-kit-poster {
  max-width: 260px;
  margin-left: auto;
}

.press-kit-poster img {
  aspect-ratio: 2 / 3;
  max-height: 390px;
  object-fit: cover;
}

.press-download-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.press-download-heading h2 {
  margin: 0;
}

.press-download-all {
  min-height: 38px;
  padding: 0.62rem 1rem;
}

@media (max-width: 991.98px) {
  .press-kit-poster {
    max-width: 240px;
    margin-left: 0;
  }
}


/* ==========================================================================
   Press kit full credits accordion
   ========================================================================== */

.press-full-credits {
  border-top: 1px solid rgba(213, 162, 84, 0.26);
  padding-top: 2rem;
}

.press-full-credits-heading {
  max-width: 780px;
  margin-bottom: 1.25rem;
}

.press-full-credits-heading h2 {
  margin: 0 0 0.5rem;
  color: var(--rt-gold);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.press-full-credits-heading p:not(.section-kicker) {
  color: var(--rt-cream-2);
}

.press-credits-accordion {
  border: 1px solid var(--rt-border);
  background: rgba(7, 16, 20, 0.78);
}

.press-credits-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(213, 162, 84, 0.24);
}

.press-credits-item:last-child {
  border-bottom: 0;
}

.press-credits-item .accordion-button {
  background: rgba(7, 16, 20, 0.95);
  color: var(--rt-cream);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: none;
}

.press-credits-item .accordion-button:not(.collapsed) {
  background: rgba(213, 162, 84, 0.13);
  color: var(--rt-gold);
}

.press-credits-item .accordion-button:focus {
  border-color: var(--rt-gold);
  box-shadow: 0 0 0 0.2rem rgba(213, 162, 84, 0.18);
}

.press-credits-item .accordion-button::after {
  filter: invert(82%) sepia(23%) saturate(795%) hue-rotate(355deg) brightness(88%) contrast(85%);
}

.press-credits-item .accordion-body {
  background: rgba(3, 5, 6, 0.66);
  color: var(--rt-cream-2);
}

.press-full-credits-list {
  columns: 2;
  column-gap: 2rem;
  margin: 0;
  padding-left: 1.15rem;
}

.press-full-credits-list li {
  break-inside: avoid;
  margin-bottom: 0.55rem;
  color: var(--rt-cream-2);
}

.press-full-credits-list strong {
  color: var(--rt-cream);
}

@media (max-width: 767.98px) {
  .press-full-credits-list {
    columns: 1;
  }
}


/* ==========================================================================
   Expanded BTS articles
   ========================================================================== */

.bts-article-expanded {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  row-gap: clamp(1.5rem, 3vw, 2.25rem);
}

.bts-article-expanded .bts-article-copy p:not(.section-kicker):not(.bts-article-dek) {
  max-width: 720px;
}

.bts-inline-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 0.35rem;
}

.bts-inline-gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(213, 162, 84, 0.42);
  background: rgba(7, 16, 20, 0.84);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.bts-inline-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.bts-inline-gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.92;
}

@media (max-width: 991.98px) {
  .bts-inline-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .bts-inline-gallery {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   BTS expanded text flow
   ========================================================================== */

.bts-article-text-flow {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  row-gap: clamp(1.15rem, 2.4vw, 1.8rem);
}

.bts-article-expanded-copy {
  grid-column: 1 / -1;
  max-width: 1000px;
  margin: -0.35rem auto 0;
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
}

.bts-article-expanded-copy p {
  break-inside: avoid;
  margin: 0 0 0.95rem;
  color: var(--rt-cream-2);
  font-size: 1.02rem;
  line-height: 1.72;
}

.bts-article-text-flow .bts-inline-gallery {
  padding-top: 0.25rem;
}

@media (max-width: 991.98px) {
  .bts-article-expanded-copy {
    max-width: 760px;
    margin-left: 0;
    columns: 1;
  }
}

@media (max-width: 575.98px) {
  .bts-article-expanded-copy {
    max-width: none;
  }
}


/* ==========================================================================
   BTS expanded text cleanup
   ========================================================================== */

.bts-article-expanded-copy {
  grid-column: 1 / -1;
  max-width: 1000px;
  margin: -0.35rem auto 0;
  columns: auto;
  column-gap: normal;
}

.bts-article-expanded-copy p {
  max-width: 1000px;
  break-inside: auto;
  color: var(--rt-cream-2);
  font-size: 1.02rem;
  line-height: 1.72;
}

.bts-article-expanded-copy p + p {
  margin-top: 0.95rem;
}

.bts-inline-gallery-item img {
  aspect-ratio: 16 / 9;
}

@media (max-width: 991.98px) {
  .bts-article-expanded-copy {
    max-width: 760px;
    margin-left: 0;
  }
}
