main.simplePageContainer {
  margin-bottom: 0;
}
main.simplePageContainer article.simplePage h1.title {
  margin-bottom: 24px;
}

.navHolder {
  max-width: 522px;
  display: grid;
  align-items: center;
  grid-template-columns: 52px 1fr 52px;
  gap: 6px;
  padding: 0 25px;
  margin-bottom: 48px;
}
.navHolder span.pattern {
  display: block;
  width: 52px;
  height: 30px;
  background: url("/assets/i/sprite.svg?v1") 0 -451px no-repeat;
}
@media (min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) {
  .navHolder span.pattern {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
.navHolder span.pattern.right {
  background-position: -53px -451px;
}
.navHolder nav A {
  display: block;
  margin-right: 8px;
  padding: 8px 16px 5px;
  border: solid 1px black;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  border-radius: 60px;
  text-align: center;
}
.navHolder nav A:last-child {
  margin-right: 0;
}
.navHolder nav A.selected {
  background-color: #BCF0ED;
}
.navHolder.eventTypes span.pattern {
  background-position: 0 -552px;
}
.navHolder.eventTypes span.pattern.right {
  background-position: 0 -552px;
  transform: rotate(180deg);
}
.navHolder.eventTypes nav A.selected {
  background-color: #BCF0BD;
}

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 p.noResults {
  grid-column: 1/-1;
  text-align: center;
  padding: 2em 0;
}
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 .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 h3.title {
  display: block;
  margin-bottom: 8px;
  color: black;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.712rem + 0.543vw, 1.125rem);
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateNcal {
  display: grid;
  align-items: center;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateNcal 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 .dateNcal span.icon.calendar {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateNcal .dateNtime {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateNcal .dateNtime span.date {
  font-weight: 600;
}
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");
  }
}

.cardPopup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.23);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cardPopup.active {
  opacity: 1;
  visibility: visible;
}
.cardPopup .popupContent {
  position: relative;
  max-width: 772px;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  background-color: white;
  border-radius: 20px;
}
.cardPopup .popupContent button.close {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 24px;
  right: 24px;
  background: url(/assets/i/sprite.svg) -271px -222px no-repeat;
  cursor: pointer;
  border: 0;
}
.cardPopup .popupContent img {
  display: block;
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.cardPopup .popupContent .texts {
  height: 100%;
  padding: 24px clamp(24px, 2.6vw, 32px);
  overflow-y: auto;
}
.cardPopup .popupContent .texts > h3.title {
  font-size: clamp(0.875rem, 0.712rem + 0.543vw, 1.125rem);
  font-weight: 500;
  margin-bottom: 24px;
  padding-right: 32px;
  line-height: 1.2;
  text-transform: uppercase;
}
.cardPopup .popupContent .texts .txt {
  margin-bottom: clamp(20px, 3.3vw, 40px);
  font-size: clamp(0.875rem, 0.786rem + 0.238vw, 1rem);
  line-height: 1.35;
}
.cardPopup .popupContent .texts .location {
  margin-bottom: clamp(20px, 3.3vw, 40px);
  font-size: clamp(0.875rem, 0.786rem + 0.238vw, 1rem);
  line-height: 1.35;
}
.cardPopup .popupContent .texts .location .place {
  font-weight: 500;
}
.cardPopup .popupContent .texts .location address {
  font-style: normal;
}
.cardPopup .popupContent .texts .dateTimeHolder {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}
.cardPopup .popupContent .texts .dateTimeHolder 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) {
  .cardPopup .popupContent .texts .dateTimeHolder span.icon.calendar {
    background-image: url("/assets/i/sprite.svg?v1");
  }
}
.cardPopup .popupContent .texts .dateTimeHolder time.dateNtime {
  font-size: clamp(0.875rem, 0.786rem + 0.238vw, 1rem);
  text-transform: uppercase;
}
.cardPopup .popupContent .texts .dateTimeHolder time.dateNtime span.date {
  font-weight: 500;
}
@media (min-width: 1024px) {
  .cardPopup .popupContent .texts .dateTimeHolder {
    grid-template-columns: 23px 1fr;
  }
  .cardPopup .popupContent .texts .dateTimeHolder span.icon.calendar {
    width: 23px;
    height: 23px;
    background-position: -161px -156px;
  }
}
.cardPopup .popupContent .texts::-webkit-scrollbar-track {
  background-color: transparent;
  border-right: 3px solid #D9D9D9;
}
.cardPopup .popupContent .texts::-webkit-scrollbar {
  width: 7px;
  background-color: transparent;
}
.cardPopup .popupContent .texts::-webkit-scrollbar-thumb {
  background-color: #D9D9D9;
}

@media (min-width: 768px) {
  .navHolder {
    max-width: 1127px;
    grid-template-columns: 110px 1fr 110px;
    gap: 20px;
    margin-bottom: 60px;
  }
  .navHolder span.pattern {
    width: 110px;
    height: 61px;
    background-position: 0 -389px;
  }
  .navHolder span.pattern.right {
    background-position: -111px -389px;
  }
  .navHolder nav A {
    margin-right: 20px;
    padding: 17px 48px;
    border-width: 2px;
    font-size: 1.625rem;
    transition: all 0.2s linear;
  }
  .navHolder nav A:HOVER {
    background-color: #BCF0ED;
  }
  .navHolder.eventTypes span.pattern {
    width: 120px;
    height: 67px;
    background-position: 0 -483px;
  }
  .navHolder.eventTypes span.pattern.right {
    background-position: 0 -483px;
    transform: rotate(180deg);
  }
  .navHolder.eventTypes nav A:HOVER {
    background-color: #BCF0BD;
  }
  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 h3.title {
    flex: 1;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateNcal {
    grid-template-columns: 23px 1fr;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateNcal span.icon.calendar {
    width: 23px;
    height: 23px;
    background-position: -161px -156px;
  }
  main.newsPage section.newsList article.newsItem .titleNdesc .dateNarr .dateNcal .dateNtime {
    font-size: 1rem;
  }
  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);
  }
}