@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/nunito-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/nunito-sans-600.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/fonts/nunito-sans-700.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/static/fonts/nunito-sans-800.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/static/fonts/nunito-sans-900.ttf") format("truetype");
}

:root {
  --green: #27a566;
  --ink: #171717;
  --muted: #686868;
  --line: #e6e6e6;
  --paper: #ffffff;
  --soft: #f3f5f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

.utility {
  display: flex;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #d7d7d7;
  background: #111;
  font-size: 12px;
}

.utility a {
  color: #fff;
}

.social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, .16);
  border-right: 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.social .login-menu {
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.social-icon::before,
.login-icon::before {
  color: rgba(255, 255, 255, .72);
  font-weight: 900;
  line-height: 1;
}

.facebook-icon::before {
  content: "f";
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.instagram-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 4px;
  box-shadow: inset 0 0 0 4px #111;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  transform: translate(5px, -5px);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
}

.user-icon::before {
  content: "♟";
  transform: rotate(180deg);
  font-size: 16px;
}

.social a:hover,
.login-menu:focus-within .login-icon,
.login-menu:hover .login-icon {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .04);
}

.top-empty {
  flex: 1;
}

.social,
.header-banner-rotator {
  display: flex;
  align-items: center;
  gap: 0;
}

.login-menu {
  position: relative;
}

.login-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: none;
  width: 260px;
  padding: 18px;
  color: #fff;
  background: #111;
  text-align: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25);
}

.login-menu:hover .login-dropdown,
.login-menu:focus-within .login-dropdown {
  display: grid;
  gap: 10px;
}

.login-dropdown div {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.upload-link {
  width: auto !important;
  min-width: 150px;
  color: #fff;
  height: 40px !important;
  background-color: var(--green);
  background: linear-gradient(to right top, #27a566 50%, #0dcd6e 50%);
  border: 0 !important;
  padding: 0 16px;
  font-size: 12px !important;
  font-weight: 800;
  text-transform: uppercase;
}

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

.top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 112px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: #fff;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  width: min(240px, 52vw);
  height: auto;
}

.header-banner-rotator {
  position: relative;
  width: min(620px, 46vw);
  height: 76px;
  overflow: hidden;
}

.header-banner-rotator a {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.header-banner-rotator a.is-active {
  opacity: 1;
  pointer-events: auto;
}

.header-banner-rotator img {
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--green);
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  background: var(--green);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.nav-logo {
  display: flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  padding-right: 0;
  opacity: 0;
  transition: width 160ms ease, opacity 160ms ease;
}

.main-nav:hover .nav-logo,
.main-nav:focus-within .nav-logo {
  width: 170px;
  padding-right: 18px;
  opacity: 1;
}

.nav-logo img {
  width: 150px;
  height: auto;
}

.mobile-menu-button {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 13px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-menu > li:hover > a,
.nav-menu > li:focus-within > a {
  background: #0dcd6e;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 25;
  display: none;
  min-width: 245px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #222;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
}

.nav-menu > li:hover .sub-menu,
.nav-menu > li:focus-within .sub-menu {
  display: block;
}

.sub-menu a {
  min-height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #222;
  color: #fff;
  font-size: 12px;
  text-transform: none;
}

.sub-menu a:hover {
  background: var(--green);
}

.nav-search {
  display: flex;
  align-items: center;
  margin-left: auto;
  background: #0dcd6e;
}

.nav-search input {
  width: min(230px, 22vw);
  min-height: 52px;
  padding: 0 44px 0 14px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, .86);
}

.nav-search button {
  width: 52px;
  min-height: 52px;
  overflow: hidden;
  color: transparent;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-search button::before {
  content: "⌕";
  color: #fff;
  font-size: 26px;
}

.live-slider {
  padding: 18px clamp(18px, 4vw, 56px) 34px;
  background: #f4f4f4;
}

.slider-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(185px, 18vw);
  gap: 6px;
}

.slider-card {
  position: relative;
  overflow: hidden;
  background: #111;
}

.slider-card.feature {
  grid-row: span 2;
}

.slider-card a,
.slider-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.slider-card img {
  object-fit: cover;
  transition: transform 180ms ease;
}

.slider-card:hover img {
  transform: scale(1.04);
}

.slider-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent);
}

.slider-overlay h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
}

.slider-card.feature .slider-overlay h3 {
  font-size: clamp(26px, 3vw, 42px);
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  color: #ddd;
  font-size: 12px;
}

.slider-play {
  top: 12px;
  bottom: auto;
}

