.news-detail .top {
  display: flex;
  grid-gap: 30px;
  margin-bottom: 80px;
}
.news-detail .top__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.news-detail .top__sections {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
  z-index: 15;
}
.news-detail .top__sections .section-item {
  padding: 5px 14px;
  color: var(--card);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.8px;
  border-radius: 25px;
  background: var(--primary);
  border: 1px solid var(--primary);
  transition: background 0.3s, border 0.3s, color 0.3s ease;
}
.news-detail .top__sections .section-item:hover {
  background: var(--card);
  color: var(--main-text);
}
.news-detail .top__date {
  color: var(--hover);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
}
.news-detail .top__left {
  width: 50%;
  flex-grow: 1;
}
.news-detail .top__right {
  width: 50%;
}
.news-detail .top__right img {
  border-radius: 15px;
  display: block;
  object-fit: contain;
  display: block;
  height: max-content;
  position: sticky;
  max-width: 100%;
  top: 30px;
}
.news-detail__video {
  margin-bottom: 80px;
}
.news-detail__video .video-item {
  position: relative;
  padding-top: 55%;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
.news-detail__video .video-item__poster {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.news-detail__video .video-item__play {
  width: 120px;
  height: 120px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.news-detail__video .video-item__play svg {
  width: 100%;
  height: 100%;
}
.news-detail__video .video-item__play svg path {
  transition: fill 0.3s ease;
}
.news-detail__video .video-item:hover .video-item__play svg path {
  fill: var(--primary);
}

@media (max-width: 991px) {
  .news-detail .top {
    flex-direction: column-reverse;
    grid-gap: 0px;
    margin-bottom: 40px;
  }
  .news-detail .top__info {
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .news-detail .top__sections {
    width: 100%;
    margin-bottom: 15px;
  }
  .news-detail .top__left {
    width: 100%;
    margin-top: 30px;
  }
  .news-detail .top__right {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .news-detail__video .video-item__play {
    width: 60px;
    height: 60px;
  }
}