:root {
  --page: #050505;
  --page-2: #111216;
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.68);
  --soft: rgba(245, 247, 251, 0.78);
  --panel: rgba(34, 34, 38, 0.66);
  --panel-2: rgba(14, 14, 16, 0.5);
  --line: rgba(255, 255, 255, 0.14);
  --shine: rgba(255, 255, 255, 0.16);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44), inset 0 1px 0 var(--shine);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(160, 160, 166, 0.13), transparent 30%),
    radial-gradient(circle at 74% 78%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, var(--page) 0%, var(--page-2) 48%, #070809 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("../img/intro-bg.jpg") center / cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.85) contrast(1.04) brightness(0.34) blur(1px);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: clamp(16px, 4vw, 56px);
  right: clamp(16px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 10px 12px;
  background: linear-gradient(150deg, rgba(42, 42, 46, 0.72), rgba(16, 16, 18, 0.48));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(30px) saturate(1.2);
  transition: min-height 220ms ease, padding 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.icon-button,
.menu-panel a,
.language-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: rgba(245, 247, 251, 0.76);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.menu-panel a:hover,
.language-panel a:hover,
.language-panel a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.header-actions {
  display: flex;
  gap: 6px;
  justify-self: end;
}

.icon-button {
  width: 42px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.site-header.is-compact {
  min-height: 60px;
  padding: 7px 10px;
}

.floating-panel {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  z-index: 60;
  width: min(360px, calc(100vw - 28px));
  padding: 10px;
  background: linear-gradient(150deg, rgba(42, 42, 46, 0.86), rgba(16, 16, 18, 0.68));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(30px) saturate(1.2);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-panel::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
}

.floating-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.menu-panel a,
.language-panel a {
  justify-content: flex-start;
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
}

.menu-panel {
  right: 52px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.language-panel {
  width: min(220px, calc(100vw - 28px));
}

.section {
  width: 100%;
  padding: 56px clamp(16px, 4vw, 56px) 40px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.works-section {
  padding-top: 56px;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 10, 0.9), rgba(8, 8, 10, 0.68) 42%, rgba(8, 8, 10, 0.9)),
    url("../img/contact-bg.jpg");
}

.glass-panel {
  background: linear-gradient(150deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(30px) saturate(1.2);
}

.news-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 48px;
  overflow: hidden;
}

.news-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.84) 0%, rgba(5, 5, 5, 0.48) 48%, rgba(5, 5, 5, 0.18) 100%),
    url("../img/intro-bg.jpg") center / cover no-repeat;
  filter: saturate(1.18) contrast(1.05) brightness(0.78);
}

.news-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0) 30%);
}

.news-content {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(28px, 5vw, 62px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(245, 247, 251, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(46px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

.news-content h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(17px, 2.5vw, 35px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.22;
}

.news-cover {
  width: clamp(170px, 22vw, 260px);
  aspect-ratio: 1;
  margin-top: 24px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

.news-screenshot {
  width: min(620px, 100%);
  aspect-ratio: 1280 / 560;
  margin-top: 22px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.5);
}

.news-meta,
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.news-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 900;
}

.button.filled {
  color: #111;
  background: linear-gradient(135deg, #f7f7f4, #bfc1c4);
}

.album-card {
  padding: 18px;
}

.album-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 26px;
}

.album-card p {
  margin: 22px 6px 6px;
  color: rgba(245, 247, 251, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.album-card h2 {
  margin: 0 6px 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
}

.section-title {
  margin-bottom: 22px;
}

.section-title-bar {
  display: grid;
  grid-template-columns: minmax(120px, 0.6fr) minmax(0, 1.8fr) minmax(120px, 0.6fr);
  align-items: center;
  min-height: 68px;
  padding: 10px 18px;
  background: linear-gradient(150deg, rgba(42, 42, 46, 0.72), rgba(16, 16, 18, 0.48));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(30px) saturate(1.2);
}

.section-title-bar .eyebrow {
  margin: 0;
  justify-self: start;
}

.section-title-bar h2 {
  justify-self: center;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(38px, 6vw, 86px);
}

.section-title.section-title-bar h2 {
  font-size: 16px;
  line-height: 1;
}

.works-grid,
.streaming-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.works-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 80px;
}

.works-grid article {
  padding: 14px 14px 24px;
}

.media-link {
  display: block;
}

.media-link:hover img {
  transform: scale(1.025);
}

.works-grid img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 24px;
  transition: transform 180ms ease;
}

.works-grid span {
  color: rgba(245, 247, 251, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.works-grid h3,
.streaming-grid h3,
.about-copy h3 {
  margin: 8px 4px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.04;
}

.works-grid p,
.about-copy p {
  margin: 0 4px;
  color: var(--muted);
}

.video-feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 80px;
  padding: 14px;
}

.video-feature .media-link {
  flex: 0 1 calc((100% - 36px) / 4);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.video-feature + .video-feature {
  margin-top: 18px;
}

.facebook-post-embed {
  flex: 0 1 calc((100% - 36px) / 4);
  aspect-ratio: 1.65;
  overflow: hidden;
  background: rgba(5, 5, 6, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}

.facebook-post-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.video-feature img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  transition: transform 180ms ease;
}

.video-title,
.music-title {
  margin-top: 80px;
}

.streaming-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 80px;
}

.streaming-grid article {
  padding: 18px;
  color: #232326;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(223, 224, 226, 0.9));
  border-color: rgba(255, 255, 255, 0.72);
}

.streaming-grid .media-link {
  width: 100%;
}

.streaming-grid img {
  width: 100%;
  height: 46px;
  object-fit: contain;
  padding: 11px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.34);
  border-radius: 22px;
  transition: transform 180ms ease;
}

.updates-section {
  padding-top: 56px;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 10, 0.91), rgba(8, 8, 10, 0.7) 42%, rgba(8, 8, 10, 0.91)),
    url("../img/works-bg.jpg");
}

.updates-list {
  display: grid;
  gap: 24px;
  margin-top: 80px;
}

.update-row {
  display: grid;
  grid-template-columns: 540px 240px;
  gap: 0;
  align-items: center;
  justify-content: center;
  align-content: center;
  min-height: 320px;
  padding: 22px 18px;
}

.update-row.is-reversed .update-media {
  order: -1;
}

.update-row.is-reversed {
  grid-template-columns: 240px 540px;
}

.update-row.has-video {
  grid-template-columns: 420px 360px;
  min-height: 360px;
}

.update-row.is-reversed.has-video {
  grid-template-columns: 360px 420px;
}

.update-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 24px 0 0 24px;
}

