.section-production__header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-production .section__title {
  margin-top: 0;
}

.section-production__description {
  color: #777e89;
  font-size: 16px;
  line-height: 1.6;
}

.section-production__description > :last-child,
.section-production__advantage-text > :last-child {
  margin-bottom: 0;
}

.section-production__media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #1b1e25;
}

.section-production__video {
  position: relative;
  aspect-ratio: 16 / 9;
}

.section-production__video::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(27, 30, 37, 0.78));
  content: "";
  pointer-events: none;
}

.section-production__video iframe,
.section-production__video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.section-production__background-video {
  background: #1b1e25;
}

.section-production__video .wp-video,
.section-production__video .mejs-container,
.section-production__video .mejs-inner,
.section-production__video .mejs-mediaelement {
  width: 100% !important;
  height: 100% !important;
}

.section-production__advantages {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.section-production__advantage {
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: #fff;
  background: rgba(27, 30, 37, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.section-production__advantage-title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.section-production__advantage-text {
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .section-production__header {
    margin-bottom: 20px;
    text-align: left;
  }

  .section-production__description {
    font-size: 14px;
  }

  .section-production__media {
    overflow: visible;
    border-radius: 14px;
    background: transparent;
  }

  .section-production__video {
    overflow: hidden;
    border-radius: 14px;
    background: #1b1e25;
  }

  .section-production__video::after {
    display: none;
  }

  .section-production__advantages {
    position: static;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }
  .section-production__advantage-text {
    font-size: 14px;
  }

  .section-production__advantage {
    min-height: 0;
    border-color: #e9f2bb;
    color: #1b1e25;
    background: #f8fbea;
  }
}
