:root {
  --black: #050505;
  --panel: rgba(12, 12, 12, 0.94);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f2eee6;
  --muted: #c5bdb1;
  --green: #4aa51f;
  --yellow: #f0b400;
  --red: #d52516;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #030303;
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  letter-spacing: 0;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-shell {
  min-height: 100vh;
  background: linear-gradient(90deg, rgba(74, 165, 31, 0.12), rgba(240, 180, 0, 0.08), rgba(213, 37, 22, 0.12)), #030303;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: grid;
  grid-template-columns: 3.4rem auto;
  column-gap: 0.8rem;
  align-items: center;
  text-transform: uppercase;
}

.brand-badge {
  grid-row: span 2;
  width: 3.4rem;
}

.brand-mark {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.9;
  color: var(--yellow);
  text-shadow: 0.08em 0.08em 0 var(--red);
}

.brand-tagline {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
}

.main-nav,
.main-nav ul {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  padding: 0.5rem 0;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.16rem;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.header-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: flex-end;
}

.social-link {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #050505;
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.movement-link,
.outline-button,
.solid-button,
.ticket-button,
.stream-buttons a,
.feature-card a,
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.65rem 1.15rem;
  border: 1px solid currentColor;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.movement-link {
  border-image: linear-gradient(90deg, var(--green), var(--yellow), var(--red)) 1;
}

.hero {
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.hero-art {
  position: relative;
  min-height: clamp(30rem, 54vw, 46rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(4, 6, 3, 0.96) 0%, rgba(9, 30, 6, 0.8) 29%, rgba(171, 118, 0, 0.55) 58%, rgba(145, 18, 8, 0.72) 100%), url("../assets/images/mawi2.jpg") center / cover;
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  padding: clamp(3rem, 7vw, 6rem) 0 3rem clamp(1rem, 7vw, 7rem);
}

.hero-kicker,
.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--green);
  font-size: 1rem;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 0.72;
  text-transform: uppercase;
  text-shadow: 0.05em 0.04em 0 var(--red), -0.05em -0.04em 0 var(--green);
}

.hero-subtitle {
  max-width: 36rem;
  margin: 1.4rem 0 1rem;
  font-family: "Segoe Print", "Bradley Hand ITC", cursive;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.hero-actions,
.stream-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.solid-button.green {
  background: var(--green);
  color: #fff;
}

.solid-button.yellow {
  background: var(--yellow);
  color: #050505;
}

.hero-portrait {
  position: absolute;
  right: 12%;
  bottom: 0;
  z-index: 1;
  width: min(38vw, 34rem);
  max-height: 90%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.95);
  mix-blend-mode: screen;
}

.single-panel,
.feature-grid,
.content-band,
.site-footer,
.drupal-content,
.drupal-highlighted {
  margin-right: clamp(1rem, 3vw, 2.5rem);
  margin-left: clamp(1rem, 3vw, 2.5rem);
}

.single-panel {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.9);
}

.single-release,
.audio-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.8rem);
}

.single-release {
  border-right: 1px solid var(--line);
}

.single-release img {
  width: clamp(7rem, 14vw, 11rem);
  aspect-ratio: 1;
  object-fit: cover;
}

.single-release h2,
.shows-panel h2,
.gallery-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.release-status,
.yellow {
  color: var(--yellow);
}
// AI TWO PENCE
.release-commerce {
  margin-top: clamp(1.75rem, 4vw, 3rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.release-commerce__eyebrow {
  margin: 0 0 0.65rem;
  color: #b8e600;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-commerce__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.release-commerce__price {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.release-commerce__price.is-free {
  color: #b8e600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.release-commerce__cart-form {
  margin-top: 1rem;
}

.release-commerce__cart-form .field__label {
  display: none;
}

.release-commerce__cart-form .form-actions {
  margin: 0;
}

.release-commerce__cart-form input[type="submit"],
.release-commerce__cart-form .button {
  min-height: 2.8rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid #b8e600;
  background: #b8e600;
  color: #080808;
  font-weight: 900;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-transform: uppercase;
}

.release-commerce__cart-form input[type="submit"]:hover,
.release-commerce__cart-form input[type="submit"]:focus-visible,
.release-commerce__cart-form .button:hover,
.release-commerce__cart-form .button:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #080808;
}

.release-commerce__product-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.release-commerce__product-link:hover,
.release-commerce__product-link:focus-visible {
  color: #b8e600;
}


// END AI TWO PENCE
.stream-buttons a {
  min-height: 2.1rem;
  padding: 0.45rem 0.85rem;
  border-color: rgba(255, 255, 255, 0.32);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  text-transform: none;
}

.audio-card {
  justify-content: space-between;
}

.play-button {
  display: grid;
  flex: 0 0 auto;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.track-meta {
  flex: 1;
  font-family: Arial, sans-serif;
}

.track-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.progress {
  height: 0.3rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.2);
}

.progress span {
  display: block;
  width: 35%;
  height: 100%;
  background: var(--green);
}

.audio-card > a {
  font-size: 0.85rem;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 13rem;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  background: #111 center / cover;
}

.feature-card:last-child {
  border-right: 0;
}

.music-card {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.45)), url("../assets/images/mawi2.jpg");
}