.update-row.is-reversed .update-copy {
  border-radius: 0 24px 24px 0;
}

.update-kicker {
  color: rgba(245, 247, 251, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.update-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1;
}

.update-copy p {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--muted);
}

.update-copy p:not(.update-meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.update-meta {
  font-size: 13px;
  line-height: 1.5;
  color: var(--soft);
}

.update-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 12px;
  width: 100%;
  margin-top: 18px;
}

.update-actions .button {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 64px;
  padding: 0 34px;
  color: #232326;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(210, 211, 213, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 12px 22px rgba(0, 0, 0, 0.18);
  font-weight: 500;
  font-size: 13px;
  overflow: hidden;
}

.update-actions .button::before {
  content: "";
  position: absolute;
  inset: 10px 14px;
  border: 2px solid rgba(95, 95, 98, 0.46);
  border-radius: inherit;
  pointer-events: none;
}

.update-media {
  display: block;
  width: 240px;
  height: 240px;
  min-height: 0;
  justify-self: start;
}

.update-row.has-video .update-media {
  width: 360px;
  height: 240px;
}

.update-row.is-reversed .update-media {
  justify-self: end;
}

.update-row.is-reversed.has-video .update-media {
  justify-self: start;
}

.update-media img,
.update-media iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
  background: #050506;
}

.update-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border-radius: 0 24px 24px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.update-row.is-reversed .update-carousel {
  border-radius: 24px 0 0 24px;
}

.update-carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: transparent;
  object-fit: cover;
  animation: usbCarousel 24s infinite;
}

.update-carousel--six img {
  animation-duration: 18s;
}

.update-carousel img:nth-child(2) {
  animation-delay: 3s;
}

.update-carousel img:nth-child(3) {
  animation-delay: 6s;
}

.update-carousel img:nth-child(4) {
  animation-delay: 9s;
}

.update-carousel img:nth-child(5) {
  animation-delay: 12s;
}

.update-carousel img:nth-child(6) {
  animation-delay: 15s;
}

.update-carousel img:nth-child(7) {
  animation-delay: 18s;
}

.update-carousel img:nth-child(8) {
  animation-delay: 21s;
}

@keyframes usbCarousel {
  0%,
  10% {
    opacity: 1;
  }

  14%,
  100% {
    opacity: 0;
  }
}

.update-row.is-reversed .update-media img,
.update-row.is-reversed .update-media iframe {
  border-radius: 24px 0 0 24px;
}

.update-media iframe {
  aspect-ratio: 1;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  grid-auto-flow: dense;
  margin-top: 80px;
}

.gallery-section {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 10, 0.9), rgba(8, 8, 10, 0.66) 42%, rgba(8, 8, 10, 0.9)),
    url("../img/gallery-bg.jpg");
}

.gallery-item {
  display: block;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: transparent;
  border: 0;
  border-radius: var(--radius-lg);
}

.gallery-item.is-wide {
  grid-column: span 2;
}

.gallery-item.is-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item:hover img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.gallery-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(5, 5, 6, 0.82);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: min(100%, 1080px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(18px);
}

.about-section {
  padding-top: 56px;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 10, 0.91), rgba(8, 8, 10, 0.72) 42%, rgba(8, 8, 10, 0.91)),
    url("../img/intro-bg.jpg");
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  margin-top: 80px;
  padding: 18px;
}

.about-copy,
.about-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 26px;
}

