:root {
  --la27-red: #d6121a;
  --la27-red-dark: #a90b12;
  --la27-ink: #090909;
  --la27-paper: #f3efe7;
  --la27-white: #ffffff;
  --la27-grey: #b7b1a8;
  --la27-line: rgba(9, 9, 9, 0.2);
}

html {
  scroll-behavior: smooth;
}

body.la27-site {
  margin: 0;
  background: var(--la27-paper);
  color: var(--la27-ink);
}

.la27-shell,
.la27-shell * {
  box-sizing: border-box;
}

.la27-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--la27-paper);
  color: var(--la27-ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.la27-shell a {
  color: inherit;
  text-decoration: none;
}

.la27-shell a,
.la27-shell button {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.la27-shell a:active,
.la27-shell button:active {
  transform: translateY(2px);
}

.la27-shell a:focus-visible,
.la27-shell button:focus-visible {
  outline: 3px solid var(--la27-red);
  outline-offset: 4px;
}

.la27-shell img {
  max-width: 100%;
}

.la27-shell .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.la27-page-transition {
  position: fixed;
  z-index: 1000000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  clip-path: inset(0 0 0 100%);
  background: var(--la27-red);
  color: var(--la27-white);
  pointer-events: none;
  animation: la27-page-enter 820ms cubic-bezier(.76, 0, .24, 1) both;
  will-change: clip-path;
}

.la27-page-transition::before,
.la27-page-transition::after {
  content: "";
  position: absolute;
  background: var(--la27-ink);
}

.la27-page-transition::before {
  top: 0;
  right: 0;
  width: clamp(9px, 1.2vw, 20px);
  height: 100%;
}

.la27-page-transition::after {
  bottom: 8%;
  left: -8%;
  width: 116%;
  height: 1px;
  background: rgba(255, 255, 255, .55);
  transform: rotate(-5deg);
}

.la27-page-transition > span {
  position: absolute;
  width: min(84vw, 1100px);
  aspect-ratio: 1;
  border: clamp(55px, 8vw, 125px) solid rgba(9, 9, 9, .12);
  border-radius: 50%;
}

.la27-page-transition img {
  position: relative;
  width: clamp(90px, 13vw, 185px);
  height: auto;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .22));
  animation: la27-page-logo-out 520ms 100ms ease both;
}

html.la27-is-leaving .la27-page-transition {
  clip-path: inset(0);
  pointer-events: all;
  animation: la27-page-leave 560ms cubic-bezier(.76, 0, .24, 1) both;
}

html.la27-is-leaving .la27-page-transition img {
  animation: la27-page-logo-in 390ms 130ms ease both;
}

@keyframes la27-page-enter {
  from { clip-path: inset(0); }
  to { clip-path: inset(0 0 0 100%); }
}

@keyframes la27-page-leave {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0); }
}

@keyframes la27-page-logo-out {
  from { opacity: 1; transform: none; }
  to { opacity: 0; transform: scale(.88) rotate(-4deg); }
}

@keyframes la27-page-logo-in {
  from { opacity: 0; transform: scale(.82) rotate(5deg); }
  to { opacity: 1; transform: none; }
}

.la27-shell h1,
.la27-shell h2,
.la27-shell h3,
.la27-shell p,
.la27-shell blockquote,
.la27-shell figure {
  margin-top: 0;
}

.la27-skip {
  position: fixed;
  z-index: 99999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--la27-white);
  color: var(--la27-ink);
  font-weight: 700;
}

.la27-skip:focus {
  transform: none;
}

.la27-header {
  position: relative;
  z-index: 100;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--la27-ink);
  color: var(--la27-white);
}

.la27-logo {
  width: 62px;
  height: 69px;
  display: grid;
  place-items: center;
}

.la27-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.la27-header nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 4vw, 64px);
}

.la27-header nav a {
  position: relative;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.la27-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--la27-red);
  transition: right 180ms ease;
}

.la27-header nav a:hover::after,
.la27-header nav a:focus-visible::after {
  right: 0;
}

.la27-menu-button {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.la27-menu-button > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--la27-white);
  transition: transform 220ms ease, opacity 180ms ease;
}

.la27-menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.la27-menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.la27-menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.la27-hero {
  min-height: min(900px, calc(100vh - 88px));
  position: relative;
  overflow: hidden;
  padding: 34px clamp(20px, 4vw, 70px) 70px;
  background: var(--la27-ink);
  color: var(--la27-white);
}

.la27-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -25%;
  left: -45%;
  width: 28%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .055), transparent);
  transform: skewX(-18deg);
  animation: la27-projector-sweep 9s 1.2s ease-in-out infinite;
  pointer-events: none;
}

