.news_page {
  max-width: var(--dl-size-size-maxwidth);
  margin: 0 auto;
  padding: var(--dl-space-space-twounits) var(--dl-space-space-oneandhalfunits)
    var(--dl-space-space-sixunits);
}

.news_carousel {
  margin: var(--dl-space-space-oneandhalfunits) 0 var(--dl-space-space-threeunits);
}

.news_carousel_shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--dl-radius-radius-radius8);
  background: var(--dl-color-scheme-darkblue);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.news_carousel_track {
  display: flex;
  width: 100%;
  transition: transform 520ms ease;
}

.news_slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-height: 560px;
}

.news_slide_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news_slide_overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.15) 55%,
    transparent 75%
  );
}

.news_slide_content {
  position: relative;
  margin-left: 30px;
  z-index: 2;
  max-width: 70ch;
  padding: var(--dl-space-space-threeunits) 4rem var(--dl-space-space-twounits)
    var(--dl-space-space-twounits);
  color: var(--dl-color-scheme-white);
}

.news_slide_kicker,
.news_slide_title,
.news_slide_text,
.news_slide_date {
  max-width: 100%;
}

.news_slide_kicker {
  margin: 0 0 var(--dl-space-space-halfunit);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}

.news_slide_title {
  margin: 0 0 var(--dl-space-space-unit);
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.news_slide_text {
  margin: 0 0 var(--dl-space-space-oneandhalfunits);
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.96;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.news_slide_cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--dl-space-space-halfunit);
  margin-bottom: var(--dl-space-space-oneandhalfunits);
}

.news_slide_date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.news_slide_date::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--dl-color-scheme-md-yellow);
}

.news_btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s ease;
}

.news_btn_primary {
  border: 2px solid var(--dl-color-scheme-md-red);
  background: var(--dl-color-scheme-md-red);
  color: var(--dl-color-scheme-white);
}

.news_btn_primary:hover {
  border-color: var(--dl-color-scheme-pink);
  background: var(--dl-color-scheme-pink);
}

.news_btn_secondary {
  border: 2px solid var(--dl-color-scheme-white);
  background: transparent;
  color: var(--dl-color-scheme-white);
}

.news_btn_secondary:hover {
  background: var(--dl-color-scheme-white);
  color: var(--dl-color-scheme-darkblue);
}

.news_nav {
  position: absolute;
  top: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--dl-color-scheme-white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.2s;
}

.news_nav:hover {
  border-color: var(--dl-color-scheme-md-red);
}

.news_nav_prev {
  left: 12px;
}

.news_nav_next {
  right: 12px;
}

.news_dots {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.news_dot {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.news_dot.is_active {
  border-color: var(--dl-color-scheme-md-red);
  background: var(--dl-color-scheme-md-red);
}

.news_list_section,
.news_iframe_section {
  margin-top: var(--dl-space-space-threeunits);
}

.news_list_shell {
  padding-top: 4px;
}

.news_list_title,
.news_iframe_title {
  margin: 0 0 var(--dl-space-space-oneandhalfunits);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.news_iframe_title {
  font-size: 32px;
}

.news_cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--dl-space-space-oneandhalfunits);
}

.news_card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--dl-radius-radius-radius8);
  background: var(--dl-color-scheme-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.news_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.news_card_img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.news_card_body {
  padding: var(--dl-space-space-oneandhalfunits);
}

.news_card_date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--dl-space-space-unit);
  padding: 6px 10px;
  border: 1px solid rgba(226, 24, 51, 0.18);
  border-radius: 999px;
  background: rgba(226, 24, 51, 0.1);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.news_card_date::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dl-color-scheme-md-red);
}

.news_card_title {
  margin: 0 0 var(--dl-space-space-halfunit);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.news_card_text {
  margin: 0 0 var(--dl-space-space-unit);
  color: rgba(0, 0, 0, 0.78);
}

.news_card_links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--dl-space-space-halfunit);
}

.news_card_link,
.news_archive_link {
  font-weight: 700;
  text-decoration: none;
}

.news_card_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dl-color-scheme-md-red);
  text-transform: uppercase;
}

.news_card_link::after {
  content: "→";
}

.news_card_link:hover {
  color: var(--dl-color-scheme-pink);
}

.news_dropdown_section {
  width: min(1200px, calc(100% - 2rem));
  margin: 2rem auto 4rem;
}

.news_dropdown {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news_dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.4rem;
  list-style: none;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.news_dropdown summary:hover {
  background: #f5f9fc;
  transform: translateY(-1px);
}

.news_dropdown summary::-webkit-details-marker {
  display: none;
}

.news_dropdown summary::after {
  content: "+";
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}

.news_dropdown summary:hover::after {
  transform: scale(1.2);
}

.news_dropdown[open] summary::after {
  content: "−";
}

.news_dropdown_body {
  padding: 0 1.25rem 1.25rem;
}

.news_archive_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.news_archive_card {
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: #fff;
}

.news_archive_img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news_archive_body {
  padding: 1rem;
}

.news_archive_date {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.news_archive_kicker {
  margin: 0 0 0.4rem;
  color: #b22222;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news_archive_title {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  line-height: 1.3;
}

.news_archive_text {
  margin: 0 0 0.9rem;
  line-height: 1.5;
}

.news_archive_link:hover {
  text-decoration: underline;
}

.news_iframe_wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: var(--dl-radius-radius-radius8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.news_iframe_wrapper iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: none;
}

@media (min-width: 860px) {
  .news_cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .news_slide_content {
    padding: 1.5rem 2.5rem;
  }

  .news_slide_title {
    font-size: clamp(1.5rem, 5vw, 2.3rem);
    line-height: 1.08;
  }

  .news_slide_text {
    font-size: clamp(0.9rem, 2.8vw, 1rem);
    line-height: 1.35;
  }

  .news_slide_kicker,
  .news_slide_date {
    font-size: clamp(0.75rem, 2.3vw, 0.9rem);
  }
}

@media (max-width: 480px) {
  .news_slide_content {
    padding: 1.1rem 2.2rem;
  }

  .news_slide_title {
    font-size: clamp(1.1rem, 6vw, 1.6rem);
    line-height: 1.05;
    border: 2px solid #b22222;
  }

  .news_slide_text {
    font-size: clamp(0.8rem, 3.4vw, 0.92rem);
    line-height: 1.3;
  }

  .news_slide_kicker,
  .news_slide_date {
    font-size: clamp(0.7rem, 2.8vw, 0.82rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .news_carousel_track,
  .news_card,
  .news_nav,
  .news_dropdown summary,
  .news_dropdown summary::after {
    transition: none;
  }

  .news_card:hover,
  .news_dropdown summary:hover {
    transform: none;
  }
}
