@charset "UTF-8";
/* =============================================
  TOP page — News
============================================= */

.section-news__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: var(--fs-body);
}

.section-news__item {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateY(1.5em);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--item-i, 0) * .08s);
}

.section-news__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.section-news__link {
  display: grid;
  grid-template-columns: 5em 1fr;
  align-items: baseline;
  gap: .25em 1.5em;
  max-width: 100%;
  overflow-wrap: break-word;
}

.section-news__link:not(a) {
  cursor: default;
}

a.section-news__link {
  transition: color .3s ease;
}

@media (hover: hover) {
  a.section-news__link:hover {
    color: var(--color-red);
    opacity: 1;
  }
}

.section-news__date {
  font-size: clamp(.9rem, 1.6vw, 1.2rem);
  letter-spacing: .05em;
}

.section-news__text {
  font-size: clamp(.9rem, 1.6vw, 1.2rem);
  min-width: 0;
  overflow-wrap: break-word;
}

.js-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .25em;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.js-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-num);
  font-size: var(--fs-body);
  line-height: 1;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

@media (max-width: 991.98px) {
  .section-news__link {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .section-news__text {
    width: 100%;
  }
  .js-pagination {
    gap: 0;
  }
}

@media (hover: hover) {
  .js-pagination__btn:hover {
    opacity: .8;
  }
}

.js-pagination__btn.is-current {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-black);
  font-weight: 700;
}

.js-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  color: var(--color-white);
  font-family: var(--font-num);
  font-size: var(--fs-body);
  line-height: 1;
}

.js-pagination__arrow {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  background: transparent;
  cursor: pointer;
  transition: border-color .3s ease, opacity .3s ease;
}

.js-pagination__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  transform: translate(-50%, -50%);
}

.js-pagination__arrow--prev::before {
  background: url('../img/arrow_back.svg') no-repeat center / contain;
}

.js-pagination__arrow--next::before {
  background: url('../img/arrow_forward.svg') no-repeat center / contain;
}

.js-pagination__arrow:disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

@media (hover: hover) {
  .js-pagination__arrow:not(:disabled):hover {
    border-color: var(--color-red);
  }
}


/* =============================================
  NEWS CMS
============================================= */
#newsArticle .page-section.panel article {
  max-width: 1080px;
}

.news-detail__date {
  display: inline-block;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: var(--fs-caption);
  background: var(--color-red);
  color: var(--color-black);
  padding: 0 .25em;
  margin-bottom: .5em;
  line-height: 1.5;
}

.news-detail__title {
  font-weight: 700;
  font-size: calc(var(--fs-heading) * .8);
  line-height: 1.5;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-shadow: var(--glow-red);
}

.news-detail__body {
  display: grid;
  gap: 1.5em;
  font-size: var(--fs-body);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.8;
}

.news-detail__body a {
  color: var(--color-red);
  font-weight: 700;
}

@media (hover: hover) {
  .news-detail__body a:hover {
    opacity: .7;
  }
}

.news-detail__image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
}

.news-detail__cta {
  text-align: center;
}

.news-detail__cta a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: var(--color-black);
  font-weight: 700;
  font-size: var(--fs-body-l);
  line-height: 1;
  min-width: 14rem;
  padding: 1em 3.5em 1em 2em;
}

.news-detail__cta a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.25em;
  width: 1em;
  height: 1em;
  background: url('../img/icon-arrow.svg') no-repeat center / contain;
  filter: brightness(0);
  transform: translateY(-50%);
  transition: transform .3s ease;
}

@media (hover: hover) {
  .news-detail__cta a:hover::after {
    transform: translateY(-50%) translateX(.35em);
  }
}

.news-detail__cta p {
  margin-top: .75em;
  font-size: var(--fs-small);
}

@media (max-width: 991.98px) {
  .news-detail__cta a {
    width: fit-content;
    min-width: 10rem;
  }
}

.news-detail__back {
  text-align: center;
  padding: 2rem 0;
}

.news-detail__back a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .8);
  background: rgba(10, 10, 10, .35);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--color-white);
  font-family: var(--font-num);
  font-weight: 600;
  font-size: var(--fs-body-l);
  letter-spacing: .05em;
  line-height: 1;
  min-width: 14rem;
  padding: 1em 2em 1em 3.5em;
}

.news-detail__back a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 1.25em;
  width: 1em;
  height: 1em;
  background: url('../img/icon-arrow.svg') no-repeat center / contain;
  filter: brightness(0) invert(1);
  transform: translateY(-50%) scaleX(-1);
  transition: transform .3s ease;
}

@media (hover: hover) {
  .news-detail__back a:hover::before {
    transform: translateY(-50%) scaleX(-1) translateX(.35em);
  }
}

@media (max-width: 991.98px) {
  .news-detail__back a {
    width: fit-content;
    min-width: 10rem;
  }
}