.la27-eyebrow {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.la27-hero-copy {
  position: relative;
  z-index: 3;
  width: min(980px, 78vw);
  margin-top: clamp(85px, 11vw, 155px);
}

.la27-overline {
  margin-bottom: 20px;
  color: var(--la27-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.la27-hero h1 {
  margin-bottom: 32px;
  font-size: clamp(60px, 8.2vw, 132px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.84;
  text-wrap: balance;
}

.la27-hero-copy > p:not(.la27-overline) {
  width: min(540px, 52vw);
  margin: 0 0 35px 41%;
  color: #d7d3cb;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.42;
}

.la27-button {
  width: fit-content;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 41%;
  padding: 0 20px;
  border: 1px solid var(--la27-red);
  background: var(--la27-red);
  color: var(--la27-white) !important;
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.la27-button:hover,
.la27-button:focus-visible {
  transform: translateY(-3px);
  background: var(--la27-white);
  color: var(--la27-ink) !important;
}

.la27-clapper {
  position: absolute;
  z-index: 1;
  top: 82px;
  right: 1vw;
  width: clamp(300px, 36vw, 540px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: rotate(5deg);
}

.la27-clapper::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: rgba(214, 18, 26, .55);
  filter: blur(45px);
}

.la27-clapper img {
  position: relative;
  z-index: 1;
  display: block;
  width: 88%;
  height: auto;
  filter: drop-shadow(0 28px 25px rgba(0, 0, 0, .42));
}

.la27-js .la27-clapper {
  animation: la27-logo-entrance 1050ms 120ms cubic-bezier(.16, 1, .3, 1) both;
}

.la27-js .la27-clapper img {
  animation: la27-logo-breathe 5.5s 1.2s ease-in-out infinite alternate;
}

.la27-button span {
  transition: transform 260ms cubic-bezier(.16, 1, .3, 1);
}

.la27-button:hover span,
.la27-button:focus-visible span {
  transform: translate(4px, -4px);
}

@keyframes la27-logo-entrance {
  from { opacity: 0; transform: translate3d(55px, 25px, 0) rotate(11deg) scale(.82); }
  to { opacity: 1; transform: rotate(5deg) scale(1); }
}

@keyframes la27-logo-breathe {
  from { transform: translate3d(0, -4px, 0) scale(.985); }
  to { transform: translate3d(0, 7px, 0) scale(1.015); }
}

@keyframes la27-projector-sweep {
  0%, 62% { transform: translate3d(0, 0, 0) skewX(-18deg); opacity: 0; }
  72% { opacity: 1; }
  92%, 100% { transform: translate3d(560%, 0, 0) skewX(-18deg); opacity: 0; }
}

.la27-statement {
  display: grid;
  grid-template-columns: 180px 1fr minmax(230px, 0.42fr);
  gap: 4vw;
  align-items: start;
  padding: 105px clamp(20px, 4vw, 70px) 125px;
  background: var(--la27-red);
  color: var(--la27-white);
}

.la27-section-number,
.la27-section-head > p,
.la27-listing > header > p,
.la27-page-hero > p {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.la27-statement blockquote {
  margin-bottom: 0;
  font-size: clamp(44px, 5.6vw, 85px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.la27-statement blockquote em,
.la27-section-head h2 em,
.la27-page-hero h1 em,
.la27-latest .la27-section-head h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.la27-statement > p:last-child {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.55;
}

.la27-hosts {
  padding: 105px clamp(20px, 4vw, 70px) 140px;
  background: var(--la27-paper);
}

.la27-joint-bio {
  display: grid;
  grid-template-columns: 180px minmax(0, 820px);
  gap: 4vw;
  margin: 42px 0 0;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--la27-line);
}

.la27-joint-bio > p {
  margin: 7px 0 0;
  color: var(--la27-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.la27-joint-bio > div {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.5vw, 38px);
  line-height: 1.34;
}

.la27-section-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--la27-line);
}

.la27-section-head h2 {
  margin-bottom: 0;
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.la27-host {
  display: grid;
  grid-template-columns: minmax(270px, 0.76fr) minmax(390px, 1.24fr);
  gap: 6vw;
  align-items: center;
  max-width: 1280px;
  margin: 90px auto 0;
}

.la27-host-left {
  grid-template-columns: minmax(390px, 1.24fr) minmax(270px, 0.76fr);
  margin-top: 145px;
}

.la27-host-copy h3 {
  margin-bottom: 25px;
  font-size: clamp(43px, 5vw, 74px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.la27-host-copy > p:last-child {
  max-width: 570px;
  margin-bottom: 0;
  color: #4b4842;
  font-size: 17px;
  line-height: 1.62;
}

.la27-host-visual {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  background: var(--la27-white);
}

.la27-host-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 9% -4% -4% 9%;
  border: 2px solid var(--la27-red);
}

.la27-host-visual-left::after {
  inset: -4% 9% 9% -4%;
}

.la27-host-visual picture {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.la27-host-visual img {
  width: auto;
  height: min(720px, 70vw);
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.15));
  transform: none;
  opacity: 1;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), opacity 500ms ease;
}

.la27-js .la27-host-visual img {
  transform: translateY(36px) scale(0.96);
  opacity: 0;
}

.la27-js .la27-host.is-visible .la27-host-visual img {
  transform: none;
  opacity: 1;
}

.la27-strokes {
  position: absolute;
  z-index: 1;
  inset: -9%;
  width: 118%;
  height: 118%;
  overflow: visible;
  fill: none;
  stroke: var(--la27-red);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.la27-strokes path {
  stroke-dasharray: 1800;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1500ms 220ms cubic-bezier(0.65, 0, 0.35, 1);
}

.la27-js .la27-strokes path {
  stroke-dashoffset: 1800;
}

.la27-strokes path:nth-child(2) {
  transition-delay: 520ms;
}

.la27-js .la27-host.is-visible .la27-strokes path {
  stroke-dashoffset: 0;
}

.la27-latest {
  padding: 105px clamp(20px, 4vw, 70px) 130px;
  background: var(--la27-ink);
  color: var(--la27-white);
}

.la27-latest .la27-section-head {
  border-color: rgba(255, 255, 255, 0.25);
}

.la27-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 65px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.la27-content-card {
  min-height: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: var(--la27-ink);
  transition: background 220ms ease, color 220ms ease;
}

.la27-content-card figure {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: .32;
}

.la27-content-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 9, .96) 5%, rgba(9, 9, 9, .1) 85%);
}

.la27-content-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1);
}

.la27-content-card:hover figure img,
.la27-content-card:focus-visible figure img {
  transform: scale(1.06);
}

.la27-content-card > span,
.la27-content-card > h3,
.la27-content-card > p,
.la27-content-card > b {
  z-index: 1;
}

.la27-content-card:hover,
.la27-content-card:focus-visible {
  background: var(--la27-red);
}

.la27-content-card > span {
  position: absolute;
  top: 28px;
  left: 28px;
  color: var(--la27-red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.la27-content-card:hover > span {
  color: var(--la27-white);
}

.la27-content-card h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.la27-content-card p {
  margin-bottom: 0;
  color: #bbb6ad;
}

.la27-content-card:hover p {
  color: var(--la27-white);
}

.la27-content-card b {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 24px;
}

.la27-empty {
  grid-column: 1 / -1;
  padding: 70px 32px;
  border: 1px solid currentColor;
}

.la27-empty p {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 850;
  letter-spacing: -0.05em;
}

.la27-empty span {
  color: var(--la27-grey);
}

.la27-contact {
  position: relative;
  padding: clamp(90px, 10vw, 155px) clamp(20px, 4vw, 70px) clamp(105px, 11vw, 175px);
  overflow: hidden;
  background: var(--la27-red);
  color: var(--la27-white);
  isolation: isolate;
}

.la27-contact::before {
  content: "";
  position: absolute;
  z-index: -2;
  right: clamp(-210px, -12vw, -90px);
  bottom: clamp(-250px, -14vw, -100px);
  width: clamp(380px, 46vw, 760px);
  aspect-ratio: 1;
  border: clamp(45px, 6vw, 95px) solid rgba(9, 9, 9, .12);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.la27-contact-beam {
  position: absolute;
  z-index: -1;
  top: -45%;
  left: 47%;
  width: clamp(85px, 9vw, 145px);
  height: 190%;
  background: rgba(255, 255, 255, .09);
  transform: rotate(28deg);
  transform-origin: center;
  animation: la27-contact-beam 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.la27-contact-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 4vw;
  align-items: start;
  padding-bottom: clamp(45px, 6vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.la27-contact-heading p {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.la27-contact-heading h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(58px, 8.5vw, 132px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .83;
}

.la27-contact-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: normal;
}

.la27-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr);
  gap: clamp(50px, 8vw, 135px);
  align-items: start;
  padding-top: clamp(46px, 6vw, 80px);
}

.la27-contact-copy > p {
  max-width: 720px;
  margin-bottom: clamp(38px, 5vw, 62px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.5vw, 37px);
  line-height: 1.34;
}

.la27-contact-details {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.la27-contact-primary,
.la27-contact-detail {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .48);
}

.la27-contact-primary {
  grid-template-columns: 1fr auto;
  background: var(--la27-white);
  color: var(--la27-ink) !important;
}

.la27-contact-primary span,
.la27-contact-detail span {
  grid-column: 1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .68;
}

.la27-contact-primary strong,
.la27-contact-detail strong {
  grid-column: 1;
  overflow-wrap: anywhere;
  font-size: clamp(16px, 1.65vw, 24px);
  line-height: 1.15;
}

.la27-contact-primary b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 25px;
  transition: transform 250ms cubic-bezier(.16, 1, .3, 1);
}

.la27-contact-primary:hover,
.la27-contact-primary:focus-visible {
  background: var(--la27-ink);
  color: var(--la27-white) !important;
}

.la27-contact-primary:hover b,
.la27-contact-primary:focus-visible b {
  transform: translate(5px, -5px);
}

.la27-contact-detail {
  min-height: 82px;
  background: rgba(9, 9, 9, .08);
}

a.la27-contact-detail:hover,
a.la27-contact-detail:focus-visible {
  background: var(--la27-ink);
  border-color: var(--la27-ink);
}

.la27-contact-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, .55);
}

.la27-contact-socials a {
  display: flex;
  min-height: 76px;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 4px 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.la27-contact-socials a:nth-child(odd) {
  padding-left: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, .55);
}

.la27-contact-socials a b {
  font-size: 20px;
  transition: transform 250ms cubic-bezier(.16, 1, .3, 1);
}

.la27-contact-socials a:hover,
.la27-contact-socials a:focus-visible {
  padding-left: 14px;
  background: var(--la27-ink);
}

.la27-contact-socials a:hover b,
.la27-contact-socials a:focus-visible b {
  transform: translate(4px, -4px);
}

@keyframes la27-contact-beam {
  from { transform: translateX(-18px) rotate(28deg); opacity: .35; }
  to { transform: translateX(34px) rotate(28deg); opacity: 1; }
}

.la27-page-hero {
  min-height: 620px;
  position: relative;
  padding: 38px clamp(20px, 4vw, 70px) 70px;
  background: var(--la27-paper);
  color: var(--la27-ink);
}

.la27-page-hero-red {
  background: var(--la27-red);
  color: var(--la27-white);
}

.la27-page-hero h1 {
  margin: clamp(100px, 12vw, 170px) 0 0;
  font-size: clamp(60px, 8vw, 124px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.la27-page-hero > div {
  width: min(470px, 42vw);
  margin: 40px 0 0 auto;
  font-size: 19px;
  line-height: 1.48;
}

.la27-listing {
  padding: 95px clamp(20px, 4vw, 70px) 125px;
  background: var(--la27-paper);
}

.la27-listing > header {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: end;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--la27-ink);
}

.la27-listing > header h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.la27-episode-row {
  display: grid;
  grid-template-columns: 85px 52px minmax(280px, 1fr) 90px 30px;
  gap: 2vw;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--la27-line);
  transition: padding 180ms ease, background 180ms ease, color 180ms ease;
}

.la27-episode-row:hover,
.la27-episode-row:focus-visible {
  padding: 0 18px;
  background: var(--la27-ink);
  color: var(--la27-white);
}

.la27-episode-row > span,
.la27-episode-row time,
.la27-episode-row small {
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.la27-episode-row i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
}

.la27-episode-row small {
  display: block;
  margin-bottom: 7px;
  color: var(--la27-red);
}

.la27-episode-row h3 {
  margin-bottom: 0;
  font-size: clamp(23px, 2.5vw, 37px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.la27-article-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding-top: 28px;
}

.la27-article-card {
  grid-column: span 4;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid var(--la27-ink);
  background: var(--la27-white);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.la27-article-card figure {
  height: 230px;
  flex: 0 0 230px;
  margin: -25px -25px 24px;
  overflow: hidden;
  background: var(--la27-ink);
}

.la27-article-card figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1), opacity 220ms ease;
}

.la27-article-card.has-image {
  min-height: 560px;
}

.la27-article-card:hover figure img,
.la27-article-card:focus-visible figure img {
  transform: scale(1.06);
  opacity: .74;
}

.la27-article-card:nth-child(5n + 1),
.la27-article-card:nth-child(5n + 4) {
  grid-column: span 7;
}

.la27-article-card:nth-child(5n + 2),
.la27-article-card:nth-child(5n + 5) {
  grid-column: span 5;
  background: var(--la27-red);
  color: var(--la27-white);
}

.la27-article-card:hover,
.la27-article-card:focus-visible {
  transform: translateY(-7px);
  background: var(--la27-ink);
  color: var(--la27-white);
}

.la27-article-card > span,
.la27-article-card time {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.la27-article-card h3 {
  margin-bottom: 17px;
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.la27-article-card p {
  margin-bottom: 0;
  line-height: 1.55;
}

.la27-single {
  padding: 100px clamp(20px, 8vw, 150px) 130px;
}

.la27-single > header {
  max-width: 1150px;
  margin: 0 auto 65px;
}

.la27-single h1 {
  margin-bottom: 35px;
  font-size: clamp(53px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.la27-single-meta {
  display: flex;
  gap: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--la27-line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.la27-single > figure {
  max-width: 1300px;
  margin: 0 auto 70px;
}

.la27-single > figure img {
  width: 100%;
  height: auto;
  display: block;
}

.la27-prose {
  max-width: 760px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.la27-prose h2,
.la27-prose h3 {
  margin: 2.3em 0 0.7em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.la27-prose h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.la27-prose a {
  text-decoration: underline;
  text-decoration-color: var(--la27-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.la27-editorial-highlight {
  max-width: 980px;
  position: relative;
  overflow: hidden;
  margin: 0 auto 75px;
  padding: clamp(35px, 6vw, 78px);
  border-left: 9px solid var(--la27-red);
  background: var(--la27-ink);
  color: var(--la27-white);
}

.la27-editorial-highlight > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--la27-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.la27-editorial-highlight > span::before,
.la27-editorial-highlight > span::after {
  content: "✱";
  font-size: 13px;
}

.la27-editorial-highlight blockquote {
  max-width: 800px;
  position: relative;
  z-index: 2;
  margin: 25px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 55px);
  font-style: italic;
  line-height: 1.08;
}

.la27-highlight-logo {
  position: absolute;
  z-index: 1;
  right: -35px;
  bottom: -70px;
  width: clamp(190px, 27vw, 350px);
  height: auto;
  opacity: .16;
  transform: rotate(-7deg);
}

.la27-platform-links {
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 55px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--la27-line);
}

.la27-platform-links a {
  padding: 11px 15px;
  background: var(--la27-red);
  color: var(--la27-white);
  font-size: 13px;
  font-weight: 800;
}

.la27-media-section {
  padding: 105px clamp(20px, 4vw, 70px) 125px;
  background: var(--la27-white);
}

.la27-media-section-compact {
  background: var(--la27-ink);
  color: var(--la27-white);
}

.la27-media-section-compact .la27-section-head {
  border-color: rgba(255, 255, 255, .24);
}

.la27-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.la27-media-grid > :only-child {
  grid-column: 1 / -1;
}

.la27-media-card {
  padding: 25px;
  border: 1px solid currentColor;
}

.la27-media-card > p {
  margin-bottom: 40px;
  color: var(--la27-red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.la27-media-card > h3,
.la27-single-media h2 {
  margin-bottom: 25px;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .96;
}

.la27-media-embed {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #181818;
  color: var(--la27-white);
}

.la27-media-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  opacity: 0;
  transition: opacity 420ms ease;
}

.la27-media-embed.is-loaded iframe,
.la27-media-embed iframe:not([data-la27-src]) {
  opacity: 1;
}

.la27-media-spotify {
  min-height: 352px;
  aspect-ratio: auto;
}

.la27-media-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 30px;
  text-align: center;
  background: radial-gradient(circle at 80% 15%, rgba(214, 18, 26, .45), transparent 35%), #111;
}

.la27-media-placeholder[hidden] {
  display: none;
}

.la27-media-placeholder span {
  color: var(--la27-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.la27-media-placeholder p {
  margin: 0 0 12px;
}

.la27-media-placeholder button,
.la27-cookie-actions button,
.la27-cookie-config button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--la27-white);
  border-radius: 0;
  background: var(--la27-red);
  color: var(--la27-white);
  font-weight: 800;
  cursor: pointer;
}

.la27-media-placeholder button:hover,
.la27-media-placeholder button:focus-visible {
  background: var(--la27-white);
  color: var(--la27-ink);
}

.la27-direct-player {
  width: 100%;
  max-height: 70vh;
  background: var(--la27-ink);
}

.la27-direct-audio {
  width: 100%;
}

.la27-single-media {
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 32px;
  border: 1px solid var(--la27-line);
  background: var(--la27-white);
}

.la27-single-media .la27-media-grid {
  margin-top: 0;
}

.la27-pagination {
  margin-top: 55px;
}

.la27-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.la27-pagination a,
.la27-pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid currentColor;
  color: var(--la27-ink);
  font-size: 12px;
  font-weight: 800;
}

.la27-pagination .current {
  background: var(--la27-red);
  color: var(--la27-white);
  border-color: var(--la27-red);
}

.la27-banner-slot,
.la27-banner-slot * {
  box-sizing: border-box;
}

.la27-banner-slot {
  position: relative;
  padding: clamp(30px, 4.5vw, 68px) clamp(20px, 4vw, 70px);
  overflow: hidden;
  border-top: 1px solid var(--la27-line);
  border-bottom: 1px solid var(--la27-line);
  background:
    linear-gradient(120deg, rgba(214, 18, 26, .045), transparent 42%),
    var(--la27-paper);
}

.la27-banner-slot[hidden],
.la27-banner-item[hidden] {
  display: none;
}

.la27-banner-frame {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 6px;
  border: 1px solid rgba(9, 9, 9, .72);
  background: var(--la27-ink);
  box-shadow: 0 24px 55px rgba(9, 9, 9, .14);
}

.la27-banner-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--la27-ink);
  animation: la27-banner-enter 700ms cubic-bezier(.16, 1, .3, 1) both;
}

.la27-banner-item::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .22) 49%, transparent 60%);
  transform: translateX(-135%);
  pointer-events: none;
}

.la27-banner-item:hover::after,
.la27-banner-item:focus-within::after {
  animation: la27-banner-light 850ms ease-out;
}

.la27-banner-item > small {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  padding: 7px 9px;
  background: rgba(9, 9, 9, .88);
  color: var(--la27-white);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.la27-banner-item > a,
.la27-banner-item picture,
.la27-banner-item img {
  display: block;
  width: 100%;
}

.la27-banner-item img {
  height: auto;
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1), filter 350ms ease;
}

.la27-banner-item > a:hover img,
.la27-banner-item > a:focus-visible img {
  transform: scale(1.012);
  filter: contrast(1.035);
}

.la27-sponsors,
.la27-sponsors * {
  box-sizing: border-box;
}

.la27-sponsors {
  position: relative;
  padding: clamp(75px, 8vw, 120px) 0;
  overflow: hidden;
  border-top: 1px solid var(--la27-line);
  background: var(--la27-paper);
}

.la27-sponsors > header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  width: min(1440px, calc(100% - clamp(40px, 8vw, 140px)));
  margin: 0 auto clamp(34px, 4vw, 58px);
}

.la27-sponsors > header p,
.la27-sponsors > header h2 {
  margin: 0;
}

.la27-sponsors > header p {
  margin-bottom: 8px;
  color: var(--la27-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.la27-sponsors > header h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.6vw, 72px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
  text-wrap: balance;
}

.la27-sponsors > header button {
  min-height: 43px;
  flex: 0 0 auto;
  padding: 0 15px;
  border: 1px solid var(--la27-ink);
  border-radius: 0;
  background: transparent;
  color: var(--la27-ink);
  font: inherit;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.la27-sponsors > header button:hover,
.la27-sponsors > header button:focus-visible,
.la27-sponsors > header button[aria-pressed="true"] {
  border-color: var(--la27-red);
  background: var(--la27-red);
  color: var(--la27-white);
}

.la27-sponsors > header button span {
  display: inline-block;
  min-width: 15px;
  margin-right: 5px;
}

.la27-sponsor-viewport {
  position: relative;
  overflow: hidden;
}

.la27-sponsor-viewport::before,
.la27-sponsor-viewport::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: clamp(28px, 8vw, 145px);
  pointer-events: none;
}

.la27-sponsor-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--la27-paper), transparent);
}

