.nd-latest-videos {
  width: 100%;
  border-top: 5px solid #111;
  margin-top: 56px;
  padding: 16px 0 28px;
}
.nd-video-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.nd-video-heading h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 800;
  letter-spacing: -.025em;
}
.nd-video-heading h2 span { color: #e3120b; }
.nd-video-heading > a { color: #111; font-size: 14px; font-weight: 800; }
.nd-video-heading > a:hover { color: #e3120b; }
.nd-video-viewport { position: relative; }
.nd-video-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 64px) / 5);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.nd-video-track:hover,
.nd-video-track:focus-visible { scrollbar-color: #d7d7d7 transparent; }
.nd-video-track::-webkit-scrollbar { height: 3px; }
.nd-video-track::-webkit-scrollbar-thumb { background: transparent; }
.nd-video-track:hover::-webkit-scrollbar-thumb { background: #d7d7d7; }
.nd-video-card {
  min-width: 0;
  scroll-snap-align: start;
}
.nd-video-card > a {
  position: relative;
  display: block;
  min-height: 466px;
  overflow: hidden;
  background: #272727;
  color: #fff;
  text-decoration: none;
}
.nd-video-card img,
.nd-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.nd-video-fallback { background: linear-gradient(145deg, #445260, #111); }
.nd-video-card a:hover img { transform: scale(1.035); }
.nd-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 25%, rgba(0,0,0,.28) 52%, rgba(0,0,0,.93) 100%);
}
.nd-video-copy {
  position: absolute;
  right: 20px;
  bottom: 60px;
  left: 20px;
  display: grid;
  gap: 7px;
}
.nd-video-copy small {
  font-size: 12px;
  font-weight: 800;
}
.nd-video-copy strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(23px, 1.55vw, 30px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.04;
}
.nd-video-copy em {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-style: normal;
  line-height: 1.25;
}
.nd-video-duration {
  position: absolute;
  bottom: 19px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
}
.nd-video-duration b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}
.nd-video-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 42px;
  height: 54px;
  place-items: center;
  border: 1px solid #cfcfcf;
  background: rgba(255,255,255,.96);
  color: #111;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,.12);
}
.nd-video-prev { left: -14px; }
.nd-video-next { right: -14px; }
.nd-video-nav[hidden] { display: none; }
.nd-video-nav:hover,
.nd-video-nav:focus-visible { background: #e3120b; color: #fff; outline: 0; }

@media (max-width: 1100px) {
  .nd-video-track { grid-auto-columns: calc((100% - 32px) / 3); }
  .nd-video-card > a { min-height: 430px; }
}
@media (max-width: 680px) {
  .nd-latest-videos { margin-top: 40px; padding-bottom: 20px; }
  .nd-video-heading { margin-bottom: 14px; }
  .nd-video-heading > a { font-size: 12px; }
  .nd-video-track { grid-auto-columns: min(78vw, 280px); gap: 12px; padding-right: 24px; }
  .nd-video-card > a { min-height: 410px; }
  .nd-video-nav { display: none; }
  .nd-video-copy { right: 16px; bottom: 57px; left: 16px; }
  .nd-video-duration { left: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .nd-video-track { scroll-behavior: auto; }
  .nd-video-card img { transition: none; }
}
