main.newsInnerPage {
  padding-top: clamp(16px, 2.6vw, 32px);
  margin-bottom: 64px;
}
main.newsInnerPage article.newsInner {
  padding: 0 10px;
}
main.newsInnerPage article.newsInner .mainpic {
  width: 100%;
  height: auto;
  margin-bottom: 18px;
  border-radius: 10px;
}
main.newsInnerPage article.newsInner .titleNdate {
  margin-bottom: 16px;
}
main.newsInnerPage article.newsInner .titleNdate h1.title {
  margin: 0 0 8px;
  color: #000;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.32;
  text-wrap: auto;
}
main.newsInnerPage article.newsInner .titleNdate .dateHolder {
  display: none;
  align-items: center;
  grid-template-columns: 38px 1fr;
  gap: 14px;
}
main.newsInnerPage article.newsInner .titleNdate .dateHolder span.icon.calendar {
  display: block;
  width: 38px;
  height: 38px;
  background: url("/assets/i/sprite.svg?v1") -123px -156px no-repeat;
}
@media (min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) {
  main.newsInnerPage article.newsInner .titleNdate .dateHolder span.icon.calendar {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
main.newsInnerPage article.newsInner .titleNdate .dateHolder span.date {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
main.newsInnerPage article.newsInner .content {
  color: #000;
  font-size: clamp(1rem, 0.918rem + 0.272vw, 1.125rem);
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 24px;
}
main.newsInnerPage article.newsInner .content P {
  margin: 0 0 11px;
}
main.newsInnerPage article.newsInner .dateAtheEnd {
  display: grid;
  align-items: center;
  grid-template-columns: 23px 1fr;
  gap: 8px;
}
main.newsInnerPage article.newsInner .dateAtheEnd span.icon.calendar {
  display: block;
  width: 23px;
  height: 23px;
  background: url("/assets/i/sprite.svg?v1") -161px -156px no-repeat;
}
@media (min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) {
  main.newsInnerPage article.newsInner .dateAtheEnd span.icon.calendar {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
main.newsInnerPage article.newsInner .dateAtheEnd span.date {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
main.newsInnerPage section.otherNews {
  display: none;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 80px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}
.gallery .gallery-main {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
.gallery .gallery-main .swiper-slide IMG {
  max-width: 100%;
  height: auto;
  display: block;
}
.gallery .gallery-main .swiper-button-prev,
.gallery .gallery-main .swiper-button-next {
  color: white;
  width: clamp(24px, 4vw, 48px);
  height: clamp(24px, 4vw, 48px);
}
.gallery .gallery-main .swiper-button-prev::after,
.gallery .gallery-main .swiper-button-next::after {
  font-size: clamp(16px, 3vw, 28px);
}
.gallery .gallery-thumbs {
  overflow: hidden;
  min-height: 0;
}
.gallery .gallery-thumbs .swiper-wrapper {
  height: auto;
}
.gallery .gallery-thumbs .swiper-slide {
  width: clamp(60px, 15vw, 100px);
  height: auto;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s;
}
.gallery .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.gallery .gallery-thumbs .swiper-slide IMG {
  width: 100%;
  height: auto;
  aspect-ratio: 62/35;
  object-fit: cover;
}

@media (min-width: 900px) {
  .gallery {
    flex-direction: row;
    gap: 16px;
  }
  .gallery .gallery-main {
    flex: 1;
  }
  .gallery .gallery-thumbs {
    width: clamp(160px, 20vw, 248px);
    flex-shrink: 0;
  }
  .gallery .gallery-thumbs .swiper-slide {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 900px) {
  main.newsInnerPage {
    margin-bottom: 30px;
  }
  main.newsInnerPage article.newsInner {
    padding: 0;
  }
  main.newsInnerPage article.newsInner .mainpic {
    margin-bottom: 48px;
    border-radius: 20px;
  }
  main.newsInnerPage article.newsInner .titleNdate {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
  main.newsInnerPage article.newsInner .titleNdate h1.title {
    margin: 0 0 16px;
    font-size: 40px;
    line-height: 1.2;
  }
  main.newsInnerPage article.newsInner .titleNdate .dateHolder {
    display: flex;
  }
  main.newsInnerPage article.newsInner .content {
    margin-bottom: 20px;
  }
  main.newsInnerPage article.newsInner .content P {
    margin: 0 0 19px;
  }
  main.newsInnerPage article.newsInner .dateAtheEnd {
    display: none;
  }
  main.newsInnerPage section.otherNews {
    display: block;
  }
  main.newsInnerPage section.otherNews section.newsList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem {
    display: flex;
    flex-direction: column;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem .pic {
    position: relative;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem .pic IMG {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem .pic span.icon.play {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: url("/assets/i/sprite.svg?v1") -123px -94px no-repeat;
  }
}
@media (min-width: 900px) and (min-resolution: 2dppx), (min-width: 900px) and (-webkit-min-device-pixel-ratio: 2) {
  main.newsInnerPage section.otherNews section.newsList article.newsItem .pic span.icon.play {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
@media (min-width: 900px) {
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 17px 14px 10px 14px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #BCF0ED;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc a.title {
    flex: 1;
    display: block;
    margin-bottom: 8px;
    color: black;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 300;
    font-style: italic;
    text-transform: none;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc .desc {
    display: none;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc .dateNarr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: none;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder {
    display: grid;
    align-items: center;
    grid-template-columns: 23px 1fr;
    gap: 8px;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder span.icon.calendar {
    display: block;
    width: 23px;
    height: 23px;
    background: url("/assets/i/sprite.svg?v1") -161px -156px no-repeat;
  }
}
@media (min-width: 900px) and (min-resolution: 2dppx), (min-width: 900px) and (-webkit-min-device-pixel-ratio: 2) {
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder span.icon.calendar {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
@media (min-width: 900px) {
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder span.date {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc .dateNarr span.icon.arr {
    display: block;
    width: 24px;
    height: 24px;
    background: url("/assets/i/sprite.svg?v1") -202px -156px no-repeat;
  }
}
@media (min-width: 900px) and (min-resolution: 2dppx), (min-width: 900px) and (-webkit-min-device-pixel-ratio: 2) {
  main.newsInnerPage section.otherNews section.newsList article.newsItem .titleNdesc .dateNarr span.icon.arr {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}