.single-hero {
  padding-top: 8px;
  padding-bottom: 24px;
}

.page__breadcrumbs {
  color: var(--blue, #003f53);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid var(--red, #e60026);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 32px;
}

.page__breadcrumbs-categori {
  padding-left: 20px;
  position: relative;
}

.page__breadcrumbs-categori::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.page__breadcrumbs-categori-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 240px;
  display: block;
  opacity: 0.8;
}

.single-hero__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.single-hero__list-item {
  width: 100%;
  min-height: 366px;
  border-radius: 4px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.adv-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  gap: 8px;
  padding: 10px 12px 6.326px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #336575;
  color: var(--white, #fff);
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
}

.single-hero__list-item-img {
  width: 100%;
  height: 366px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.single-hero__list-item-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.single-hero__list-item-tag {
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.71;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.single-hero__list-item-tag::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.single-hero__list-item-author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
  position: relative;
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.71;
}

.single-hero__list-item-author::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.single-hero__list-item-photo {
  display: none;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
  position: relative;
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.71;
}

.single-hero__list-item-photo::before {
  content: "/";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.single-hero__list-item-title {
  color: var(--white, #fff);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 71px;
}

.single-hero__list-item-time {
  display: none;
  gap: 8px;
  padding: 0 16px;
  position: relative;
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
}
.single-hero__list-item-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;
}
.single-hero__list-item-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;
}

@media screen and (min-width: 768px) {
  .page__breadcrumbs-categori-title {
    max-width: 440px;
  }
}

@media screen and (min-width: 1280px) {
  .single-hero {
    padding-bottom: 64px;
  }
  .page__breadcrumbs {
    font-size: 24px;
    line-height: 1;
    padding-top: 40px;
    margin-bottom: 64px;
  }
  .page__breadcrumbs-categori {
    padding-left: 30px;
  }
  .page__breadcrumbs-categori::before {
    left: 12px;
  }
  .page__breadcrumbs-categori-title {
    max-width: 1080px;
  }
  .single-hero__list-item {
    min-height: 502px;
    border-radius: 4px;
    max-width: 1504px;
    margin: 0;
  }
  .single-hero__list-item-img {
    width: 100%;
    height: 502px;
    padding: 72px 32px;
    gap: 48px;
  }
  .single-hero__list-item-photo {
    display: flex;
  }
  .single-hero__list-item-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.12;
    -webkit-line-clamp: 2;
    max-height: 112px;
  }
  .single-hero__list-item-time {
    display: flex;
  }
  .adv-badge {
    display: inline-flex;
  }
}

.quote-section {
  padding-bottom: 24px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-wrapper p,
.content-wrapper ul,
.content-wrapper ol,
.content-wrapper span {
  color: var(--blue, #003f53);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.22;
}

.content-wrapper span:empty {
  display: block;
  height: 22px;
}

.content-wrapper img {
  width: 100%;
  height: fit-content;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 8px;
}

p:has(a > img) {
  position: relative;
  cursor: auto;
}

p:has(a > img)::after {
  position: absolute;
  content: "";
  bottom: 12px;
  right: 0;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: rgba(256, 256, 256, 0.2);
  background-image: url(../images/zoom-in.svg);
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  cursor: pointer;
}

.content-wrapper video {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  height: 193px;
  margin-bottom: 24px;
}

@media screen and (min-width: 1280px) {
  .content-wrapper {
    flex-grow: 1;
    width: calc((100% - 355px) - 32px);
    max-width: 1120px;
    gap: 24px;
  }

  .content-wrapper p,
  .content-wrapper ul,
  .content-wrapper ol,
  .content-wrapper span {
    line-height: 1.77;
  }

  .content-wrapper span:empty {
    height: 32px;
  }

  .content-wrapper video {
    height: 630px;
    margin-bottom: 64px;
  }

  p:has(a > img)::after {
    bottom: 16px;
  }
}

.quote-section__text p {
  color: var(--blue, #003f53);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.22;
}

.quote-section__text span:empty {
  display: block;
  height: 22px;
}

.quote-section__quote {
  padding: 16px 16px 32px;
  background-color: var(--blue, #003f53);
  margin: 0 -16px 24px;

  margin-top: 24px;
}

.quote-section__quote.about-quote {
  margin-top: 0;
}

.content-wrapper .quote-section__quote-text {
  color: var(--white, #fff);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.17;
  padding-top: 64px;
  position: relative;
}

.quote-section__quote-text::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 65px;
  height: 50px;
  background-image: url(../images/quote-red.svg);
  background-repeat: no-repeat;
}

@media screen and (min-width: 1280px) {
  .quote-section {
    padding-bottom: 64px;
  }
  .quote-section .container {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
  .content-wrapper {
    flex-grow: 1;
    width: calc((100% - 355px) - 32px);
    max-width: 1120px;
  }
  .quote-section__text p {
    line-height: 1.77;
  }
  .quote-section__text span:empty {
    height: 32px;
  }
  .quote-section__quote {
    padding: 40px 86px 40px 40px;
    min-height: 244px;
    margin: 0;
    background-image: url(../images/vezha-bg-blue.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    border-radius: 4px;
    overflow: hidden;

    margin-top: 64px;
  }
  .quote-section__quote.about-quote {
    margin-top: 0;
  }
  .content-wrapper .quote-section__quote-text {
    padding-top: 40px;
    padding-left: 104px;
  }
}

/* news-content */
/* .news-content {
  padding-bottom: 24px;
}

.news-content__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.news-content__list-item {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.news-content__list-item-img {
  width: 100%;
  min-height: 366px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 8px;
  position: relative;
  cursor: auto;
}

.news-content__list-item-img::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: rgba(256, 256, 256, 0.2);
  background-image: url(../images/zoom-in.svg);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}

.news-content__list-item-desc {
  color: var(--blue, #003f53);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 64px;
}

.news-content__large-text {
  color: var(--blue, #003f53);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
  margin-bottom: 24px;
}

.news-content__large-text h1,
.news-content__large-text h2,
.news-content__large-text h3,
.news-content__large-text h4,
.news-content__large-text h5,
.news-content__large-text h6 {
  color: var(--blue, #003f53);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
}

.news-content__large-text span:empty {
  display: block;
  height: 22px;
}

.news-content__large-text p,
.news-content__large-text ul,
.news-content__large-text ol,
.news-content__large-text span {
  color: var(--blue, #003f53);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
}

.news-content__large-text ul,
.news-content__large-text ol {
  padding-left: 18px;
}

.news-content__large-text li {
  list-style: disc;
}

.news-content__large-text b,
.news-content__large-text strong {
  font-weight: 700;
}

@media screen and (min-width: 1280px) {
  .news-content {
    padding-bottom: 64px;
  }
  .news-content .container {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
  .news-content__list {
    flex-direction: row;
    gap: 32px;
    margin-bottom: 64px;
  }
  .news-content__list-item {
    min-height: 545px;
    max-width: 544px;
    width: calc((100% - 32px) / 2);
    margin: 0;
  }
  .news-content__list-item-img {
    min-height: 545px;
  }
  .news-content__list-item-desc {
    line-height: 1.5;
    -webkit-line-clamp: 2;
    max-height: 48px;
  }
  .news-content .main-info__advertising.first {
    margin-top: -51px;
  }
  .news-content__large-text {
    line-height: 1.78;
    margin-bottom: 64px;
  }
  .news-content__large-text h1,
  .news-content__large-text h2,
  .news-content__large-text h3,
  .news-content__large-text h4,
  .news-content__large-text h5,
  .news-content__large-text h6 {
    line-height: 1.78;
  }
  .news-content__large-text p,
  .news-content__large-text ul,
  .news-content__large-text ol,
  .news-content__large-text span {
    line-height: 1.78;
  }
} */

/* .photo-video__content-video {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  height: 193px;
  margin-bottom: 24px;
}

@media screen and (min-width: 1280px) {
  .photo-video__content-video {
    height: 630px;
    margin-bottom: 64px;
  }
} */

/* bottom-tag */
.bottom-tag {
  padding-bottom: 24px;
}

.bottom-tag__read-more {
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: 1px solid #003f53;
  border-bottom: 1px solid #003f53;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bottom-tag__read-more-title {
  color: var(--red, #e60026);
  white-space: nowrap;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.17;
}

.bottom-tag__read-more-post {
  color: var(--blue, #003f53);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.09;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 71px;
}

.bottom-tag__report-error {
  padding-top: 32px;
  padding-bottom: 32px;
  color: var(--red, #e60026);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bottom-tag__report-error-button {
  padding: 10px;
  border-radius: 4px;
  background: var(--red, #e60026);
  color: var(--white, #fff);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  text-transform: uppercase;
}

.bottom-tag__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #336575;
}

.bottom__tag-item {
  display: inline-flex;
  padding: 8px;
  align-items: flex-start;
  border-radius: 4px;
  border: 1px solid var(--blue, #003f53);
  background: var(--white, #fff);
  color: var(--blue, #003f53);
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  transition: var(--transition-dur-and-func);
}

.bottom__tag-item.active {
  color: var(--white, #fff);
  background: var(--blue, #003f53);
}

.back-to-top {
  display: none;
}

@media screen and (min-width: 1280px) {
  .bottom-tag {
    padding-bottom: 64px;
  }
  .bottom-tag__read-more {
    padding: 38px 32px;
    flex-direction: row;
    gap: 32px;
  }
  .bottom-tag__read-more-post {
    font-size: 28px;
    -webkit-line-clamp: 2;
    max-height: 64px;
  }
  .bottom-tag__report-error {
    padding-top: 56px;
    padding-bottom: 56px;
    font-size: 14px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .back-to-top {
    display: flex;
    width: 120px;
    height: 120px;
    position: fixed;
    right: 200px;
    bottom: 240px;
    padding: 48px 36px;
    border-radius: 200px;
    background: var(--red, #e60026);
    color: var(--2-white, #fff);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
}

.sl-wrapper.simple-lightbox .sl-close,
.sl-wrapper.simple-lightbox .sl-prev,
.sl-wrapper.simple-lightbox .sl-next,
.sl-wrapper.simple-lightbox .sl-counter {
  color: var(--white, #fff);
}

.sl-wrapper.simple-lightbox .sl-counter {
  top: unset;
  left: unset;
  bottom: 30px;
  right: 30px;
}

.sl-wrapper.simple-lightbox .sl-counter .sl-current {
  color: var(--red, #e60026);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
}

.sl-wrapper.simple-lightbox .sl-counter .sl-total {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
}

.sl-overlay {
  opacity: 0.9 !important;
  background: #000 !important;
}

.single-news__slider {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--red, #e60026);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.single-news__slider img {
  object-fit: cover;
  aspect-ratio: 334/227;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next-single:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev-single:after {
  display: none;
}

.single-news__swiper-btn.swiper-button-next-single,
.single-news__swiper-btn.swiper-button-prev-single {
  color: #fff;
  cursor: pointer;
  position: absolute;
  height: 40px;
  top: 50%;
  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;
}

.single-news__btn-arrow {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  background-image: url(../images/forward-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center center;
}

.single-news__swiper-btn.swiper-button-next-single {
  right: 16px;
}

.single-news__swiper-btn.swiper-button-prev-single {
  left: 16px;
}

.single-news__swiper-btn.swiper-button-prev-single .single-news__btn-arrow {
  transform: rotate(-180deg);
}

@media screen and (min-width: 1280px) {
  .single-news__slider {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--red, #e60026);
    flex-grow: 1;
    max-width: 1120px;
  }
}
