.fm-video-node-main {
  min-height: 70vh;
  background:
    radial-gradient(circle at 8% 8%, rgba(38, 103, 42, .16), transparent 32rem),
    radial-gradient(circle at 94% 16%, rgba(121, 25, 16, .13), transparent 34rem),
    #070807;
}

.fm-video-node-content,
.fm-video-node-content .theme-block,
.fm-video-node-content .theme-block-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.fm-video-entry {
  box-sizing: border-box;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.fm-video-entry__header {
  max-width: 64rem;
  margin-bottom: 2rem;
}

.fm-video-entry__eyebrow {
  margin: 0 0 .8rem;
  color: #d9aa26;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.fm-video-entry__title {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .86;
  text-transform: uppercase;
}

.fm-video-entry__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background: #050505;
  box-shadow: 0 1.75rem 4.5rem rgba(0,0,0,.3);
}

.fm-video-entry__player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.fm-video-entry__poster {
  position: relative;
  width: 100%;
  height: 100%;
}

.fm-video-entry__poster .field,
.fm-video-entry__poster .field__item {
  width: 100%;
  height: 100%;
}

.fm-video-entry__poster img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
}

.fm-video-entry__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.34);
}

.fm-video-entry__unavailable,
.fm-video-entry__empty {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: #fff;
  text-align: center;
}

.fm-video-entry__empty {
  position: relative;
  width: 100%;
  height: 100%;
}

.fm-video-entry__play-icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  border: 1px solid #d9aa26;
  border-radius: 50%;
  background: rgba(0,0,0,.62);
  color: #d9aa26;
  font-size: 1.5rem;
}

.fm-video-entry__body {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(16rem, .7fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.fm-video-entry__description {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.8;
}

.fm-video-entry__description .field,
.fm-video-entry__description p {
  margin-top: 0;
}

.fm-video-entry__actions {
  align-self: start;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.025);
}

.fm-video-entry__actions-label {
  margin: 0 0 1rem;
  color: #d9aa26;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fm-video-entry__youtube,
.fm-video-entry__all,
.fm-video-entry__back {
  box-sizing: border-box;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  border: 1px solid #d9aa26;
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.fm-video-entry__youtube,
.fm-video-entry__all {
  width: 100%;
}

.fm-video-entry__youtube {
  border-color: #b82b25;
  background: linear-gradient(90deg, #9e201b, #d34239);
}

.fm-video-entry__all {
  margin-top: .75rem;
  background: rgba(217,170,38,.06);
}

.fm-video-entry__youtube--disabled {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.54);
}

.fm-video-entry__navigation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.fm-video-entry__navigation-side--next {
  text-align: right;
}

.fm-video-entry__nav-link {
  display: flex;
  min-height: 4.75rem;
  flex-direction: column;
  justify-content: center;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
}

.fm-video-entry__nav-link:hover,
.fm-video-entry__nav-link:focus-visible {
  border-color: #d9aa26;
}

.fm-video-entry__nav-direction {
  color: #d9aa26;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fm-video-entry__nav-title {
  margin-top: .35rem;
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fm-video-entry__back {
  align-self: center;
  white-space: nowrap;
}

/* Shared teaser fallback when no cover image exists. */
.video-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(255,255,255,.2);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .fm-video-entry__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fm-video-entry {
    width: calc(100% - 2rem);
  }

  .fm-video-entry__title {
    font-size: clamp(2.8rem, 15vw, 4.7rem);
  }

  .fm-video-entry__navigation {
    grid-template-columns: 1fr;
  }

  .fm-video-entry__navigation-side--next {
    text-align: left;
  }

  .fm-video-entry__back {
    width: 100%;
    order: 3;
  }
}