.la27-sponsor-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--la27-paper), transparent);
}

.la27-sponsor-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: la27-sponsor-scroll var(--la27-sponsor-duration, 30s) linear infinite;
}

.la27-sponsor-set {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-around;
  min-width: 100vw;
  gap: 22px;
  padding-right: 22px;
}

.la27-sponsor-logo {
  position: relative;
  width: clamp(200px, 18vw, 260px);
  height: clamp(116px, 10.5vw, 145px);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 30px 24px 19px;
  border: 1px solid rgba(9, 9, 9, .22);
  background: rgba(255, 255, 255, .7);
  transition: transform 300ms cubic-bezier(.16, 1, .3, 1), border-color 220ms ease, background 220ms ease;
}

.la27-sponsor-logo:hover,
.la27-sponsor-logo:focus-within {
  z-index: 2;
  transform: translateY(-7px);
  border-color: var(--la27-red);
  background: var(--la27-white);
}

.la27-sponsor-logo small {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #6f6a62;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.la27-sponsor-art {
  position: absolute;
  top: 30px;
  left: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 49px);
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
}

.la27-sponsor-logo img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .74;
  transition: filter 220ms ease, opacity 220ms ease, transform 300ms cubic-bezier(.16, 1, .3, 1);
}

.la27-sponsor-logo:hover img,
.la27-sponsor-logo:focus-within img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.035);
}

