html {
  scroll-behavior: smooth;
}

:root {
  --red: #670c09;
  --red_1: #7c2d2a;
  --black: #171717;
  --black_1: #3a3a39;
  --white: #f7f4ef;
  --grey: #c3c3c3;

  --transition-dur-and-func: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: "Accuratist";
  src: url("../fonts/accuratist/Accuratist/Accuratist.woff") format("woff2"),
    url("../fonts/accuratist/Accuratist/Accuratist.woff") format("woff"),
    url("../fonts/accuratist/Accuratist//Accuratist.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-VariableFont_wght.ttf") format("woff2"),
    url("../fonts/Manrope/Manrope-VariableFont_wght.woff") format("woff"),
    url("../fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  color: var(--black, #171717);
  font-style: normal;
  font-family: "Manrope", sans-serif;
}

html,
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

main,
footer {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a,
button {
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  padding: 0;
}

img {
  padding: 0;
  margin: 0;
}

.hidden-element {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.icon use {
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  min-width: 320px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: auto;
  margin-right: auto;
}

/* MOBILE */
@media screen and (min-width: 375px) {
  .container {
    min-width: 375px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* TABLET */
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* DESKTOP */
@media screen and (min-width: 1280px) {
  .container {
    width: 100%;
    min-width: 1280px;
    max-width: 1440px;
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* FULL */
@media screen and (min-width: 1920px) {
  .container {
    width: 1920px;
    min-width: 1920px;
    max-width: 1920px;
    padding-left: 208px;
    padding-right: 208px;
  }
}

/* header */
.header {
  position: relative;
  z-index: 999;
  background: #fff;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .header__top {
  display: none;
}

.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 8px; */
}

.container:has(.header__top-wrapper) {
  background: #f9f9f9;
  padding-top: 8px;
  padding-bottom: 8px;
}

.header__top-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.header__top-link {
  color: var(--grey, #838383);
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
}

/* .header__top-btn {
  display: inline-flex;
  padding: 4px 12px 4px 36px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--blue, #003f53);
  color: var(--white, #fff);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  position: relative;
}

.header__top-btn::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 8px;
  left: 16px;
  background-image: url(../images/patreon-logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
} */

.header .header__main {
  padding: 8px 0;
  /* border-bottom: 0.5px solid var(--red, #670c09); */
  background: #fff;
}

.header__main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__main-logo {
  display: inline-block;
  width: 114px;
  height: auto;
  margin-right: auto;
}

.header__main-logo img {
  width: 100%;
}

.header__main .burger-btn {
  display: block;
}

.header__main .header__main-nav {
  display: none;
}

.header__main-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.header__main-list .header__main-item {
  color: var(--black, #171717);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px; /* 150% */
  text-transform: capitalize;
  padding-left: 26px;
}

.container.burger-container .header__main-nav {
  padding-top: 32px;
  border-top: 0.5px solid var(--red, #670c09);
}

.burger-menu .header__main-list .header__main-item {
  padding-left: 26px;
  padding-right: 26px;
}

.burger-menu .header__top-wrapper {
  align-items: flex-start;
}

.header__main-list .header__main-item.active,
.header__main-list .header__main-item.current-menu-item,
.header__main-list .header__main-item.current_page_item,
.header__main-list .header__main-item:has(a[aria-current="page"]) {
  color: var(--red, #670c09);
  position: relative;
}

.header__main-list .header__main-item.active::before,
.header__main-list .header__main-item.current-menu-item::before,
.header__main-list .header__main-item.current_page_item::before,
.header__main-list .header__main-item:has(a[aria-current="page"])::before {
  position: absolute;
  content: "";
  width: 17.908px;
  height: 17.908px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/red-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.header__main-link {
  white-space: nowrap;
}

.header__main .search-form {
  display: none;
}

.search-form {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 352px;
  gap: 8px;
  position: relative;
  margin-bottom: 32px;
}

.search-form .search-form-btn {
  border-radius: 4px;
  width: 60px;
  height: 44px;
  background-color: var(--red, #670c09);
  background-image: url(../images/forward-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center center;
  transition: var(--transition-dur-and-func);
}
.search-form .search-form-btn:hover,
.search-form .search-form-btn:focus {
  background-color: var(--black_1, #3a3a39);
}

.search-form-input {
  flex-grow: 1;
  padding: 10px 14px 10px 42px;
  border-radius: 4px;
  border: 1px solid var(--grey, #c3c3c3);
  background: transparent;
  color: var(--blue, #003f53);
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: capitalize;
}

.search-form-input::placeholder {
  opacity: 0.5;
}

.search-form::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  background-image: url(../images/search-lg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.burger-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;
}

.burger-menu.active {
  opacity: 1;
  visibility: visible;
  z-index: 998;
  overflow: scroll;
}

.burger-icon path {
  transition: var(--transition-dur-and-func);
}

.burger-icon.active #line0 {
  opacity: 0;
}

.burger-icon.active #line1 {
  transform: rotate(45deg) translate(-0.5px, 7px);
  transform-origin: center;
}

.burger-icon.active #line2 {
  transform: rotate(-45deg) translate(0.5px, -7.5px);
  transform-origin: center;
}

.burger-menu__inner {
  margin-bottom: 8px;
}

.burger-menu__inner .container {
  border-top: 0.5px solid var(--red, #670c09);
}

.burger-menu__social-list {
  padding: 12px 72px 8px;
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.burger-menu__social-link {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-menu__social-link a,
.burger-menu__social-link img,
.burger-menu__social-link .icon {
  width: 20px;
  height: 20px;
}

.burger-menu__social-list.fixed {
  display: none;
}

@media screen and (min-width: 768px) {
  .burger-menu.active .container.burger-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .burger-menu.active .container.burger-container .header__main-nav {
    flex-grow: 1;
  }
  .burger-menu.active .container.burger-container form {
    margin: 0;
    padding-top: 32px;
    border-top: 0.5px solid var(--red, #670c09);
  }
  .burger-menu.active .search-form::before {
    top: calc(50% + 16px);
  }
  .burger-menu.active .burger-menu__social-list {
    justify-content: flex-end;
    padding: 12px 0 8px 0;
  }
}

.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;
}

@media screen and (min-width: 1280px) {
  .header .header__top {
    display: block;
    border-bottom: 1px solid var(--grey, #c3c3c3);
    background: #f9f9f9;
  }
  .header__top .container {
    margin: 0 auto;
  }
  .header__top-wrapper {
    flex-direction: row;
    gap: 102px;
  }
  .header .header__main {
    padding: 36px 0;
    border-bottom: none;
  }
  .header__main .container {
    gap: 24px;
  }
  .header__main-logo {
    width: 182px;
  }
  .header__main .burger-btn {
    display: none;
  }
  .header__main .header__main-nav {
    display: block;
  }
  .header__main-list {
    flex-direction: row;
    gap: 18px;
    margin-bottom: 0;
  }
  .header__main-list .header__main-item {
    font-size: 14px;
    line-height: 1.7;
  }
  .header__main .search-form {
    display: flex;
    max-width: 300px;
    margin: 0;
  }
  .burger-menu {
    display: none;
  }
  .burger-menu__social-list.fixed {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 24px;
    padding: 16px 12px;
    background: var(--grey, #c3c3c3);
    border-radius: 4px 0px 0px 4px;
    position: fixed;
    top: 50vh;
    transform: translateY(-50%);
    right: 0;
    z-index: 1000;
  }
  .burger-menu__social-link {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .header__main .container {
    gap: 48px;
  }
}

@media screen and (min-width: 1920px) {
  .header__main-list {
    flex-direction: row;
    gap: 48px;
  }
  .search-form {
    max-width: 352px;
  }
  .burger-menu__social-list.fixed {
    padding: 16px 20px;
  }
}

/* general */
.section-title {
  position: relative;
  padding: 0 0 0 20px;
}
.latest__side-title.section-title {
  padding: 0 0 8px 20px;
  border-bottom: 0.5px solid var(--red, #670c09);
}
.section-title h2 {
  color: var(--black, #171717);
  font-family: "Accuratist", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.94px; /* 133% */
  text-transform: uppercase;
}
.latest__side-title.section-title h2 {
  font-size: 16px;
  line-height: 24px; /* 150% */
}
.section-title::before {
  position: absolute;
  left: 6px;
  top: calc(50% - 4px);
  transform: translateY(-50%);
  content: "/";
  color: var(--red, #670c09);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23.94px; /* 133% */
  text-transform: uppercase;
}
.section-link {
  display: flex;
  width: 100%;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 6px;
  background: var(--red, #670c09);

  color: var(--white, #f7f4ef);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.98px; /* 111% */
  text-transform: uppercase;

  transition: var(--transition-dur-and-func);
}
.section-link:hover,
.section-link:focus {
  background: var(--black_1, #3a3a39);
}
@media screen and (min-width: 768px) {
  .section-title h2 {
    font-size: 20px;
    line-height: 20px; /* 100% */
  }
  .latest__side-title.section-title h2 {
    font-size: 16px;
    line-height: 24px; /* 150% */
  }
}
@media screen and (min-width: 1280px) {
  .section-title h2 {
    font-size: 24px;
    line-height: 24px; /* 100% */
  }
  .latest__side-title.section-title h2 {
    font-size: 20px;
    line-height: 24px; /* 120% */
  }
}

/* latest */
.latest {
  padding: 16px 0;
}
.latest .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.latest__side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.latest__side-list {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  gap: 12px;
}
.latest__list-item:nth-child(n + 6) {
  display: none;
}
.latest__list-item {
  display: flex;
  padding-bottom: 13px;
  border-bottom: 0.5px solid var(--grey, #c3c3c3);
}
.latest__list-item-image {
  display: none;
}
.latest__list-item-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 9.8px;
}
.latest__list-item-text {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px; /* 125% */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 60px;
}
.latest__list-item-data {
  display: flex;
  align-items: center;
}
.latest__data-tag {
  display: none;
}
.latest__data-time span {
  display: none;
}
.latest__data-time span.time {
  display: inline-flex;
  width: 40px;
  flex-shrink: 0;
  color: var(--red, #670c09);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.pinned .latest__list-item-content > p > a {
  display: block;
  text-indent: 18px;
}
.pinned .latest__list-item-content {
  position: relative;
}
.pinned .latest__list-item-content::before {
  position: absolute;
  content: "";
  top: 1px;
  left: -3px;
  width: 18px;
  height: 18px;
  background-image: url(../images/red-pin.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.latest__slider {
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--red, #670c09);
  width: 100%;
  margin: 0 auto;
}
.swiper {
  height: 100%;
}
.latest__slider-list {
  width: 100%;
  min-height: 313px;
  aspect-ratio: 343/313;
}
.latest__slider-item {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  padding: 144px 16px 97px 16px;
  position: relative;
  border-radius: 4px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
}
.latest__slider-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: center;
  z-index: -2;
}
.latest__slider-item::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;
}
.latest__slider-item::after {
  position: absolute;
  content: "";
  width: calc(100% - (16px * 2));
  height: 1px;
  bottom: 72.5px;
  right: 16px;
  background-color: #fff;
}
.latest__slider-title {
  color: var(--white, #f7f4ef);
  font-family: "Accuratist", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 72px;
}
.latest__slider-text {
  display: none;
}
.latest__slider-content {
  display: none;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}
.latest__swiper-btn.swiper-button-next,
.latest__swiper-btn.swiper-button-prev {
  color: #fff;
  cursor: pointer;
  position: absolute;
  height: 32px;
  top: calc(100% - 16px);
  z-index: 10;
  transform: translateY(-50%);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  width: fit-content;
}
.latest__btn-arrow {
  border-radius: 50%;
  border: 1px solid var(--red, #670c09);
  width: 32px;
  height: 32px;
  background-image: url(../images/red-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center center;
  background-color: rgba(247, 244, 239, 0.5);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.latest__swiper-btn.swiper-button-next {
  right: 16px;
}
.latest__swiper-btn.swiper-button-prev {
  left: 16px;
}
.latest__swiper-btn.swiper-button-prev .latest__btn-arrow {
  transform: rotate(-180deg);
}
.latest__slider-content {
  display: none;
  align-items: center;
  color: var(--white, #f7f4ef);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.71;
}
.latest__slider-content .latest__slider-tag {
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}
.latest__slider-content .latest__slider-tag::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;
}
.latest__slider-time {
  display: flex;
  gap: 8px;
  padding: 0 16px;
  position: relative;
}
.latest__slider-time::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/gray-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.latest__slider-time::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/gray-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.latest__slider-author {
  display: flex;
  gap: 8px;
  padding-left: 20px;
  position: relative;
}
.latest__slider-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;
}
.latest__slider-photo {
  display: flex;
  gap: 8px;
  padding-left: 20px;
  position: relative;
}
.latest__slider-photo::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;
}

@media screen and (min-width: 460px) {
  .latest__slider-title {
    color: var(--white, #f7f4ef);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 144px;
    margin: 0 0 8px 0;
  }
}

@media screen and (min-width: 768px) {
  .latest {
    padding: 20px 0 16px;
  }
  .latest .container {
    gap: 48px;
  }
  .latest__slider-item {
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .latest__slider-title {
    color: var(--white, #f7f4ef);
    font-size: 36px;
    font-weight: 400;
    line-height: 40px; /* 111.111% */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 173px;
  }
  .latest__slider-text {
    display: block;
    color: var(--white, #f7f4ef);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.46;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 53px;
  }
  .latest__slider-item::after {
    width: calc(100% - (20px * 2));
    bottom: 80px;
    right: 20px;
  }
  .latest__swiper-btn.swiper-button-prev {
    top: calc(100% - 20px);
  }
  .latest__swiper-btn.swiper-button-next {
    right: 20px;
  }
  .latest__swiper-btn.swiper-button-prev {
    left: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .latest {
    padding: 0 0 12px;
  }
  .latest .container {
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    gap: 32px;
  }
  .latest .container > .latest__side,
  .news-page .container .latest__side,
  .container .latest__side {
    width: 355px;
  }
  .latest .container > .latest__slider {
    width: calc(100% - (32px + 355px));
  }
  .latest__side-list {
    gap: 32px;
  }
  .latest__side-list {
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 632px;
    height: 632px;
    gap: 38px;
  }
  .latest__side-list::-webkit-scrollbar {
    width: 2px;
  }
  .latest__side-list::-webkit-scrollbar-track {
    background: var(--grey, #c3c3c3);
  }
  .latest__side-list::-webkit-scrollbar-thumb {
    background-color: var(--red, #670c09);
  }
  .latest__list-item {
    padding-bottom: 0;
    border-bottom: none;
    gap: 10px;
  }
  .latest__list-item:nth-child(n + 6) {
    display: flex;
  }
  .latest__list-item-image {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
  }
  .latest__list-item-content {
    flex-direction: column;
    align-items: unset;
    gap: 12px;
    width: calc((100% - 96px) - 10px);
  }
  .latest__data-tag {
    display: block;
    color: var(--grey, #c3c3c3);
    font-family: "Accuratist", serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.6;
    text-transform: uppercase;
    padding: 0 16px 0 20px;
    position: relative;
  }
  .latest__data-tag::before {
    content: "/";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red, #670c09);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.33;
  }
  .latest__data-tag::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    background-image: url(../images/gray-dot.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .latest__data-time {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .latest__data-time span,
  .latest__data-time span.time {
    display: block;
    color: var(--grey, #c3c3c3);
    font-size: 10px;
    font-weight: 600;
    line-height: 16px; /* 160% */
  }
  .latest__slider {
    padding-bottom: 56px;
    flex-grow: 1;
  }
  .latest__slider-list {
    width: 100%;
    height: 712px;
    aspect-ratio: unset;
  }
  .latest__slider-item {
    padding: 127px 20px 177px 96px;
  }
  .latest__slider-item::after {
    position: absolute;
    content: "";
    width: calc((100% - 96px) - 96px);
    height: 1px;
    bottom: 144px;
    right: 96px;
    background-color: #fff;
  }
  .latest__slider-title {
    font-size: 50px;
    line-height: 1.12;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: 768px;
    max-height: 224px;
    margin: 48px 0;
  }
  .latest__slider-text {
    display: block;
    color: var(--white, #f7f4ef);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.46;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 768px;
    max-height: 64px;
  }
  .latest__slider-content {
    display: flex;
  }
  .latest__swiper-btn.swiper-button-next,
  .latest__swiper-btn.swiper-button-prev {
    top: calc(100% - 56px);
  }
  .latest__swiper-btn.swiper-button-next {
    right: unset;
    left: 224px;
  }
  .latest__swiper-btn.swiper-button-prev {
    left: 96px;
  }
  .latest__slider-content {
    display: flex;
  }
}

@media screen and (min-width: 1440px) {
  .latest__slider-content {
    font-size: 14px;
  }
}

/* main-info  */
.main-info {
  padding: 0 0 16px;
}
.main-info .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section__content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section__content-title::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #670c09);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.main-info__content-morelink {
  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;
}
.main-info__content-morelink:hover,
.main-info__content-morelink:focus {
  color: var(--black_1, #3a3a39);
}
.main-info__content-morelink::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;
}
.main-info__content-morelink:hover::after,
.main-info__content-morelink:focus:focus {
  background-image: url(../images/gray-arrow.svg);
}
.main-info__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.main-info__list-item:nth-child(n + 4) {
  display: none;
}
.main-info__list-item.swiper-slide {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.main-info__list-image {
  width: 100%;
  min-height: 366px;
  object-fit: cover;
  object-position: center;
  object-position: center;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 8px;
}
.main-info__list-info {
  display: flex;
  align-items: center;
  color: var(--grey, #c3c3c3);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 160% */
  margin-bottom: 8px;
}
.main-info__list-tag {
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
  color: var(--black, #171717);
  font-family: "Accuratist", serif;
  font-weight: 400;
  text-transform: uppercase;
}
.main-info__list-tag::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #670c09);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
}
.main-info__list-time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--grey, #c3c3c3);
  padding-left: 16px;
  position: relative;
}
.main-info__list-time::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/gray-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.main-info__list-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px; /* 120% */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 72px;
}

@media screen and (min-width: 768px) {
  .main-info__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px 20px;
  }
  .main-info__list-item:nth-child(n + 4) {
    display: initial;
  }
  .main-info__list-item:nth-child(n + 5) {
    display: none;
  }
  .main-info__list-item.swiper-slide {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 1280px) {
  .main-info {
    padding: 12px 0 28px;
  }
  .main-info .container {
    flex-direction: row;
  }
  .section__content-head {
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 32px;
  }
  .section__content-title {
    font-size: 24px;
    line-height: 1;
    padding-left: 28px;
  }
  .main-info__content {
    width: 100%;
  }
  .main-info__list {
    flex-wrap: unset;
    gap: unset;
  }
  .main-info__list-item:nth-child(n + 5) {
    display: flex;
  }
  .main-info__list-item {
    max-width: 352px;
    width: calc((100% - (32px * 3)) / 4);
    margin: 0;
  }
  .main-info__list-image {
    width: 100%;
    min-height: 366px;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 16px;
  }
  .main-info__list-info {
    margin-bottom: 16px;
  }
  .main-info__swiper-btn.swiper-button-next-main,
  .main-info__swiper-btn.swiper-button-prev-main,
  .main-info__swiper-btn.swiper-button-next-blogs,
  .main-info__swiper-btn.swiper-button-prev-blogs {
    color: #fff;
    cursor: pointer;
    position: absolute;
    height: 32px;
    top: 180px;
    z-index: 10;
    transform: translateY(-50%);
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    width: fit-content;
  }
  .main-info__btn-arrow {
    border-radius: 50%;
    border: 1px solid var(--red, #670c09);
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url(../images/red-arrow.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center center;
    background-color: rgba(247, 244, 239, 0.5);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  }
  .main-info__swiper-btn.swiper-button-next-main,
  .main-info__swiper-btn.swiper-button-next-blogs {
    right: 24px;
  }
  .main-info__swiper-btn.swiper-button-prev-main,
  .main-info__swiper-btn.swiper-button-prev-blogs {
    left: 24px;
  }
  .main-info__swiper-btn.swiper-button-prev-main .main-info__btn-arrow,
  .main-info__swiper-btn.swiper-button-prev-blogs .main-info__btn-arrow {
    transform: rotate(-180deg);
  }
}

/* announcements */
.announcements {
  padding: 16px 0 32px;
}
.announcements .announcements-content {
  border-top: 0.5px solid var(--red, #670c09);
}
.announcements .section__content-head {
  padding-top: 16px;
}
.announcements-content {
  width: 100%;
}
.announcements-content__list {
  width: 100%;
}
.announcements-content__list-card:nth-child(n + 2) {
  display: none;
}
.announcements-content__list-card {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 343/366;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 4px;
  padding: 16px;
}
.announcements-content__list-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: center;
  z-index: -2;
}
.announcements-content__list-card::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;
}
.announcements-content__list-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--white, #f7f4ef);
}
.announcements-content__list-card-tag {
  font-family: "Accuratist", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}
.announcements-content__list-card-tag::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #670c09);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
  text-transform: uppercase;
}
.announcements-content__list-card-info h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px; /* 120% */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 72px;
}
.announcements .news-section__calendar,
.news-page .news-section__calendar,
.calendar-menu .news-section__calendar {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  margin-left: auto;
  width: 355px;
}
.announcements .news-section__calendar-head,
.news-page .news-section__calendar-head,
#calendar-menu .news-section__calendar-head {
  color: var(--black, #171717);
  font-family: "Accuratist", serif;
  font-size: 16px;
  line-height: 20px; /* 125% */
  text-transform: uppercase;
  position: relative;
  margin-top: 28px;
  padding-left: 20px;
}
#calendar-menu .news-section__calendar-head {
  font-size: 20px;
  line-height: 24px; /* 120% */
  margin-top: 20px;
  margin-bottom: 24px;
}
.announcements .news-section__calendar-head ::before,
.news-page .news-section__calendar-head ::before,
#calendar-menu .news-section__calendar-head ::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #670c09);
  font-size: 18px;
  font-weight: 700;
  line-height: 23.94px; /* 133% */
  text-transform: uppercase;
}
.announcements .news-section__calendar-wrapper,
.news-page .news-section__calendar-wrapper,
#calendar-menu .news-section__calendar-wrapper {
  height: 531px;
  border-radius: 4px;
  background: var(--black_1, #3a3a39);
  padding: 17px 24px;
}

@media screen and (min-width: 768px) {
  .announcements {
    padding: 24px 0 48px;
  }
  .announcements .section__content-head {
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .announcements-content__list-card {
    aspect-ratio: 706/531;
    padding: 72px 72px 32px 32px;
  }
  .announcements-content__list-card-info {
    gap: 20px;
  }
  .announcements-content__list-card-info h3 {
    font-size: 24px;
    line-height: 24px; /* 100% */
    -webkit-line-clamp: 2;
    max-height: 48px;
  }
}

@media screen and (min-width: 1280px) {
  .announcements {
    padding: 28px 0;
  }
  .announcements .section__content-head {
    padding-top: 24px;
    margin-bottom: 24px;
  }
  .announcements-content {
    display: flex;
    gap: 32px;
  }
  .announcements-content__list-wrapper {
    width: calc(100% - (32px + 355px));
  }
  .announcements-content__list {
    display: flex;
    gap: 32px;
  }
  .announcements-content__list-card:nth-child(n + 2) {
    display: flex;
  }
  .announcements-content__list-card:nth-child(n + 3) {
    display: none;
  }
  .announcements-content__list-card {
    width: calc((100% - 32px) / 2);
    aspect-ratio: 464/531;
    padding: 72px 32px;
  }
  .announcements-content__list-card-info h3 {
    font-size: 28px;
    line-height: 34px; /* 120% */
    -webkit-line-clamp: 2;
    max-height: 72px;
  }
  .announcements .news-section__calendar,
  .news-page .news-section__calendar,
  #calendar-menu .news-section__calendar {
    display: flex;
  }
}

#calendar,
#calendar-mob {
  color: white !important;
  height: 100%;
  position: relative;
}
#calendar .selected-date .fc-daygrid-day-frame.fc-scrollgrid-sync-inner,
#calendar-mob .selected-date .fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
  border-radius: 4px;
  background: var(--red, #670c09);
}
#calendar .fc-day-future,
#calendar-mob .fc-day-future {
  pointer-events: none;
  opacity: 0.5;
}
#calendar .fc-toolbar-title,
#calendar-mob .fc-toolbar-title {
  color: var(--white, #f7f4ef);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
#calendar .fc-scrollgrid.fc-scrollgrid-liquid,
#calendar-mob .fc-scrollgrid.fc-scrollgrid-liquid {
  width: 304px;
}
#calendar table,
#calendar th,
#calendar td,
#calendar tr,
#calendar-mob table,
#calendar-mob th,
#calendar-mob td,
#calendar-mob tr {
  border: none;
}
th,
td,
tr {
  width: 40px;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  text-align: center !important;
  vertical-align: middle !important;
}
.fc-daygrid-day-top {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
  min-height: unset !important;
}
.fc .fc-daygrid-day-frame {
  min-height: unset !important;
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
.fc
  .fc-daygrid-day.fc-day-today
  .fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
  border-radius: 4px !important;
  border: 1px solid var(--white, #f7f4ef) !important;
}
.fc .fc-daygrid-day .fc-daygrid-day-frame.fc-scrollgrid-sync-inner {
  height: 40px;
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
.fc .fc-daygrid-day-top {
  margin-top: 7px;
}
.fc .fc-highlight {
  background: transparent;
  border-radius: 4px !important;
  border: 1px solid var(--white, #f7f4ef) !important;
}
.fc .fc-today-button.fc-button.fc-button-primary {
  position: absolute;
  right: 0;
  top: 40px;
  width: 116px !important;
  height: 40px;

  color: var(--white, #f7f4ef);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.524px;
  text-transform: capitalize;
  opacity: 0.2;

  display: flex;
  width: 116px;
  height: 40px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: var(--black_1, #3a3a39);
}
.fc .fc-selectedDayDisplay-button.fc-button.fc-button-primary {
  position: absolute;
  left: 0;
  top: 40px;
  width: 160px !important;
  height: 40px;

  color: var(--white, #f7f4ef);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.524px;
  opacity: 1;

  display: flex;
  width: 116px;
  height: 40px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--white, #f7f4ef);
  background: var(--black_1, #3a3a39);
}
.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 2.8em;
  position: relative;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:has(h2) {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:has(.fc-prev-button),
.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:has(.fc-next-button) {
  position: relative;
  z-index: 2;
}

.fc .fc-prev-button.fc-button,
.fc .fc-next-button.fc-button {
  background: var(--black_1, #3a3a39);
}

/* photo-reports */
.photo-reports {
  background: var(--black_1, #3a3a39);
  padding: 20px 0;
}
.photo-reports .section__content-head {
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--white, #f7f4ef);
  margin-bottom: 20px;
}
.photo-reports .section-title h2,
.photo-reports .main-info__content-morelink {
  color: var(--white, #f7f4ef);
}
.photo-reports .main-info__content-morelink::after {
  background-image: url(../images/forward-arrow.svg);
}
.photo-reports__list {
  padding-bottom: 56px;
}
.photo-reports__list-item {
  position: relative;
  display: flex !important;
  width: 100%;
  aspect-ratio: 343/366;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 4px;
  padding: 16px;
}
.photo-reports__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: center;
  z-index: -2;
}
.photo-reports__list-item::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;
}
.photo-reports__item-tag {
  font-family: "Accuratist", serif;
  color: var(--white, #f7f4ef);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.71;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.photo-reports__item-tag::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;
}
.photo-reports__item-title {
  color: var(--white, #f7f4ef);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px; /* 120% */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 71px;
}
.photo-reports__swiper-btn.swiper-button-next2,
.photo-reports__swiper-btn.swiper-button-prev2 {
  color: #fff;
  cursor: pointer;
  position: absolute;
  height: 32px;
  top: calc(100% - 20px);
  z-index: 10;
  transform: translateY(-50%);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  width: fit-content;
}
.photo-reports__btn-arrow {
  border-radius: 50%;
  border: 1px solid var(--red, #670c09);
  width: 32px;
  height: 32px;
  background-image: url(../images/red-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center center;
  background-color: rgba(247, 244, 239, 0.5);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.photo-reports__swiper-btn.swiper-button-next2 {
  right: 0;
}
.photo-reports__swiper-btn.swiper-button-prev2 {
  left: 0;
}
.photo-reports__swiper-btn.swiper-button-prev2 .photo-reports__btn-arrow {
  transform: rotate(-180deg);
}

@media screen and (min-width: 768px) {
  .photo-reports__list-item {
    padding: 32px 20px;
    aspect-ratio: 706/380;
  }
  .photo-reports__item-title {
    font-size: 24px;
    line-height: 24px; /* 100% */
  }
}

@media screen and (min-width: 1280px) {
  .photo-reports {
    background: #fff;
    padding: 28px 0;
  }
  .photo-reports .section__content-head {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .photo-reports__inner {
    border-radius: 4px;
    background: var(--black_1, #3a3a39);
    padding: 40px 0 56px 96px;
  }
  .photo-reports .swiper {
    max-width: 1408px;
  }
  .photo-reports__list {
    padding-bottom: 84px;
  }
  .photo-reports__list-item {
    min-height: 502px;
    border-radius: 4px;
  }
  .photo-reports__item-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    max-height: 84px;
  }
  .photo-reports__swiper-btn.swiper-button-next2 {
    right: unset;
    left: 128px;
  }
  .photo-reports__item-tag {
    margin-bottom: 32px;
  }
}

.blogs {
  padding: 32px 0;
}
.blogs .section__content-head {
  padding-top: 16px;
  margin-bottom: 16px;
  border-top: 0.5px solid var(--red, #670c09);
}
@media screen and (min-width: 768px) {
  .blogs {
    padding: 48px 0;
  }
  .blogs .section__content-head {
    padding-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .blogs {
    padding: 28px 0;
  }
  .blogs .section__content-head {
    padding-top: 24px;
    margin-bottom: 24px;
  }
}

/* video-section */

.video-section {
  background: var(--black_1, #3a3a39);
  padding: 20px 0;
}
.video-section .section__content-head {
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--white, #f7f4ef);
  margin-bottom: 20px;
}
.video-section .section-title h2,
.video-section .main-info__content-morelink {
  color: var(--white, #f7f4ef);
}
.video-section .main-info__content-morelink::after {
  background-image: url(../images/forward-arrow.svg);
}
.video-section__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-section__content-video {
  width: 100%;
  border-radius: 4.17px;
  overflow: hidden;
  aspect-ratio: 343/193;
}
.video-section__content-text-title {
  color: var(--white, #f7f4ef);
  font-family: "Accuratist", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px; /* 120% */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 71px;
}
.video-section__content-text-text {
  display: none;
}
.video-section__list {
  display: none;
}
@media screen and (min-width: 768px) {
  .video-section__content-video {
    aspect-ratio: 706/366;
  }
  .video-section__content {
    gap: 20px;
  }
  .video-section__content-text-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .video-section {
    background: #fff;
    padding: 28px 0 0;
  }
  .video-section .section__content-head {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .video-section__inner {
    border-radius: 4px;
    background: var(--black_1, #3a3a39);
    padding: 40px 96px;
  }
  .video-section .swiper {
    max-width: 1408px;
  }
  .video-section__content {
    padding-bottom: 40px;
    flex-direction: row-reverse;
    gap: 13px;
    max-width: 100%;
    margin: 0;
    margin-bottom: 40px;
    border-bottom: 0.5px solid var(--white, #f7f4ef);
  }
  .video-section__content-video {
    border-radius: 8px;
    width: calc((100% - 13px) / 2);
    height: 370px;
  }
  .video-section__content-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    width: calc((100% - 13px) / 2);
  }
  .video-section__content-text-title {
    font-size: 34px;
    line-height: 46px; /* 135.294% */
    -webkit-line-clamp: 4;
    max-height: 192px;
  }
  .video-section__content-text-text {
    display: block;
    color: var(--white, #f7f4ef);
    font-size: 18px;
    line-height: 1.78;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    max-height: 160px;
  }
  .video-section__list {
    display: flex;
    gap: 32px;
  }
  .video-section__list-item {
    border-radius: 4px;
    overflow: hidden;
    width: calc((100% - (32px * 3)) / 4);
    max-width: 304px;
    height: 172.056px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
  }
  .video-section__list-item:nth-child(n + 5) {
    display: none;
  }
  .video-section__list-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    object-position: center;
    z-index: 0;
  }
  .video-section__list-item::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;
  }
  .video-section__item-tag {
    margin-top: auto;
    color: var(--white, #f7f4ef);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;
    padding-left: 17px;
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
  }
  .video-section__item-tag::before {
    content: "/";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red, #670c09);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
  }
  .video-section__item-title {
    color: var(--white, #f7f4ef);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.14;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 48px;
    position: relative;
    z-index: 2;
  }
}

/* footer */
footer {
  height: 120px;
  margin-top: 60px;
  padding: 10px 0;
  background: var(--red, #7c2d2a);
}
/* main:has(.not-found) ~ footer {
  margin-top: 0;
} */
main:has(.not-found) .not-found__wrapper img {
  margin-top: 60px;
}
footer .container {
  height: 100%;
}
.footer__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mob-logo-image {
  display: block;
  width: 116px;
  height: 28px;
}
.desc-logo-image {
  display: none;
}
.footer__inner-list {
  display: flex;
  align-items: center;
  gap: 24px;
  order: -1;
}
.footer__inner-link {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__inner-link a,
.footer__inner-link img,
.footer__inner-link .icon {
  width: 20px;
  height: 20px;
}
.footer__text {
  color: var(--white, #f7f4ef);
  order: -1;
  width: 100%;
  font-size: 10px;
  line-height: 10px; /* 100% */
  text-align: center;
}

@media screen and (min-width: 768px) {
  footer {
    height: 44px;
    margin-top: 70px;
  }
  main:has(.not-found) .not-found__wrapper img {
    margin-top: 70px;
  }
  .footer__inner {
    display: flex;
    flex-direction: row;
  }
  .footer__inner-list {
    order: unset;
  }
  .footer__text {
    order: unset;
    font-size: 12px;
    line-height: 12px; /* 100% */
  }
}

@media screen and (min-width: 1280px) {
  footer {
    height: 56px;
    margin-top: 80px;
    padding: 4px 0;
  }
  main:has(.not-found) .not-found__wrapper img {
    margin-top: unset;
  }
  .mob-logo-image {
    display: none;
  }
  .desc-logo-image {
    display: block;
    width: 282px;
    height: 48px;
  }
  .footer__inner-list {
    gap: 24px;
  }
  .footer__text {
    padding-top: 0;
    order: 0;
    width: fit-content;
    text-align: left;
    font-size: 16px;
    line-height: 16px; /* 100% */
  }
}
.not-found > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.not-found__wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 24px;
  min-height: 50vh;
  text-align: center;
  border-top: 1px solid var(--red, #670c09);
}
.not-found h1 {
  color: var(--black, #171717);
  font-size: 16px;
  font-weight: 700;
  line-height: 32px; /* 200% */
}
.not-found a {
  display: flex;
  width: 100%;
  max-width: 355px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: var(--red, #670c09);
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  line-height: 19.98px; /* 117.529% */
  text-transform: uppercase;
  transition: var(--transition-dur-and-func);
}
.not-found a:hover,
.not-found a:focus {
  background: var(--black_1, #3a3a39);
}
.not-found img {
  width: 244px;
  height: 160px;
}
@media screen and (min-width: 768px) {
  .not-found__wrapper {
    gap: 32px;
  }
  .not-found h1 {
    font-size: 17px;
    line-height: 32px; /* 188.235% */
  }
  .not-found img {
    width: 354px;
    height: 228px;
  }
}
@media screen and (min-width: 1280px) {
  .not-found__wrapper {
    gap: 40px;
  }
  .not-found h1 {
    font-size: 18px;
    line-height: 32px; /* 177.778% */
  }
  .not-found a {
    font-size: 18px;
  }
  .not-found img {
    width: 530px;
    height: 342px;
  }
}
