.lt_section--stream .lt_section_content_inner {
  padding: 24px clamp(14px, 4.8vw, 21px) 26px;
}

.lt_stream_release + .lt_stream_release {
  margin-top: 22px;
}

.lt_stream_video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--lt-section-color);
  border-radius: 16px;
  background: var(--lt-black);
}

.lt_stream_video-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lt_stream_video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 0 11px;
  padding: 13px;
  color: var(--lt-beige);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.08) 20%, rgba(8, 8, 8, 0.86) 100%);
}

.lt_stream_video-play {
  align-self: center;
  justify-self: center;
  grid-column: 1 / -1;
  width: clamp(54px, 18vw, 70px);
  height: clamp(54px, 18vw, 70px);
  transition: transform 180ms ease;
}

.lt_stream_video-play:hover,
.lt_stream_video-play:focus-visible {
  transform: scale(1.06);
}

.lt_stream_video-play:focus-visible {
  outline: 2px solid var(--lt-beige);
  outline-offset: 4px;
}

.lt_stream_video-play img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lt_stream_video-meta {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.lt_stream_video-meta strong {
  overflow: hidden;
  font: 800 clamp(14px, 4.2vw, 18px) / 1 var(--lt-title-font);
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.lt_stream_video-meta span {
  margin-top: 4px;
  font-size: clamp(11px, 3.4vw, 13px);
  font-weight: 700;
}

.lt_stream_video-progress {
  grid-column: 1 / -1;
  width: 100%;
  height: 5px;
  margin-top: 12px;
  border-radius: 99px;
  background: rgba(222, 213, 197, 0.38);
}

.lt_stream_video-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--lt-section-color);
  transition: width 250ms linear;
}

.lt_video_modal-open {
  overflow: hidden;
}

.lt_video_modal {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: clamp(12px, 3vw, 32px);
  border: 0;
  color: var(--lt-beige);
  background: transparent;
}

.lt_video_modal::backdrop {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(7px);
}

.lt_video_modal-panel {
  position: relative;
  top: 50%;
  width: min(100%, 1200px, calc(177.78dvh - 190px));
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid var(--lt-video-color);
  border-radius: clamp(16px, 2.5vw, 24px);
  background: var(--lt-black);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  transform: translateY(-50%);
}

.lt_video_modal-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: var(--lt-video-color);
}

.lt_video_modal-external,
.lt_video_modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--lt-black);
  border-radius: 999px;
  color: var(--lt-black);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lt_video_modal-external:hover,
.lt_video_modal-external:focus-visible,
.lt_video_modal-close:hover,
.lt_video_modal-close:focus-visible {
  color: var(--lt-video-color);
  background: var(--lt-black);
  transform: scale(1.06);
}

.lt_video_modal-external:focus-visible,
.lt_video_modal-close:focus-visible {
  outline: 2px solid var(--lt-beige);
  outline-offset: 2px;
}

.lt_video_modal-external img {
  width: 22px;
  height: 22px;
  transform: rotate(-45deg);
}

.lt_video_modal-external:hover img,
.lt_video_modal-external:focus-visible img {
  filter: invert(1);
}