.la27-sponsors.is-paused .la27-sponsor-track,
.la27-sponsor-viewport:hover .la27-sponsor-track,
.la27-sponsor-viewport:focus-within .la27-sponsor-track {
  animation-play-state: paused;
}

@keyframes la27-banner-enter {
  from { opacity: 0; transform: scale(.985); }
  to { opacity: 1; transform: none; }
}

@keyframes la27-banner-light {
  to { transform: translateX(135%); }
}

@keyframes la27-sponsor-scroll {
  to { transform: translateX(-50%); }
}

.la27-footer {
  padding: 85px clamp(20px, 4vw, 70px) 25px;
  background: var(--la27-ink);
  color: var(--la27-white);
}

.la27-footer-mark {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.la27-footer-mark img {
  width: clamp(135px, 19vw, 260px);
  height: auto;
}

.la27-footer-mark p {
  max-width: 320px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}

.la27-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  padding: 40px 0 70px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.la27-footer .la27-footer-social {
  margin-top: -48px;
  padding: 0 0 48px;
}

.la27-footer .la27-footer-social a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.la27-cookie-open {
  margin: -45px 0 45px auto;
  padding: 8px 0;
  display: block;
  border: 0;
  border-bottom: 1px solid var(--la27-red);
  background: transparent;
  color: var(--la27-white);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.la27-cookie-banner {
  position: fixed;
  z-index: 99999;
  right: 22px;
  bottom: 22px;
  width: min(580px, calc(100vw - 44px));
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-left: 7px solid var(--la27-red);
  background: #111;
  color: var(--la27-white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
  text-align: left;
  text-transform: none;
}

.la27-cookie-banner[hidden] {
  display: none;
}

.la27-cookie-banner h2 {
  margin-bottom: 9px;
  color: var(--la27-white);
  font-size: 28px;
  letter-spacing: -.04em;
}

.la27-cookie-banner p:not(.la27-overline) {
  margin-bottom: 10px;
  color: #d5d1c9;
}

.la27-cookie-summary {
  display: grid;
  gap: 7px;
  margin: 14px 0;
  padding: 0;
  color: #d5d1c9;
  font-size: 13px;
  list-style: none;
}

.la27-cookie-summary strong { color: var(--la27-white); }

.la27-cookie-banner a {
  color: var(--la27-white);
  text-decoration: underline;
  text-decoration-color: var(--la27-red);
}

.la27-cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 20px;
}

.la27-cookie-actions button {
  width: 100%;
  border-color: var(--la27-red);
  background: transparent;
}

.la27-cookie-actions button:hover,
.la27-cookie-actions button:focus-visible,
.la27-cookie-config button:hover,
.la27-cookie-config button:focus-visible {
  background: var(--la27-red);
  color: var(--la27-white);
}

.la27-cookie-config-button {
  margin-top: 12px;
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #ccc;
  cursor: pointer;
}

.la27-cookie-config {
  display: grid;
  gap: 12px;
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.la27-cookie-config[hidden] {
  display: none;
}

.la27-cookie-config label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.la27-cookie-config label > span {
  display: grid;
  gap: 2px;
}

.la27-cookie-config label small {
  color: #aaa;
  line-height: 1.4;
}

.la27-copyright {
  margin-bottom: 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.la27-back-to-top {
  position: fixed;
  z-index: 120;
  right: clamp(14px, 2vw, 30px);
  bottom: clamp(14px, 2vw, 30px);
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: var(--la27-red);
  color: var(--la27-white);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px) scale(.88);
  pointer-events: none;
  cursor: pointer;
}

.la27-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.la27-back-to-top:hover,
.la27-back-to-top:focus-visible {
  transform: translateY(-5px);
  background: var(--la27-ink);
}

.la27-back-to-top span { font-size: 31px; line-height: 1; }

.la27-js .la27-reveal {
  transform: translateY(36px);
  opacity: 0;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), opacity 500ms ease;
  transition-delay: var(--la27-reveal-delay, 0ms);
}

.la27-js .la27-reveal.la27-reveal-left { transform: translate3d(-46px, 18px, 0); }
.la27-js .la27-reveal.la27-reveal-right { transform: translate3d(46px, 18px, 0); }

.la27-js .la27-reveal.is-visible {
  transform: none;
  opacity: 1;
}

@media (max-width: 980px) {
  .la27-hero-copy { width: min(840px, 88vw); }

  .la27-statement {
    grid-template-columns: 120px 1fr;
  }

  .la27-statement > p:last-child {
    grid-column: 2;
    max-width: 620px;
  }

  .la27-host,
  .la27-host-left {
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
  }

  .la27-host-left {
    grid-template-columns: 1.2fr 1fr;
  }

  .la27-host-visual {
    min-height: 520px;
  }

  .la27-latest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .la27-contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    gap: 45px;
  }

  .la27-article-card {
    grid-column: span 6 !important;
  }

  .la27-editorial-highlight { max-width: calc(100% - 44px); }
}

@media (max-width: 740px) {
  .la27-header {
    grid-template-columns: 1fr auto;
    height: 78px;
  }

  .la27-logo {
    width: 54px;
    height: 60px;
  }

  .la27-menu-button {
    display: block;
  }

  .la27-header nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px;
    background: var(--la27-ink);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: visibility 0s linear 220ms, opacity 180ms ease, transform 220ms cubic-bezier(.16, 1, .3, 1);
  }

  .la27-header nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .la27-header nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .la27-hero {
    min-height: 720px;
  }

  .la27-hero-copy {
    width: 100%;
    margin-top: 115px;
  }

  .la27-hero h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .la27-hero-copy > p:not(.la27-overline),
  .la27-button {
    width: min(420px, 90%);
    margin-left: 0;
  }

  .la27-clapper {
    top: 320px;
    right: -20vw;
    width: 78vw;
    opacity: 0.42;
  }

  .la27-statement,
  .la27-section-head,
  .la27-listing > header,
  .la27-joint-bio,
  .la27-contact-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .la27-statement {
    padding-top: 75px;
    padding-bottom: 85px;
  }

  .la27-statement > p:last-child {
    grid-column: auto;
  }

  .la27-hosts,
  .la27-latest,
  .la27-listing,
  .la27-media-section,
  .la27-contact {
    padding-top: 75px;
    padding-bottom: 90px;
  }

  .la27-host,
  .la27-host-left {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 65px;
  }

  .la27-host-right .la27-host-copy {
    order: 2;
  }

  .la27-host-visual {
    min-height: 520px;
  }

  .la27-host-visual img {
    height: min(670px, 137vw);
  }

  .la27-latest-grid {
    grid-template-columns: 1fr;
  }

  .la27-contact-layout {
    grid-template-columns: 1fr;
  }

  .la27-contact-socials {
    width: 100%;
  }

  .la27-media-grid {
    grid-template-columns: 1fr;
  }

  .la27-media-grid > * {
    grid-column: 1 !important;
  }

  .la27-content-card {
    min-height: 360px;
  }

  .la27-page-hero {
    min-height: 650px;
  }

  .la27-page-hero h1 {
    margin-top: 125px;
    font-size: clamp(58px, 17vw, 88px);
  }

  .la27-page-hero > div {
    width: 100%;
  }

  .la27-episode-row {
    grid-template-columns: 50px 46px 1fr 24px;
    gap: 11px;
    padding: 18px 0;
  }

  .la27-episode-row time {
    display: none;
  }

  .la27-episode-row h3 {
    font-size: 20px;
  }

  .la27-article-card {
    grid-column: 1 / -1 !important;
    min-height: 420px;
  }

  .la27-single {
    padding-top: 70px;
  }

  .la27-single-media {
    margin-bottom: 45px;
    padding: 18px;
  }

  .la27-banner-slot {
    padding: 28px 16px;
  }

  .la27-banner-frame {
    padding: 4px;
  }

  .la27-banner-item > small {
    top: 9px;
    left: 9px;
    padding: 6px 7px;
    font-size: 7px;
  }

  .la27-sponsors {
    padding: 72px 0;
  }

  .la27-sponsors > header {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 40px);
    margin-bottom: 32px;
  }

  .la27-sponsors > header button {
    width: 100%;
  }

  .la27-sponsor-set {
    gap: 12px;
    padding-right: 12px;
  }

  .la27-sponsor-logo {
    width: 178px;
    height: 108px;
    padding: 0;
  }

  .la27-sponsor-art {
    top: 28px;
    left: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 43px);
  }

  .la27-cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 21px;
  }

  .la27-cookie-actions {
    grid-template-columns: 1fr;
  }

  .la27-footer-mark {
    display: block;
  }

  .la27-footer-mark p {
    margin-top: 35px;
  }
}

