@charset "UTF-8";
:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.single-news {
  background-color: #21332b;
}

.article {
  position: relative;
  padding-top: calc(var(--header-height) + min(24px, 4.2666666667vw));
  padding-bottom: min(80px, 12.8vw);
}
@media screen and (width >= 768px) {
  .article {
    padding-top: calc(var(--header-height) + 3.125vw);
    padding-bottom: 7.8125vw;
  }
}
@media screen and (width >= 1024px) {
  .article {
    padding-top: calc(var(--header-height) + 2.0833333333vw);
    padding-bottom: 3.125vw;
  }
}
.article > .container {
  position: relative;
}

.article__glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.article__glow::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(1032px, 275.2vw);
  height: min(1032px, 275.2vw);
  content: "";
  background: rgba(228, 195, 149, 0.1);
  border-radius: 50%;
  filter: blur(min(261px, 69.6vw));
  transform: translateX(50%) translateY(-50%);
}
@media screen and (width >= 768px) {
  .article__glow::before {
    width: 119.4010416667vw;
    height: 119.4010416667vw;
    filter: blur(45.3125vw);
  }
}
@media screen and (width >= 1024px) {
  .article__glow::before {
    width: 95.5208333333vw;
    height: 95.5208333333vw;
    filter: blur(24.1666666667vw);
  }
}