.about-card {
  align-items: center;
  text-align: center;
}

.about-card img {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
}

.about-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  white-space: nowrap;
}

.about-card span {
  color: rgba(245, 247, 251, 0.72);
  font-size: 16px;
  font-weight: 800;
}

.about-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 34px 16px 52px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-socials a {
  min-width: 150px;
  padding: 13px 24px;
  color: var(--text);
  text-align: center;
  background: linear-gradient(150deg, rgba(42, 42, 46, 0.72), rgba(16, 16, 18, 0.48));
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(1.15);
}

.footer-meta {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .site-header {
    gap: 8px 12px;
  }

  .news-hero,
  .about-section {
    grid-template-columns: 1fr;
  }

  .update-row {
    grid-template-columns: 450px 210px;
    min-height: 290px;
  }

  .update-row.is-reversed {
    grid-template-columns: 210px 450px;
  }

  .update-row.has-video {
    grid-template-columns: 360px 300px;
    min-height: 320px;
  }

  .update-row.is-reversed.has-video {
    grid-template-columns: 300px 360px;
  }

  .news-hero {
    padding-top: 96px;
    padding-bottom: 36px;
  }

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

  .update-row.is-reversed .update-media {
    order: -1;
  }

  .video-feature {
    grid-template-columns: none;
  }

  .video-feature .media-link {
    flex-basis: calc((100% - 12px) / 2);
  }

  .facebook-post-embed {
    flex-basis: calc((100% - 12px) / 2);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    left: 12px;
    right: 12px;
    border-radius: 24px;
    padding: 8px;
  }

  .brand {
    min-height: 40px;
    padding-right: 8px;
  }

  .icon-button,
  .menu-panel a,
  .language-panel a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
  }

  .icon-button {
    width: 38px;
  }

  .menu-panel {
    right: 0;
  }

  .section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-title-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    padding: 14px;
  }

  .section-title-bar .eyebrow {
    justify-self: center;
  }

  .works-grid,
  .streaming-grid,
  .video-feature {
    grid-template-columns: 1fr;
  }

  .video-feature .media-link {
    flex-basis: 100%;
  }

  .facebook-post-embed {
    flex-basis: 100%;
  }

  .works-grid,
  .video-feature,
  .streaming-grid,
  .updates-list,
  .gallery-grid,
  .about-panel {
    margin-top: 48px;
  }

  .updates-list {
    gap: 18px;
  }

  .update-row {
    grid-template-columns: minmax(0, 1fr) 132px;
    grid-auto-rows: auto;
    align-items: center;
    align-content: start;
    height: auto;
    min-height: auto;
    padding: 14px 12px;
  }

  .update-row.is-reversed {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .update-row.has-video {
    grid-template-columns: minmax(0, 1fr) minmax(174px, 48vw);
    align-items: center;
    min-height: 0;
  }

  .update-row.is-reversed.has-video {
    grid-template-columns: minmax(174px, 48vw) minmax(0, 1fr);
  }

  .update-copy {
    min-height: 132px;
    height: auto;
    padding: 10px 12px;
    border-radius: 20px 0 0 20px;
  }

  .update-row.has-video .update-copy {
    height: 132px;
    min-height: 132px;
  }

  .update-row.is-reversed .update-copy {
    border-radius: 0 20px 20px 0;
  }

  .update-media {
    width: 132px;
    height: 132px;
    min-height: 0;
    align-self: center;
  }

  .update-row.has-video .update-media {
    width: 100%;
    height: 132px;
    min-height: 0;
    align-self: center;
    aspect-ratio: auto;
  }

  .update-media img,
  .update-media iframe {
    height: 100%;
    min-height: 0;
    object-fit: contain;
    border-radius: 0 20px 20px 0;
  }

  .update-carousel {
    border-radius: 0 20px 20px 0;
  }

  .update-row.is-reversed .update-carousel {
    border-radius: 20px 0 0 20px;
  }

  .update-row.is-reversed .update-media img,
  .update-row.is-reversed .update-media iframe {
    border-radius: 20px 0 0 20px;
  }

  .update-copy h3 {
    margin: 6px 0 7px;
    font-size: clamp(14px, 4vw, 18px);
  }

  .update-kicker,
  .update-meta {
    font-size: 10px;
  }

  .update-copy p:not(.update-meta) {
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.25;
  }

  .update-copy p {
    margin-bottom: 6px;
  }

  .news-content {
    min-height: 440px;
  }

  .button {
    width: 100%;
  }

  .update-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 24px;
    font-size: 12px;
  }

  .update-actions .button::before {
    inset: 7px 10px;
    border-width: 1px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 132px;
  }

  .gallery-item.is-wide {
    grid-column: span 2;
  }

  .gallery-item.is-tall {
    grid-row: span 2;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .about-panel {
    padding: 12px;
  }

  .about-copy,
  .about-card {
    min-height: 0;
    padding: 22px;
    border-radius: 22px;
  }

  .about-card img {
    width: 78px;
    height: 78px;
  }
}
