main.newsPage {
  padding-top: clamp(16px, 2.6vw, 32px);
  margin-bottom: clamp(4rem, 7.89vw + 0rem, 6rem);
}
main.newsPage section.newsList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 10px;
  margin-bottom: clamp(2rem, 3.9vw + 0rem, 3rem);
}
main.newsPage section.newsList article.newsItem .pic {
  position: relative;
}
main.newsPage section.newsList article.newsItem .pic IMG {
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
main.newsPage 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-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) {
  main.newsPage section.newsList article.newsItem .pic span.icon.play {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
main.newsPage section.newsList article.newsItem .titleNdesc {
  padding: 20px 20px 20px 23px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #BCF0ED;
}
main.newsPage section.newsList article.newsItem .titleNdesc a.title {
  display: block;
  margin-bottom: 8px;
  color: black;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.712rem + 0.543vw, 1.125rem);
  line-height: 1.45;
  font-weight: 500;
  text-transform: uppercase;
}
main.newsPage section.newsList article.newsItem .titleNdesc .desc {
  display: block;
  margin-bottom: 11px;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.45;
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: solid 1px black;
  padding-top: 12px;
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder {
  display: grid;
  align-items: center;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder span.icon.calendar {
  display: block;
  width: 18px;
  height: 18px;
  background: url("/assets/i/sprite.svg?v1") -184px -156px no-repeat;
}
@media (min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) {
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder span.icon.calendar {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder span.date {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr span.icon.arr {
  display: block;
  width: 15px;
  height: 15px;
  background: url("/assets/i/sprite.svg?v1") -187px -192px no-repeat;
}
@media (min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) {
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr span.icon.arr {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}

@media (min-width: 768px) {
  main.newsPage section.newsList {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  main.newsPage section.newsList article.newsItem {
    display: flex;
    flex-direction: column;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 18px 16px 18px;
    transition: all 0.2s linear;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc a.title {
    flex: 1;
    line-height: 1.35;
    margin-bottom: 4px;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc div.desc {
    display: none;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr {
    border-top: none;
    padding-top: 0;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder {
    grid-template-columns: 23px 1fr;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder span.icon.calendar {
    width: 23px;
    height: 23px;
    background-position: -161px -156px;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateHolder span.date {
    font-size: 14px;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr span.icon.arr {
    width: 18px;
    height: 18px;
    background: url("/assets/i/sprite.svg?v1") -184px -174px no-repeat;
  }
}
@media (min-width: 768px) and (min-resolution: 2dppx), (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr span.icon.arr {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
@media (min-width: 768px) {
  main.newsPage section.newsList article.newsItem:HOVER .titleNdesc {
    background-color: #9CE5E1;
  }
}
@media (min-width: 1024px) {
  main.newsPage section.newsList {
    grid-template-columns: repeat(3, 1fr);
  }
  main.newsPage section.newsList article.newsItem:first-child {
    display: grid;
    grid-template-columns: 785fr 555fr;
    gap: 20px;
    grid-column: 1/4;
    grid-row: 1/2;
  }
  main.newsPage section.newsList article.newsItem:first-child .pic IMG {
    border-radius: 20px;
  }
  main.newsPage section.newsList article.newsItem:first-child .pic span.icon.play {
    width: 123px;
    height: 123px;
    background-position: 0 -94px;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 34px 27px 27px 27px;
    border-radius: 20px;
    aspect-ratio: 111/100;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc a.title {
    flex: auto;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.45;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc .desc {
    display: block;
    height: calc(100% - 20px);
    overflow: hidden;
    margin-bottom: 20px;
    flex: 1;
    font-size: 18px;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc .desc P {
    margin: 0 0 16px;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc .dateNarr {
    border-top: solid 1px black;
    padding-top: 22px;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc .dateNarr .dateHolder {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc .dateNarr .dateHolder span.icon.calendar {
    width: 38px;
    height: 38px;
    background-position: -123px -156px;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc .dateNarr .dateHolder span.date {
    font-size: 18px;
  }
}
@media (min-width: 1216px) {
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc {
    padding: 40px 36px 36px 36px;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc a.title {
    margin-bottom: 32px;
  }
  main.newsPage section.newsList article.newsItem:first-child .titleNdesc .desc P {
    margin-bottom: 24px;
  }
}