.video-card {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.35)), url("../assets/images/mawi4.avif");
}

.tour-card {
  background-image: linear-gradient(90deg, rgba(40, 0, 0, 0.88), rgba(0, 0, 0, 0.4)), url("../assets/images/mawi3.jpg");
}

.about-card {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.25)), url("../assets/images/mawi5.jpg");
}

.feature-card h2 {
  margin: 0;
  color: var(--green);
  font-size: 2rem;
  text-transform: uppercase;
}

.video-card h2,
.shows-panel .eyebrow {
  color: var(--yellow);
}

.tour-card h2 {
  color: var(--red);
}

.feature-card p {
  max-width: 17rem;
  margin: 0.35rem 0 1rem;
  font-family: Arial, sans-serif;
}

.feature-card a {
  min-height: 2rem;
  padding: 0.4rem 1rem;
  border-color: var(--yellow);
  font-size: 0.82rem;
}

.content-band {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.55fr;
  border: 1px solid var(--line);
  background: rgba(4, 4, 4, 0.92);
}

.bio-panel,
.shows-panel,
.gallery-panel {
  min-width: 0;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.gallery-panel {
  border-right: 0;
}

.bio-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bio-panel p,
.show-row,
.gallery-panel,
.site-footer,
.drupal-content {
  font-family: Arial, sans-serif;
}

.panel-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.bio-panel img {
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

.outline-button.green {
  color: var(--green);
}

.outline-button.yellow,
.ticket-button {
  color: var(--yellow);
}

.outline-button.full {
  width: 100%;
  margin-top: 0.8rem;
}

.show-row {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.show-row time {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.show-row time span,
.show-row div span {
  display: block;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
}

.ticket-button {
  min-height: 2rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.drupal-content,
.drupal-highlighted {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding: 1.6rem 0 2.2rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.footer-brand img {
  width: 3.6rem;
}

.site-footer h2 {
  margin: 0 0 0.6rem;
  color: var(--green);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.newsletter-form button {
  border-color: var(--red);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.node-card {
  max-width: 68rem;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .site-header,
  .single-panel,
  .content-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .main-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .main-nav,
  .main-nav ul {
    flex-wrap: wrap;
  }

  .single-release {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .bio-panel,
  .shows-panel,
  .gallery-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    gap: 1rem;
  }

  .brand {
    grid-template-columns: 2.8rem auto;
  }

  .brand-badge {
    width: 2.8rem;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero-art {
    min-height: 34rem;
  }

  .hero-copy {
    padding: 3rem 1rem;
  }

  .hero-portrait {
    right: -3rem;
    width: 20rem;
    opacity: 0.5;
  }

  .single-release,
  .audio-card,
  .bio-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .show-row {
    grid-template-columns: 3rem 1fr;
  }

  .ticket-button {
    grid-column: 2;
    width: max-content;
  }

  .newsletter-form {
    display: grid;
  }
}

/* =========================================================
   Node-driven homepage polish
   ========================================================= */

.fm-home-hero {
  position: relative;
  min-height: clamp(520px, 78vh, 850px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.fm-home-hero__background {
  position: absolute;
  inset: 0;
}

.fm-home-hero__background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.fm-home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .48) 52%, rgba(0, 0, 0, .28) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .62), transparent 55%);
}

.fm-home-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 90px;
}

.fm-home-hero__copy {
  max-width: 760px;
}

.fm-home-hero__copy h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: .84;
  letter-spacing: -.045em;
  text-transform: uppercase;
  max-width: 700px;
}

.fm-home-hero__kicker {
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fm-home-hero__lead {
  max-width: 580px;
  margin-top: 24px;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

.fm-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Prevent generated biography text from taking over the page. */

.fm-home-bio__copy {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-height: 1.75;
}

/* Content-led feature cards. */

.feature-card__count {
  margin: 0 0 8px;
  color: #f2d21b;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* Gallery grid. */

.fm-home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.fm-home-gallery__grid a {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #161616;
  color: #fff;
  text-decoration: none;
}

.fm-home-gallery__grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}

.fm-home-gallery__grid span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 16px 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .9));
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fm-home-gallery__grid a:hover img,
.fm-home-gallery__grid a:focus-visible img {
  transform: scale(1.045);
  opacity: .82;
}

/* Events. */

.fm-home-events__list {
  display: grid;
  gap: 1px;
  background: #282828;
  border: 1px solid #282828;
}

.fm-home-event {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: #090909;
}

.fm-home-event time {
  display: grid;
  text-align: center;
  text-transform: uppercase;
}

.fm-home-event time strong {
  color: #f2d21b;
  font-size: 2rem;
  line-height: 1;
}

.fm-home-event h3,
.fm-home-event p {
  margin: 0;
}

.fm-home-event h3 a {
  color: #fff;
  text-decoration: none;
}

/* CTA contrast and keyboard visibility. */

.fm-button:hover,
.fm-button:focus-visible,
.fm-home-button:hover,
.fm-home-button:focus-visible,
.stream-buttons a:hover,
.stream-buttons a:focus-visible,
.feature-card a:hover,
.feature-card a:focus-visible {
  color: #050505;
  background: #f2d21b;
  border-color: #f2d21b;
  outline: none;
}

.fm-button--green:hover,
.fm-button--green:focus-visible {
  color: #fff;
  background: #167c35;
  border-color: #167c35;
}

.fm-button--red:hover,
.fm-button--red:focus-visible {
  color: #fff;
  background: #c81e2a;
  border-color: #c81e2a;
}

@media (max-width: 900px) {
  .fm-home-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .fm-home-hero {
    min-height: 620px;
  }

  .fm-home-hero__inner {
    width: min(100% - 28px, 1180px);
  }

  .fm-home-gallery__grid {
    grid-template-columns: 1fr;
  }

  .fm-home-event {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .fm-home-event > .fm-home-button {
    grid-column: 1 / -1;
    text-align: center;
  }
}


/* =========================================================
   VIDEO PAGE
   ========================================================= */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 4rem;
}

.video-card {
  height: 100%;
  overflow: hidden;
  background: #0c0c0c;
  border: 1px solid #cda900;
  border-left: 4px solid #16833c;
  border-right: 4px solid #a91515;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .35);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.video-card:hover {
  transform: translateY(-7px);
  border-top-color: #ffd900;
  border-bottom-color: #ffd900;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .55);
}

.video-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.video-card__media {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-card__media .field,
.video-card__media .field__item,
.video-card__media picture {
  height: 100%;
}

.video-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.video-card:hover .video-card__media img {
  transform: scale(1.045);
}

.video-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, .72),
      rgba(0, 0, 0, .08) 55%,
      transparent
    );
}

.video-card__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding-left: 5px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: rgba(0, 0, 0, .67);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  transform: translate(-50%, -50%);
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.video-card:hover .video-card__play {
  color: #080808;
  background: #ffd400;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__content {
  padding: 1.35rem 1.4rem 1.55rem;
}

.video-card__title {
  margin: 0 0 .65rem;
  color: #ffd400;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.video-card__description {
  margin-bottom: 1.1rem;
  color: #d7d7d7;
  line-height: 1.65;
}

.video-card__description .field,
.video-card__description p {
  margin: 0;
}

.video-card__button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .7rem 1.15rem;
  color: #fff;
  background: #a91515;
  border: 1px solid #dc3333;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Featured Views block. */

.video-featured {
  margin: 0 0 3rem;
}

.video-featured .video-card {
  border-width: 2px;
  border-left-width: 6px;
  border-right-width: 6px;
}

.video-featured .video-card__media {
  aspect-ratio: 21 / 9;
}

.video-featured .video-card__play {
  width: 108px;
  height: 108px;
  font-size: 3rem;
}

.video-featured .video-card__content {
  padding: 1.7rem 2rem 2rem;
}

.video-featured .video-card__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.video-featured .video-card__description {
  max-width: 760px;
  font-size: 1.05rem;
}

/* Remove default field labels if Views still outputs them. */

.node--type-video.node--view-mode-teaser .field__label {
  display: none;
}

@media (max-width: 800px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .video-featured .video-card__media {
    aspect-ratio: 16 / 10;
  }

  .video-featured .video-card__play,
  .video-card__play {
    width: 68px;
    height: 68px;
    font-size: 1.8rem;
  }

  .video-featured .video-card__content {
    padding: 1.25rem;
  }
}

/* Video section headings. */

.video-hero-section,
.video-library {
  position: relative;
}

.video-library {
  margin-top: 4rem;
}

.video-library__header {
  max-width: 760px;
  margin: 0 0 2rem;
}

.video-library__header .section-kicker,
.video-hero-section .section-kicker {
  display: block;
  margin-bottom: .45rem;
  color: #d9b600;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.video-library__header h2,
.video-hero-section h1 {
  margin: 0 0 .75rem;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.video-library__header p,
.video-hero-section p {
  margin: 0;
  color: #cfcfcf;
  font-size: 1.05rem;
  line-height: 1.7;
}

.video-card__title {
  display: block;
  margin: 0 0 .65rem;
  color: #ffd400;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
  text-transform: uppercase;
}

/* =========================================================
   VIDEO FEATURED BLOCK CORRECTIONS
   ========================================================= */

.video-hero-section {
  margin-bottom: 4rem;
  padding: 4rem 0;
  background:
    linear-gradient(rgba(0, 0, 0, .78), rgba(0, 0, 0, .92)),
    url("../assets/images/video-bg.jpg") center / cover no-repeat;
}

.video-hero-section__header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.video-hero-section__header h1 {
  margin: .3rem 0 .75rem;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .95;
  text-transform: uppercase;
}

.video-hero-section__header p {
  margin: 0;
  color: #d2d2d2;
  font-size: 1.05rem;
}

.video-hero-section__content {
  position: relative;
}

.video-hero-section .video-featured__item {
  display: block;
}

/* Featured card: media left, copy right. */

.video-hero-section .video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .8fr);
  min-height: 430px;
  border-width: 2px;
  border-left-width: 6px;
  border-right-width: 6px;
}

.video-hero-section .video-card__link {
  display: contents;
}

.video-hero-section .video-card__media {
  height: 100%;
  min-height: 430px;
  aspect-ratio: auto;
}

.video-hero-section .video-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: rgba(10, 10, 10, .96);
}

.video-hero-section .video-card__title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.video-hero-section .video-card__description {
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Remove accidental nested headings from the Views row template. */

.video-hero-section .video-featured > h1,
.video-hero-section .video-featured > h2,
.video-hero-section .video-featured > h3 {
  display: none;
}

@media (max-width: 900px) {
  .video-hero-section {
    padding: 2.5rem 0;
  }

  .video-hero-section .video-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .video-hero-section .video-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .video-hero-section .video-card__content {
    padding: 1.5rem;
  }
}

/* Final Videos layout corrections. */

.video-library,
.video-library .view-content,
.video-library .video-grid {
  width: 100%;
}

.video-library .video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.video-library .video-grid__item,
.video-library .views-row {
  min-width: 0;
  width: 100%;
}

.video-library .video-card {
  width: 100%;
}

@media (min-width: 1300px) {
  .video-library .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .video-library .video-grid {
    grid-template-columns: 1fr;
  }
}

/* FM START: SIMPLE ICONS SOCIALS */

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-socials .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 2.35rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition:
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-socials .social-link:hover,
.header-socials .social-link:focus-visible {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0.5rem 1.4rem rgba(0, 0, 0, 0.28);
  transform: translateY(-2px) scale(1.06);
}

.header-socials .social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.header-socials .social-icon {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* Spotify: Simple Icons shape with Spotify brand green. */
.header-socials .social-link--spotify .social-icon {
  background-color: #1ed760;
  -webkit-mask-image:
    url("../assets/icons/simple-icons/spotify.svg");
  mask-image:
    url("../assets/icons/simple-icons/spotify.svg");
}

/* YouTube: Simple Icons shape with YouTube brand red. */
.header-socials .social-link--youtube .social-icon {
  background-color: #ff0033;
  -webkit-mask-image:
    url("../assets/icons/simple-icons/youtube.svg");
  mask-image:
    url("../assets/icons/simple-icons/youtube.svg");
}

/* Instagram: Simple Icons shape with the recognisable brand gradient. */
.header-socials .social-link--instagram .social-icon {
  background:
    linear-gradient(
      135deg,
      #feda75 0%,
      #fa7e1e 24%,
      #d62976 48%,
      #962fbf 72%,
      #4f5bd5 100%
    );
  -webkit-mask-image:
    url("../assets/icons/simple-icons/instagram.svg");
  mask-image:
    url("../assets/icons/simple-icons/instagram.svg");
}

/* Facebook: Simple Icons shape with Facebook brand blue. */
.header-socials .social-link--facebook .social-icon {
  background-color: #1877f2;
  -webkit-mask-image:
    url("../assets/icons/simple-icons/facebook.svg");
  mask-image:
    url("../assets/icons/simple-icons/facebook.svg");
}

/* Platform-specific restrained hover glow. */
.header-socials .social-link--spotify:hover,
.header-socials .social-link--spotify:focus-visible {
  box-shadow: 0 0 1.15rem rgba(30, 215, 96, 0.25);
}

.header-socials .social-link--youtube:hover,
.header-socials .social-link--youtube:focus-visible {
  box-shadow: 0 0 1.15rem rgba(255, 0, 51, 0.25);
}

.header-socials .social-link--instagram:hover,
.header-socials .social-link--instagram:focus-visible {
  box-shadow: 0 0 1.15rem rgba(214, 41, 118, 0.28);
}

.header-socials .social-link--facebook:hover,
.header-socials .social-link--facebook:focus-visible {
  box-shadow: 0 0 1.15rem rgba(24, 119, 242, 0.28);
}

@media (max-width: 1100px) {
  .header-socials {
    gap: 0.35rem;
  }

  .header-socials .social-link {
    width: 2.1rem;
    height: 2.1rem;
    flex-basis: 2.1rem;
  }

  .header-socials .social-icon {
    width: 1.05rem;
    height: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-socials .social-link {
    transition: none;
  }

  .header-socials .social-link:hover,
  .header-socials .social-link:focus-visible {
    transform: none;
  }
}

/* FM END: SIMPLE ICONS SOCIALS */

/* Header cart: hide Drupal block title, keep the actual cart link. */
.site-header__cart > .block > h2,
.site-header__cart > .block > .block__title,
.site-header__cart .block-commerce-cart h2,
.site-header__cart [id^="block-"] > h2 {
  display: none !important;
}


.site-header__cart {
  display: flex;
  align-items: center;
  margin: 0;
}

.site-header__cart .block,
.site-header__cart .cart-block--summary,
.site-header__cart .cart-block--summary__inner {
  margin: 0;
  padding: 0;
}

.site-header__cart .cart-block--summary__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__cart .cart-block--summary__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.3rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #b8e600;
  color: #080808;
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
}

.site-header__cart .cart-block--summary__label,
.site-header__cart .cart-block--summary__title {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-socials .social-link {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
}

.site-header__cart {
  min-width: 2.75rem;
  min-height: 2.5rem;
}

.movement-link {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  white-space: nowrap;
}

.site-header__cart {
  position: relative;
}

.site-header__cart .cart-block--contents {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 0.75rem);
  right: 0;
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0b0b0b;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.55);
}

@media (max-width: 900px) {
  .header-actions {
    gap: 0.45rem;
  }

  .header-socials {
    display: none;
  }

  .movement-link {
    padding-inline: 0.65rem;
    font-size: 0.7rem;
  }
}
/* Do not reserve space for an empty highlighted/messages region. */
.drupal-highlighted:has(> div > [data-drupal-messages-fallback].hidden) {
  display: none;
}

/* Keep the region visible whenever Drupal renders a real message. */
.drupal-highlighted:has(.messages) {
  display: block;
  width: min(1440px, calc(100% - 48px));
  margin: 1rem auto 0;
}
/* =========================================================
   Account login assistance
   ========================================================= */

.fm-login-help {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fm-login-help__link {
  color: #d9aa26;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.fm-login-help__link:hover,
.fm-login-help__link:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 640px) {
  .fm-login-help {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fm-login-help__link {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }
}

/* ===== BEGIN MIGRATED MOBILE OWNERSHIP ===== */

/* Exact responsive rules migrated from the former global mobile compatibility layer. */

@media (max-width: 640px) {
  /* Forms. */

    input[type="text"]
  {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-height: 3rem;

  }

  input[type="email"]
  {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-height: 3rem;

  }

  input[type="tel"]
  {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-height: 3rem;

  }

  input[type="password"]
  {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-height: 3rem;

  }

  input[type="number"]
  {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-height: 3rem;

  }

  select
  {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-height: 3rem;

  }

  textarea
  {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-height: 3rem;

  }

  textarea
  {
        min-height: 9rem;

  }

  input[type="submit"]
  {
        min-height: 3rem;

  }

}

/* ===== END MIGRATED MOBILE OWNERSHIP ===== */