.article-breadcrumbs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: min(16px, 3.2vw);
  padding-bottom: min(20px, 5.3333333333vw);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (width >= 768px) {
  .article-breadcrumbs-row {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width >= 1024px) {
  .article-breadcrumbs-row {
    flex-wrap: nowrap;
    gap: 1.0416666667vw;
    justify-content: flex-start;
    padding-bottom: 1.0416666667vw;
  }
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: min(8px, 2.1333333333vw);
}
@media screen and (width >= 1024px) {
  .article-breadcrumbs {
    flex: 1 1 0;
    gap: 0.4166666667vw;
  }
}
.article-breadcrumbs__item {
  font-family: "Actay Wide", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .article-breadcrumbs__item {
    font-size: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .article-breadcrumbs__item {
    font-size: max(12px, 0.625vw);
  }
}
.article-breadcrumbs__item {
  color: #ccc;
  transition: color 0.3s ease;
}
.article-breadcrumbs__item--current {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(198px, 52.8vw);
}
@media screen and (width >= 768px) {
  .article-breadcrumbs__item--current {
    max-width: 38.8020833333vw;
  }
}
@media screen and (width >= 1024px) {
  .article-breadcrumbs__item--current {
    max-width: 15.5208333333vw;
  }
}
@media (hover: hover) {
  .article-breadcrumbs__item[href]:hover {
    color: #fff;
  }
}
.article-breadcrumbs__dot {
  color: #ccc;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: min(24px, 6.4vw);
}
@media screen and (width >= 1024px) {
  .article-meta {
    gap: 1.25vw;
  }
}
.article-meta--desktop {
  display: none;
}
@media screen and (width >= 1024px) {
  .article-meta--desktop {
    display: flex;
    flex: 1 1 0;
    justify-content: space-between;
  }
}
.article-meta--mobile {
  width: 100%;
  margin-top: min(80px, 21.3333333333vw);
  margin-bottom: 16px;
  justify-content: space-between;
}
@media screen and (width >= 768px) {
  .article-meta--mobile {
    margin-top: 13.0208333333vw;
  }
}
@media screen and (width >= 1024px) {
  .article-meta--mobile {
    display: none;
  }
}
.article-meta__date {
  display: flex;
  gap: min(8px, 2.1333333333vw);
}
@media screen and (width >= 1024px) {
  .article-meta__date {
    gap: 0.4166666667vw;
  }
}
.article-meta__icon {
  width: min(16px, 4.2666666667vw);
  height: min(16px, 4.2666666667vw);
  color: #fff;
}
@media screen and (width >= 1024px) {
  .article-meta__icon {
    width: 0.8333333333vw;
    height: 0.8333333333vw;
  }
}
.article-meta__icon svg {
  width: 100%;
  height: 100%;
}
.article-meta__date-text {
  font-family: "Actay Wide", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .article-meta__date-text {
    font-size: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .article-meta__date-text {
    font-size: max(12px, 0.625vw);
  }
}
.article-meta__logo {
  display: block;
  width: 24px;
  height: 16px;
  color: #fff;
}
@media screen and (width >= 1024px) {
  .article-meta__logo {
    width: 1.25vw;
    height: 0.8333333333vw;
  }
}
.article-meta__logo svg {
  width: 100%;
  height: 100%;
}

.article__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: min(40px, 6.4vw);
}
@media screen and (width >= 768px) {
  .article__body {
    margin-top: 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .article__body {
    flex-direction: row;
    gap: 1.0416666667vw;
    margin-top: 3.125vw;
  }
}

.article__aside {
  display: flex;
  flex-direction: column;
}
@media screen and (width >= 1024px) {
  .article__aside {
    position: sticky;
    top: calc(var(--header-height) + 2.0833333333vw);
    flex: 1 1 0;
    align-self: flex-start;
  }
}

.article__title {
  font-family: "Angst", sans-serif;
  font-size: min(36px, 9.6vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .article__title {
    font-size: 4.6875vw;
  }
}
@media screen and (width >= 1024px) {
  .article__title {
    font-size: max(38px, 3.3333333333vw);
  }
}
.article__title {
  margin-top: min(24px, 6.4vw);
}
@media screen and (width >= 768px) {
  .article__title {
    margin-top: 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .article__title {
    margin-top: 2.0833333333vw;
  }
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: min(12px, 3.2vw);
  cursor: pointer;
}
@media screen and (width >= 1024px) {
  .article-back {
    gap: 0.625vw;
  }
}
.article-back__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(48px, 11.2vw);
  height: min(48px, 11.2vw);
  border: 1px solid rgba(175, 144, 103, 0.2);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
@media screen and (width >= 768px) {
  .article-back__icon {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width >= 1024px) {
  .article-back__icon {
    width: 2.5vw;
    height: 2.5vw;
  }
}
.article-back__icon svg {
  width: min(16px, 4.2666666667vw);
  height: min(16px, 4.2666666667vw);
  transform: rotate(90deg);
}
@media screen and (width >= 768px) {
  .article-back__icon svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .article-back__icon svg {
    width: max(12px, 0.8333333333vw);
    height: max(12px, 0.8333333333vw);
  }
}
.article-back__text {
  font-family: "Actay Wide", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .article-back__text {
    font-size: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .article-back__text {
    font-size: max(12px, 0.625vw);
  }
}
.article-back__text {
  text-transform: uppercase;
}
@media (hover: hover) {
  .article-back:hover .article-back__icon {
    background-color: rgba(175, 144, 103, 0.15);
  }
}
.article-back:active .article-back__icon {
  transform: scale(0.95);
}

.article__content {
  display: flex;
  flex-direction: column;
  gap: min(40px, 10.6666666667vw);
  min-width: 0;
}
@media screen and (width >= 768px) {
  .article__content {
    gap: 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .article__content {
    flex: 1 1 0;
    gap: 3.125vw;
  }
}

.article-gallery {
  position: relative;
  width: 100%;
  height: min(280px, 69.3333333333vw);
  overflow: hidden;
  border-radius: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .article-gallery {
    height: 54.6875vw;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .article-gallery {
    height: 28.125vw;
    border-radius: 1.25vw;
  }
}
.article-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-gallery__nav {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 min(24px, 4.2666666667vw);
  transform: translateY(-50%);
}
@media screen and (width >= 768px) {
  .article-gallery__nav {
    padding: 0 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .article-gallery__nav {
    padding: 0 2.0833333333vw;
  }
}
.article-gallery__nav .prev-button svg,
.article-gallery__nav .next-button svg {
  width: min(16px, 4.2666666667vw);
  height: min(16px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .article-gallery__nav .prev-button svg,
  .article-gallery__nav .next-button svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .article-gallery__nav .prev-button svg,
  .article-gallery__nav .next-button svg {
    width: max(12px, 0.8333333333vw);
    height: max(12px, 0.8333333333vw);
  }
}

.article-text {
  display: flex;
  flex-direction: column;
  gap: min(40px, 10.6666666667vw);
}
@media screen and (width >= 768px) {
  .article-text {
    gap: 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .article-text {
    gap: 2.0833333333vw;
  }
}
.article-text p {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .article-text p {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .article-text p {
    font-size: max(18px, 1.25vw);
  }
}
.article-text p:first-child {
  font-family: "Actay Wide", sans-serif;
  font-size: min(32px, 6.4vw);
  font-weight: 700;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .article-text p:first-child {
    font-size: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .article-text p:first-child {
    font-size: max(24px, 1.9791666667vw);
  }
}
.article-text h2,
.article-text h3 {
  font-family: "Actay Wide", sans-serif;
  font-size: min(20px, 4.2666666667vw);
  font-weight: 700;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .article-text h2,
  .article-text h3 {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .article-text h2,
  .article-text h3 {
    font-size: max(16px, 1.25vw);
  }
}
.article-text ul {
  display: flex;
  flex-direction: column;
  gap: min(8px, 2.1333333333vw);
  list-style: none;
}
@media screen and (width >= 1024px) {
  .article-text ul {
    gap: 0.4166666667vw;
  }
}
.article-text li {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .article-text li {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .article-text li {
    font-size: max(18px, 1.25vw);
  }
}
.article-text li {
  position: relative;
  padding-left: min(20px, 5.3333333333vw);
}
@media screen and (width >= 1024px) {
  .article-text li {
    padding-left: 1.0416666667vw;
  }
}
.article-text li::before {
  position: absolute;
  left: min(4px, 1.0666666667vw);
  content: "•";
}
@media screen and (width >= 1024px) {
  .article-text li::before {
    left: 0.2083333333vw;
  }
}
.article-text iframe,
.article-text img {
  display: block;
  width: 100%;
  height: min(280px, 69.3333333333vw);
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
  border-radius: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .article-text iframe,
  .article-text img {
    height: 54.6875vw;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .article-text iframe,
  .article-text img {
    height: 28.125vw;
    border-radius: 1.25vw;
  }
}