.nav a {
  font-size: 13px;
}

.tv-program {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, .9fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  padding: clamp(20px, 4vw, 56px);
  color: #fff;
  background: #111;
}

.tv-player {
  position: relative;
  background: #000;
}

.tv-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.tv-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 10px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tv-live-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(17, 17, 17, .96), rgba(41, 168, 107, .72));
  pointer-events: none;
}

.tv-live-overlay strong {
  font-size: clamp(34px, 5vw, 78px);
  line-height: .95;
  text-transform: uppercase;
}

.tv-live-overlay span {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.tv-player.is-playing .tv-live-overlay {
  opacity: 0;
  transition: opacity 220ms ease;
}

.tv-volume {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, .72);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.tv-player:hover .tv-volume,
.tv-player:focus-within .tv-volume {
  opacity: 1;
  transform: translateY(0);
}

.tv-volume button {
  min-width: 44px;
  padding: 6px 8px;
  color: #fff;
  background: var(--green);
  border: 0;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.tv-volume input {
  width: min(180px, 36vw);
  accent-color: var(--green);
}

.tv-copy span {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

.tv-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1;
}

.tv-copy p {
  margin: 0 0 10px;
  color: #ddd;
  font-size: 18px;
}

.tv-next {
  color: #fff;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  background: #111;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.777vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-video iframe,
.hero-video source {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.vimeo-placeholder,
.embed-placeholder {
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
}

.vimeo-placeholder button,
.embed-placeholder button {
  cursor: pointer;
  padding: 12px 16px;
  color: #fff;
  background: var(--green);
  border: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 36px));
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  text-transform: uppercase;
}

.hero p {
  max-width: 720px;
  margin: 10px 0 28px;
  font-size: clamp(20px, 3vw, 36px);
}

.search {
  display: flex;
  width: min(620px, 100%);
  background: #fff;
  border: 1px solid var(--line);
}

.search input {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  border: 0;
  font-size: 16px;
}

.search button {
  padding: 0 22px;
  color: #fff;
  background: var(--green);
  border: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.compact {
  max-width: 520px;
}

.section,
.page-head,
.watch {
  padding: 46px clamp(18px, 4vw, 56px);
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding: 46px clamp(18px, 4vw, 56px);
}

.content-shell .watch,
.inline-section {
  padding: 0;
}

.section-muted {
  background: var(--soft);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2,
.page-head h1 {
  margin-bottom: 0;
  color: var(--green);
  font-size: clamp(30px, 5vw, 58px);
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.video-card {
  background: #fff;
  border: 1px solid var(--line);
}

.thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.thumb-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: linear-gradient(135deg, #1b1b1b, #2d2d2d);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 700;
}

.video-card:hover .thumb img {
  transform: scale(1.04);
}

.play {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--green);
}

.duration {
  position: absolute;
  right: 10px;
  bottom: 12px;
  padding: 5px 7px;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.video-info {
  padding: 16px;
}

.video-info span,
.watch-meta span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.video-info h3 {
  margin: 8px 0;
  font-size: 18px;
  line-height: 1.25;
}

.video-info p,
.page-head p,
.watch-meta p {
  color: var(--muted);
  line-height: 1.55;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.channel-tile {
  align-items: flex-start;
  min-height: 132px;
}

.channel-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.channel-card span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

.channel-card small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.channel-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  background: var(--soft);
}

.watch {
  display: grid;
  gap: 28px;
}

.watch-layout {
  align-items: start;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: #aaa;
}

.player-wrap {
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-wrap,
.channel-head-video {
  position: relative;
}

.player-wrap iframe,
.player-wrap video,
.player-wrap .vimeo-placeholder {
  width: 100%;
  height: 100%;
  border: 0;
}

.player-wrap video {
  display: block;
  object-fit: contain;
}

.video-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(39, 165, 102, .28), transparent 34%),
    linear-gradient(135deg, rgba(0, 0, 0, .96), rgba(15, 20, 18, .94));
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  pointer-events: none;
}

.video-loading img {
  display: block;
  width: min(280px, 56%);
  height: auto;
}

.video-loading span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .86);
}

.video-loading span::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .28);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: loading-spin .9s linear infinite;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.is-video-ready > .video-loading {
  display: none;
}

.video-suggestions {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  align-content: center;
  gap: 22px;
  padding: clamp(18px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .92), rgba(14, 23, 19, .96)),
    #000;
}

.has-ended > .video-suggestions {
  display: grid;
}