@media (max-width: 480px) {
  .la27-header { padding-inline: 16px; }
  .la27-hero { min-height: 700px; padding-inline: 20px; }
  .la27-eyebrow { gap: 18px; font-size: 9px; }
  .la27-hero-copy { margin-top: 98px; }
  .la27-hero h1 { font-size: clamp(52px, 17.3vw, 76px); }
  .la27-button { width: 100%; justify-content: space-between; }
  .la27-clapper { top: 330px; right: -28vw; width: 88vw; }
  .la27-host-visual { min-height: 410px; }
  .la27-content-card, .la27-article-card { min-height: 340px; }

  .la27-contact-heading h2 { font-size: clamp(52px, 16vw, 74px); }
  .la27-contact-socials { grid-template-columns: 1fr; }
  .la27-contact-socials a,
  .la27-contact-socials a:nth-child(odd) { min-height: 64px; padding: 15px 2px; border-right: 0; }
  .la27-page-hero { min-height: 570px; }
  .la27-page-hero h1 { margin-top: 95px; }
  .la27-single > header h1 { overflow-wrap: anywhere; }
  .la27-editorial-highlight { max-width: calc(100% - 24px); margin-bottom: 48px; padding: 32px 24px; border-left-width: 6px; }
  .la27-editorial-highlight blockquote { font-size: clamp(26px, 9vw, 38px); }
  .la27-footer { padding-inline: 20px; }
  .la27-footer nav { gap: 20px; }
  .la27-back-to-top { width: 56px; height: 56px; }
  .la27-back-to-top span { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .la27-page-transition { display: none; }

  .la27-shell *,
  .la27-shell *::before,
  .la27-shell *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .la27-js .la27-reveal,
  .la27-host-visual img {
    transform: none;
    opacity: 1;
  }

  .la27-strokes path {
    stroke-dashoffset: 0;
  }

  .la27-sponsor-viewport {
    overflow-x: auto;
    padding: 0 20px 12px;
    scrollbar-width: thin;
  }

  .la27-sponsor-viewport::before,
  .la27-sponsor-viewport::after,
  .la27-sponsor-set[aria-hidden="true"] {
    display: none;
  }

  .la27-sponsor-track {
    animation: none !important;
  }
}
