body.overview-page {
  background: #252626;
}

.overview-shell {
  background: #252626;
}

.overview-main {
  display: grid;
  gap: 28px;
  padding: 22px 20px 40px;
  background: #252626;
  color: #fff;
}

.overview-video__stage {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #181818;
}

.overview-video__stage img {
  width: 100%;
  aspect-ratio: 335 / 210;
  object-fit: cover;
  object-position: center 34%;
}

.overview-video__shade {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0) 0%, rgba(14, 14, 14, 0.64) 100%);
}

.overview-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(28, 28, 28, 0.52);
  transform: translate(-50%, -50%);
}

.overview-video__play::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 13px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.overview-video__actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.overview-video__actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 114px;
  min-height: 42px;
  padding: 0 16px;
  border: 1.5px solid #fff;
  border-radius: 6px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
}

.overview-video__actions span + span {
  border-color: #fff;
  background: #fff;
  color: #252525;
}

.overview-story h1 {
  color: #fff;
  font-size: 24px;
  line-height: 1.42;
  font-weight: 700;
}

.overview-story p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  line-height: 1.58;
  font-weight: 600;
}

.overview-gallery {
  display: grid;
  grid-template-columns: 1fr 0.97fr;
  gap: 10px;
  margin-top: 24px;
}

.overview-gallery img {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #353535;
  object-fit: cover;
}

.overview-gallery__large {
  grid-row: span 2;
  height: 212px;
}

.overview-gallery img:not(.overview-gallery__large) {
  height: 101px;
}

.overview-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 25px 0 0 135px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}

.overview-more::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.overview-banner {
  margin-top: 1px;
}

.overview-banner a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #dcebf2;
}

.overview-banner img {
  width: 100%;
  aspect-ratio: 335 / 160;
  object-fit: cover;
}

@media (max-width: 359px) {
  .overview-main {
    padding: 18px 16px 34px;
    gap: 24px;
  }

  .overview-video__actions {
    bottom: 12px;
    gap: 12px;
  }

  .overview-video__actions span {
    min-width: 102px;
    min-height: 38px;
    font-size: 15px;
  }

  .overview-story h1 {
    font-size: 22px;
  }

  .overview-story p {
    font-size: 16px;
  }

  .overview-more {
    margin-left: 116px;
    font-size: 18px;
  }
}