.video-suggestions > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.video-suggestions span {
  color: var(--green);
  font-size: clamp(18px, 2.6vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
}

.video-suggestions button {
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: var(--green);
  border: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.suggestion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.suggestion-grid a {
  display: grid;
  gap: 9px;
  color: #fff;
}

.suggestion-grid img,
.suggestion-grid a > span {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #151515;
}

.suggestion-grid a > span {
  display: grid;
  place-items: center;
  font-size: 32px;
}

.suggestion-grid strong {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.25;
}

.floating-video-placeholder {
  display: none;
  aspect-ratio: 16 / 9;
}

.has-floating-video .floating-video-placeholder {
  display: block;
}

.floating-video {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: min(420px, calc(100vw - 36px));
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 14px 42px rgba(0, 0, 0, .35);
}

.floating-video video {
  width: 100%;
  height: 100%;
}

@media (max-width: 720px) {
  .tv-program {
    grid-template-columns: 1fr;
  }

  .floating-video {
    right: 10px;
    bottom: 10px;
    width: min(300px, calc(100vw - 20px));
  }

  .video-suggestions {
    padding: 14px;
  }

  .video-suggestions > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .suggestion-grid {
    grid-template-columns: 1fr;
    max-height: 58vh;
    overflow: auto;
  }

  .suggestion-grid a {
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
  }

  .lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    padding: 16px 10px;
  }

  .lightbox button {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

.embed-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-consent-box {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.video-consent-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.video-consent-box div {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 520px;
  padding: 24px;
}

.video-consent-box p {
  margin: 0;
  color: #ddd;
}

.watch-meta {
  width: min(920px, 100%);
}

.watch-meta h1 {
  margin: 8px 0 12px;
  font-size: clamp(32px, 5vw, 64px);
}

.detail-meta,
.action-row,
.tag-row,
.tag-list,
.tab-row,
.archive-tools,
.az-filter,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.detail-meta span,
.pill,
.tag-row a,
.tag-list a,
.tab-row a,
.az-filter a,
.reset-link,
.action-row button,
.contact-grid a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pill,
.action-row button,
.advanced-search button,
.reset-link {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.tag-row a,
.tab-row a,
.az-filter a,
.contact-grid a {
  color: var(--ink);
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 22px;
}

.side-widget {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.side-widget h3 {
  margin-bottom: 14px;
  color: var(--green);
  text-transform: uppercase;
}

.side-widget p {
  color: var(--muted);
  line-height: 1.55;
}

.portale img {
  display: block;
  max-width: 100%;
  margin-bottom: 14px;
}

.trend-tags {
  display: grid;
  gap: 10px;
}

.trend-tags a {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.archive-tools {
  justify-content: space-between;
  margin-bottom: 18px;
}

.archive-head .archive-tools {
  margin-bottom: 0;
}

.archive-tools a,
.sort-links a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sort-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.archive-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.advanced-search {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.advanced-search h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.advanced-search input[type="search"] {
  width: min(520px, 100%);
  padding: 13px 14px;
  border: 1px solid var(--line);
  font: inherit;
}

.advanced-search button {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}

.check-grid label {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  font-size: 13px;
}

.channel-detail article {
  display: grid;
  gap: 26px;
}

.channel-cover {
  min-height: 310px;
  display: grid;
  align-items: end;
  padding: 44px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .28)), #1c1c1c;
  background-position: center;
  background-size: cover;
}

.channel-cover .breadcrumb {
  color: #ddd;
  margin-bottom: 22px;
}

.channel-titlebar {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  align-items: center;
}

.channel-titlebar img,
.channel-titlebar > span {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, .88);
}

.channel-titlebar > span {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 44px;
  font-weight: 700;
}

.channel-titlebar h1 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 68px);
}

.channel-titlebar .detail-meta span {
  color: #fff;
  background: rgba(0, 0, 0, .35);
  border-color: rgba(255, 255, 255, .2);
}

.about-panel {
  display: grid;
  gap: 18px;
}

.about-panel h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.about-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.about-panel video,
.map-frame {
  width: 100%;
  border: 0;
  background: #111;
}

.about-panel video {
  aspect-ratio: 16 / 9;
}

.map-frame {
  height: 320px;
}

.customer-panel {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 28px;
}

.customer-main,
.customer-contact,
.project-panel {
  display: grid;
  gap: 18px;
}

.about-copy {
  color: var(--muted);
  line-height: 1.65;
}

.tag-list {
  margin-top: 18px;
}

.about-copy h2,
.project-panel h2 {
  color: var(--green);
  font-size: clamp(24px, 3vw, 38px);
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gallery-strip a,
.gallery-strip img {
  display: block;
  width: 100%;
}

.gallery-strip a {
  cursor: zoom-in;
}

.gallery-strip img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background: rgba(0, 0, 0, .92);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  margin: 0 auto;
  object-fit: contain;
}

.lightbox button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  font-size: 34px;
  line-height: 1;
}

.lightbox button:hover {
  background: var(--green);
  border-color: var(--green);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.channel-native-video,
.channel-featured-video video,
.channel-head-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  object-fit: contain;
}

.channel-featured-video,
.channel-head-video {
  display: grid;
  gap: 10px;
}

.channel-featured-video a,
.channel-head-video a {
  color: var(--green);
  font-weight: 700;
}

.customer-contact .map-frame {
  border: 3px solid var(--green);
}

.address {
  margin: 0;
  padding: 12px;
  color: #fff;
  background: #54595f;
  text-align: center;
}

.customer-contact .contact-grid {
  display: grid;
}

.customer-contact .contact-grid a {
  justify-content: center;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  min-height: 230px;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .55)), #333;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.project-card strong {
  font-size: 24px;
  text-transform: uppercase;
}

