.news-page {
  padding-top: 12px;
}
.news-page__breadcrumbs {
  color: var(--black, #171717);
  font-family: "Accuratist", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid var(--red, #670c09);
  display: flex;
  align-items: center;
  row-gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}
.news-page__breadcrumbs-wrapper {
  display: flex;
}
.news-page__breadcrumbs-wrapper .current {
  color: var(--red, #670c09);
}
.news-page__breadcrumbs-categori.tag-data-page {
  margin-right: 16px;
}
.news-page__breadcrumbs-categori {
  padding-left: 20px;
  position: relative;
}
.news-page__breadcrumbs-categori::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #670c09);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.news-page__breadcrumbs-tag {
  color: var(--red, #670c09);
}
.news-page__breadcrumbs-button {
  color: var(--black, #171717);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding-right: 28px;
  position: relative;
  margin-left: auto;
}
.news-page__breadcrumbs-button::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../images/calendar-check.svg);
  background-repeat: no-repeat;
}
.news-page__main-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.news-page__main-item:nth-child(n + 3) {
  display: none;
}
.news-page__main-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.badge {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  gap: 8px;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--red, #670c09);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  text-transform: uppercase;
}
.news-page__main-item-img {
  width: 100%;
  min-height: 343px;
  object-fit: cover;
  object-position: center;
  object-position: center;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.news-page__main-item-text {
  display: flex;
  align-items: center;
  color: var(--black, #171717);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 200% */
  margin-bottom: 8px;
}
.news-page__main-item-time {
  display: flex;
  gap: 4px;
  padding-left: 12px;
  position: relative;
}
.news-page__main-item-time::before {
  content: "/";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #670c09);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.news-page__main-item-author {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 20px;
  position: relative;
}
.news-page__main-item-author span {
  color: var(--red, #670c09);
  text-decoration-line: underline;
}
.news-page__main-item-author::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #670c09);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.news-page__main-item-title {
  font-family: "Accuratist", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 24px; /* 109.091% */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 72px;
  margin-bottom: 8px;
}
.calendar-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease-in-out, visibility 600ms ease-in-out;
  background-color: #fff;
  padding-top: 66px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.calendar-menu.active {
  opacity: 1;
  visibility: visible;
  z-index: 996;
  overflow: scroll;
}
.calendar-menu .news-section__calendar {
  display: flex;
  width: 100%;
  max-width: 352px;
  margin: 0 auto 32px auto;
}
.news-section__calendar-button {
  display: flex;
  padding: 14px 46px 10px 46px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--red, #670c09);
  color: var(--white, #fff);
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0 auto 25px auto;
}

@media screen and (min-width: 768px) {
  .news-page__main-list {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 32px;
  }
  .news-page__main-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 1280px) {
  .news-page {
    padding-top: 0px;
  }
  .news-page__breadcrumbs {
    justify-content: flex-start;
    font-size: 24px;
    font-weight: 400;
    line-height: 26px; /* 108.333% */
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .news-page__breadcrumbs-categori {
    padding-left: 30px;
  }
  .news-page__breadcrumbs-categori::before {
    left: 12px;
  }
  .news-page__main-list {
    flex-direction: row;
    gap: 32px;
    margin-bottom: 64px;
  }
  .news-page__main-item {
    width: calc((100% - 32px) / 2);
  }
  .news-page__main-item-img {
    width: 100%;
    min-height: 502px;
    margin-bottom: 16px;
  }
  .news-page__main-item-text {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .news-page__main-item-title {
    font-size: 28px;
    line-height: 28px; /* 100% */
    max-height: 84px;
    margin: 0;
  }
  .badge {
    padding: 8px 12px;
  }
  .badge span {
    display: inline-block;
  }
  .news-page__breadcrumbs-button {
    display: none;
  }
  .calendar-menu {
    display: none;
  }
  .news-page__main-item .main-info__content-morelink {
    display: none;
  }
}

.news-page__news-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.news-page__news-list-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.news-page__news-list-image {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 343px;
  margin-bottom: 4px;
}
.news-page__news-list-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: center;
  z-index: -2;
}
.news-page__news-list-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(
    180deg,
    rgba(34, 38, 47, 0) 0%,
    rgba(34, 38, 47, 0.78) 58.85%,
    #000 100%
  );
  z-index: -1;
}
.news-page__news-list-title {
  color: var(--black, #171717);
  font-family: "Accuratist", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 24px; /* 109.091% */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 72px;
  margin-bottom: 8px;
}
.news-page__news-list-text {
  display: none;
}
.news-page__news-list-link {
  color: var(--red, #670c09);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 171.429% */
  padding-right: 20px;
  position: relative;
  width: fit-content;
  transition: var(--transition-dur-and-func);
}
.news-page__news-list-link:hover,
.news-page__news-list-link:focus {
  color: var(--black_1, #3a3a39);
}
.news-page__news-list-link::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/red-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.news-page__news-list-link:hover::after,
.news-page__news-list-link:focus:focus {
  background-image: url(../images/gray-arrow.svg);
}
.news-page__side-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .news-page__news-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px 20px;
  }
  .news-page__news-list-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 1280px) {
  .news-page__news-list {
    display: flex;
    flex-direction: column;
    width: calc((100% - 355px) - 32px);
    max-width: 1120px;
    gap: 64px;
    margin-right: auto;
  }
  .news-page__news-list-item {
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    height: 262px;
    margin: 0;
    position: relative;
  }
  .news-page__news-list-image {
    min-height: 100%;
    width: 250px;
    margin: 0 32px 0 0;
  }
  .news-page__news-list-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 250px) - 32px);
  }
  .news-page__news-list-info {
    display: none;
  }
  .news-page__news-list-title {
    font-size: 28px;
    line-height: 28px; /* 100% */
    -webkit-line-clamp: 2;
    max-height: 56px;
  }
  .news-page__news-list-text {
    font-size: 18px;
    line-height: 32px; /* 177.778% */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 96px;
  }
  .news-page__news-list-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 16px;
  }
  .news-page__news-list-link::after {
    display: none;
  }
  .news-page__news-list-link span {
    width: 60px;
    height: 44px;
    border-radius: 4px;
    background: var(--red, #670c09);
    position: relative;
    transition: var(--transition-dur-and-func);
  }
  .news-page__news-list-link:hover span,
  .news-page__news-list-link:focus span {
    background: var(--black_1, #3a3a39);
  }
  .news-page__news-list-link span::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/forward-arrow.svg);
    background-repeat: no-repeat;
  }
  .news-page .container {
    display: flex;
    flex-wrap: wrap;
  }
  .news-page__side-wrapper {
    order: 2;
    margin-top: 0;
    margin-bottom: 0;
  }
  .news-page__side-wrapper.tag-data-page {
    margin-top: -86px;
  }
}

.news-page__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 24px;
  border-top: 0.5px solid var(--red, #670c09);
  margin-top: 32px;
}

.news-page__pagination-fraction {
  color: var(--black, #171717);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
}

.news-page__pagination-fraction .news-page__pagination-fraction-current {
  color: var(--red, #670c09);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
}

.news-page__pagination-buttons {
  display: flex;
  align-items: center;
  gap: 38px;
}

.news-page__pagination-btn {
  color: var(--red, #670c09);
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  width: fit-content;
}

.news-page__pagination-btn-arrow {
  border-radius: 50%;
  border: 1px solid var(--red, #670c09);
  width: 40px;
  height: 40px;
  background-image: url(../images/red-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center center;
  transform: rotate(-180deg);
}

.news-page__pagination-btn.news-page__pagination-btn-next
  .news-page__pagination-btn-arrow {
  transform: rotate(0);
}

@media screen and (min-width: 1280px) {
  .news-page__pagination {
    margin-top: 64px;
    padding-top: 40px;
  }
  .news-page .news-section__calendar-head {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 24px;
  }
}