.lt_video_modal-close span,
.lt_video_modal-close span::after {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.lt_video_modal-close span {
  position: relative;
}

.lt_video_modal-close span::after {
  position: absolute;
  inset: 0;
  transform: rotate(90deg);
}

.lt_video_modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.lt_video_modal-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.lt_stream_platforms {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.lt_stream_platform {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 14px;
  min-height: 62px;
  align-items: center;
  gap: 14px;
  padding: 0 19px;
  border: 2px solid var(--lt-section-color);
  border-radius: 15px;
  color: var(--lt-beige);
  background: var(--lt-black);
  font: 800 clamp(16px, 4.8vw, 20px) / 1 var(--lt-title-font);
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lt_stream_platform:hover,
.lt_stream_platform:focus-visible {
  color: var(--lt-black);
  background: var(--lt-section-color);
  transform: translateX(3px);
}

.lt_stream_platform:focus-visible {
  outline: 2px solid var(--lt-beige);
  outline-offset: 3px;
}

.lt_stream_platform img {
  width: 34px;
  height: 34px;
  justify-self: center;
  object-fit: contain;
}

.lt_stream_platform:hover img,
.lt_stream_platform:focus-visible img {
  filter: brightness(0);
}

.lt_stream_platform-arrow {
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.lt_section--merch .lt_section_name,
.lt_section--event .lt_section_name {
  font-size: clamp(14px, 4.2vw, 19px);
  line-height: 1.05;
}

.lt_merch_media,
.lt_event_hero {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--lt-section-color);
  border-radius: 16px;
}

.lt_merch_media {
  aspect-ratio: 4 / 4.35;
  background: #25282d;
}

.lt_merch_media > img,
.lt_event_hero > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lt_feature_stamp {
  position: absolute;
  top: 14px;
  right: 13px;
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--lt-black);
  background: var(--lt-section-color);
  font: 800 13px / 0.95 var(--lt-title-font);
  text-align: center;
  text-transform: uppercase;
  white-space: pre-line;
  transform: rotate(8deg);
}

.lt_merch_stock {
  position: absolute;
  bottom: 13px;
  left: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 2px solid var(--lt-section-color);
  border-radius: 13px;
  color: var(--lt-beige);
  background: rgba(8, 8, 8, 0.88);
  text-transform: uppercase;
}

.lt_merch_stock strong {
  font: 800 30px / 0.85 var(--lt-title-font);
}

.lt_merch_stock span {
  max-width: 5ch;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  white-space: pre-line;
}

.lt_feature_copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.lt_feature_eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--lt-section-color);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lt_feature_copy h3 {
  margin: 0;
  color: var(--lt-beige);
  font: 800 clamp(22px, 6.5vw, 28px) / 0.95 var(--lt-title-font);
  text-transform: uppercase;
}

.lt_feature_price {
  color: var(--lt-section-color);
  font: 800 24px / 1 var(--lt-title-font);
  white-space: nowrap;
}

.lt_feature_description {
  margin: 14px 0 0;
  color: var(--lt-beige);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.lt_merch_details {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.lt_merch_details span {
  padding: 6px 9px;
  border: 1px solid var(--lt-section-color);
  border-radius: 99px;
  color: var(--lt-beige);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.lt_feature_cta {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 19px;
  padding: 10px 16px;
  border-radius: 14px;
  color: var(--lt-black);
  background: var(--lt-section-color);
  font: 800 clamp(15px, 4.5vw, 18px) / 1 var(--lt-title-font);
  text-align: center;
  text-transform: uppercase;
  transition: filter 180ms ease, transform 180ms ease;
}

.lt_feature_cta:hover,
.lt_feature_cta:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.lt_feature_cta:focus-visible {
  outline: 2px solid var(--lt-beige);
  outline-offset: 3px;
}

.lt_feature_cta img {
  width: 23px;
  height: 23px;
}

.lt_event_hero {
  aspect-ratio: 16 / 11;
  color: var(--lt-beige);
  background: var(--lt-black);
}

.lt_event_hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.05), rgba(8, 8, 8, 0.9));
}

.lt_event_city,
.lt_event_date,
.lt_event_title {
  position: absolute;
  z-index: 1;
}

.lt_event_city {
  top: 12px;
  right: 12px;
  max-width: 55%;
  overflow: hidden;
  padding: 5px 9px;
  border-radius: 99px;
  color: var(--lt-black);
  background: var(--lt-section-color);
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.lt_event_date {
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 2px solid var(--lt-section-color);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.84);
}

.lt_event_date strong {
  font: 800 27px / 0.9 var(--lt-title-font);
}

.lt_event_date span {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  white-space: pre-line;
}

.lt_event_title {
  right: 14px;
  bottom: 13px;
  left: 14px;
}

.lt_event_title small {
  display: block;
  margin-bottom: 4px;
  color: var(--lt-section-color);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.lt_event_title strong {
  display: block;
  font: 800 clamp(26px, 8vw, 34px) / 0.9 var(--lt-title-font);
  text-transform: uppercase;
}

.lt_event_details {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr;
  gap: 8px;
  margin-top: 12px;
}

.lt_event_details--no-doors {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
}

.lt_event_details > div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--lt-section-color);
  border-radius: 11px;
}

.lt_event_details span,
.lt_event_details strong {
  display: block;
}

.lt_event_details span {
  margin-bottom: 4px;
  color: var(--lt-section-color);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.lt_event_details strong {
  overflow: hidden;
  color: var(--lt-beige);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .lt_stream_video-play {
    width: 66px;
    height: 66px;
  }

  .lt_stream_platform {
    font-size: clamp(16px, 2vw, 19px);
  }

  .lt_feature_cta {
    font-size: clamp(15px, 1.8vw, 18px);
  }
}

@media (min-width: 1120px) {
  .lt_stream_platform {
    font-size: clamp(17px, 1.5vw, 20px);
  }

  .lt_feature_cta {
    font-size: clamp(15px, 1.45vw, 18px);
  }
}