.project-card span {
  line-height: 1.45;
}

.project-card em {
  width: fit-content;
  margin: 8px auto 0;
  padding: 9px 14px;
  background: var(--green);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pagination a {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.pagination a.active,
.az-filter a.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.page-body {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.page-body h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 5vw, 64px);
  text-transform: uppercase;
}

.page-date {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.legal-copy {
  color: #333;
  line-height: 1.7;
  white-space: pre-wrap;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #fff;
  background: #111;
}

.form-page {
  min-height: 58vh;
  display: grid;
  place-items: center;
  padding: 54px clamp(18px, 4vw, 56px);
  background: var(--soft);
}

.form-panel {
  width: min(520px, 100%);
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.form-panel h1 {
  color: var(--green);
  text-transform: uppercase;
}

.stack-form {
  display: grid;
  gap: 16px;
}

.stack-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.stack-form input,
.stack-form select,
.stack-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.stack-form button {
  min-height: 46px;
  color: #fff;
  background: var(--green);
  border: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.form-error,
.form-success {
  margin: 0 0 18px;
  padding: 12px 14px;
  font-weight: 700;
}

.form-error {
  color: #8a1f1f;
  background: #fff0f0;
  border: 1px solid #f0c8c8;
}

.form-success {
  color: #11643d;
  background: #eaf8f0;
  border: 1px solid #bfe6cf;
}

.backoffice-shell {
  padding: 44px clamp(18px, 4vw, 56px) 64px;
  background: var(--soft);
}

.backoffice-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.backoffice-head span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.backoffice-head h1 {
  margin: 8px 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.backoffice-head p {
  margin: 0;
  color: var(--muted);
}

.backoffice-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
}

.backoffice-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  background: #151515;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.backoffice-nav a:hover {
  background: var(--green);
}

.backoffice-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px auto;
  gap: 10px;
  margin-bottom: 18px;
}

.backoffice-filter input,
.backoffice-filter select {
  min-height: 44px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--line);
  font: inherit;
}

.backoffice-filter button,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #fff;
  background: var(--green);
  border: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.backoffice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 24px;
}

.backoffice-panel,
.backoffice-form {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.backoffice-panel h2 {
  margin-top: 0;
  color: var(--green);
  text-transform: uppercase;
}

.list-stack,
.dashboard-video-list {
  display: grid;
  gap: 12px;
}

.dashboard-row,
.dashboard-video-list article {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.dashboard-row {
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
}

.dashboard-row img,
.dashboard-row span {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.dashboard-row span {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 28px;
  font-weight: 800;
}

.dashboard-row strong,
.dashboard-video-list strong {
  display: block;
  margin-bottom: 5px;
}

.dashboard-row small,
.dashboard-video-list small {
  color: var(--muted);
}

.dashboard-video-list form {
  margin-top: 8px;
}

.dashboard-video-list button,
.backoffice-form button {
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  background: var(--green);
  border: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.upload-job-list {
  display: grid;
  gap: 12px;
}

.upload-job {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.upload-job strong,
.upload-job small {
  display: block;
}

.upload-job small,
.upload-job p {
  color: var(--muted);
}

.upload-job p {
  margin: 0;
}

.upload-job > span {
  width: max-content;
  padding: 4px 8px;
  color: #fff;
  background: #555c63;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.upload-job form {
  margin: 0;
}

.upload-job button {
  min-height: 38px;
  padding: 0 12px;
  color: #fff;
  background: #151515;
  border: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.upload-job-processing > span,
.upload-job-uploading > span {
  background: var(--green);
}

.upload-job-failed > span {
  background: #9a2a2a;
}

.backoffice-form {
  display: grid;
  gap: 16px;
}

.backoffice-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.backoffice-form input,
.backoffice-form textarea {
  width: 100%;
  padding: 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  font: inherit;
  text-transform: none;
}

.backoffice-form h2 {
  margin: 8px 0 0;
  color: var(--green);
  text-transform: uppercase;
}

.check-label {
  display: flex !important;
  align-items: center;
  grid-template-columns: none !important;
  gap: 10px !important;
}

.check-label input {
  width: auto;
}

.banner-edit-list {
  display: grid;
  gap: 14px;
}

.banner-edit-row,
.user-edit-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr auto;
  align-items: end;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
}

.user-edit-list {
  display: grid;
  gap: 14px;
}

.user-edit-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.role-checks {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.banner-edit-row img {
  grid-column: 1 / -1;
  max-width: min(520px, 100%);
  max-height: 90px;
  object-fit: contain;
  background: #f5f5f5;
  border: 1px solid var(--line);
}

.live-tv-list {
  display: grid;
  gap: 10px;
}

.live-tv-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 110px;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
}

.live-tv-row img,
.live-tv-row > a > span {
  display: block;
  width: 132px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

.live-tv-row > a > span {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.live-tv-row strong,
.live-tv-row small {
  display: block;
}

.live-tv-row small {
  margin-top: 4px;
  color: var(--muted);
}

.live-tv-row form {
  margin: 0;
}

.live-tv-row button {
  width: 100%;
  min-height: 40px;
  color: #fff;
  border: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.live-tv-row button.is-active {
  background: var(--green);
}

.live-tv-row button.is-inactive {
  background: #54595f;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.seo-band {
  padding: 48px clamp(18px, 4vw, 56px);
  color: #fff;
  background: #151515;
}

.seo-band h2 {
  color: #fff;
}

.seo-band p {
  max-width: 1080px;
  color: #d8d8d8;
  line-height: 1.65;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.compact-heading h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.list-stack {
  display: grid;
  gap: 12px;
}

.mini-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.mini-row img,
.mini-row span {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.mini-row span {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-weight: 700;
}

@media (max-width: 720px) {
  .top-content,
  .page-head,
  .footer,
  .utility {
    align-items: flex-start;
    flex-direction: column;
  }

  .utility {
    min-height: auto;
    padding: 16px 18px;
  }

  .social {
    flex-wrap: wrap;
    gap: 10px;
  }

  .social a {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .upload-link {
    min-width: 0;
    height: 46px !important;
    width: auto !important;
    padding: 0 16px;
    font-size: 18px !important;
  }

  .live-tv-row {
    align-items: start;
  }

  .header-banner-rotator {
    display: none;
  }

  .main-nav {
    position: static;
    flex-direction: column;
    padding: 0;
  }

  .nav-logo {
    display: flex;
    width: auto;
    opacity: 1;
    padding: 12px 18px;
  }

  .mobile-menu-button {
    position: absolute;
    top: 12px;
    right: 14px;
    display: grid;
    gap: 4px;
    width: 38px;
    height: 34px;
    padding: 7px;
    background: transparent;
    border: 0;
  }

  .mobile-menu-button span {
    display: block;
    height: 2px;
    background: #fff;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .main-nav.is-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    min-height: 44px;
  }

  .sub-menu {
    position: static;
    display: block;
    box-shadow: none;
  }

  .sub-menu a {
    padding-left: 28px;
    background: #1d1d1d;
  }

  .nav-search {
    display: none;
    width: 100%;
    margin-left: 0;
  }

  .main-nav.is-open .nav-search {
    display: flex;
  }

  .nav-search input {
    width: 100%;
  }

  .slider-mosaic,
  .two-column,
  .content-shell,
  .channel-titlebar,
  .backoffice-grid,
  .backoffice-filter,
  .banner-edit-row,
  .live-tv-row,
  .form-grid,
  .customer-panel,
  .project-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .backoffice-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sidebar {
    order: 2;
  }

  .slider-card.feature {
    grid-row: span 1;
  }

  .hero {
    min-height: 70vh;
  }

  .search {
    flex-direction: column;
  }

  .search button {
    min-height: 48px;
  }
}
