.news-page {
  background: #fff;
  min-height: 100vh;
  overflow: visible;
}

body:not(.has-dialog) {
  overflow-y: auto;
}

.news-hero.projects-hero {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  padding: 0;
  overflow: hidden;
  background: #eaf3f4;
}
.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(241, 249, 249, .4), rgba(241, 249, 249, .08) 35%, transparent 65%);
}
.news-hero .projects-hero__inner { position: relative; z-index: 2; pointer-events: none; }
.news-hero__copy h1 { margin: 0; color: #007f90; font-size: clamp(44px, 4.5vw, 64px); letter-spacing: 2px; text-shadow: 0 1px 16px rgba(255, 255, 255, .4); }
.news-hero__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.news-hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 50%; opacity: 0; transition: opacity 1s ease; }
.news-hero__slide[src*="news-18-media-001"] { object-position: center 76%; }
.news-hero__slide.is-active { opacity: 1; }
.news-hero__controls { position: absolute; z-index: 3; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; max-width: calc(100% - 32px); }
.news-hero__controls[hidden] { display: none; }
.news-hero__controls > button { display: grid; place-items: center; flex: 0 0 32px; width: 32px; height: 36px; padding: 0; border: 0; background: transparent; color: #006d7d; cursor: pointer; font-size: 20px; text-shadow: 0 1px 8px rgba(255, 255, 255, .6); }
.news-hero__controls > button:hover { color: #004e60; }
.news-hero__controls > .news-hero__pause { font-size: 13px; }
.news-hero__dots { display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; max-width: 240px; }
.news-hero__dot { width: 12px; height: 36px; border: 0; padding: 0; background: transparent; cursor: pointer; transition: width .25s ease; }
.news-hero__dot::before { content: ""; display: block; width: 10px; height: 10px; margin: auto; border: 1px solid rgba(0,123,145,.5); border-radius: 999px; background: rgba(255,255,255,.8); box-shadow: 0 2px 8px rgba(25,64,77,.12); }
.news-hero__dot.is-active { width: 28px; }
.news-hero__dot.is-active::before { width: 28px; background: var(--teal); border-color: var(--teal); }
.news-hero__controls button:focus-visible { outline: 2px solid #007f90; outline-offset: 3px; }
@media(max-width:980px) {
  .news-hero.projects-hero { min-height: 420px; }
}
@media(max-width:640px) {
  .news-hero.projects-hero { min-height: 390px; align-items: flex-start; }
  .news-hero .projects-hero__inner { padding-top: 32px; }
  .news-hero__copy h1 { font-size: 40px; }
  .news-hero__controls { bottom: 16px; gap: 8px; }
  .news-hero::after { background: linear-gradient(180deg, rgba(241,249,249,.35), transparent 50%, rgba(241,249,249,.1)); }
}
@media(prefers-reduced-motion:reduce) { .news-hero__slide { transition: none; } }

.news-featured {
  width: var(--content-width);
  margin: 58px auto 84px;
}

.news-featured > h2 {
  margin: 0 0 26px;
  color: #26384c;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
}

.news-featured__card {
  display: grid;
  grid-template-columns: 52% minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(27, 47, 63, .12);
  animation: featuredIn .8s .08s ease both;
  transition: transform .3s ease, box-shadow .3s ease;
}

.news-featured__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 62px rgba(27, 47, 63, .16);
}

.news-featured__media {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #e7eff1;
  cursor: pointer;
}

.news-featured__media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform .8s ease, filter .35s ease;
}

.news-featured__card:hover .news-featured__media > img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.news-featured__media:focus-visible,
.news-card__media:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -3px;
}

.news-featured__copy {
  padding: 48px 42px 38px;
}

.news-featured__copy p {
  margin: 0 0 28px;
  color: #7a8795;
  font-size: 13px;
}

.news-featured__copy h3 {
  margin: 0 0 24px;
  color: #26384c;
  font-size: 28px;
  line-height: 1.22;
  font-weight: 800;
}

.news-featured__copy span {
  display: block;
  margin-bottom: 26px;
  color: #69798a;
  font-size: 15px;
  line-height: 1.75;
}

.news-featured__copy a,
.news-read-more {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease, color .25s ease;
}

.news-featured__copy a:hover {
  color: #007f8f;
  transform: translateX(4px);
}

.news-read-more:hover {
  color: #007f8f;
  transform: translateX(4px);
}

.news-read-more:focus-visible {
  outline: 2px solid rgba(0, 152, 168, .45);
  outline-offset: 4px;
}

.news-featured__copy a.is-disabled {
  cursor: default;
}

.news-featured__copy a.is-disabled:hover {
  color: var(--teal);
  transform: none;
}

.news-list {
  margin-bottom: 96px;
  overflow: visible;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.news-card {
  display: block;
  min-width: 0;
  min-height: 0;
  border-radius: 8px;
}

.news-card .project-card__body {
  display: block;
  padding: 17px 18px 24px;
}

.news-card p {
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0;
}

.news-card h2 {
  max-width: none;
  margin-bottom: 19px;
  font-size: 20px;
  line-height: 1.22;
}

.news-card span {
  min-height: 76px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.45;
}

.news-card__media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  border: 0;
  background: #dceff1;
  text-align: left;
  cursor: pointer;
}

.news-card__media > img,
.news-card__media > .news-media {
  width: 100%;
  height: 100%;
}

.news-card__media > img {
  display: block;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  transition: transform .6s ease, filter .35s ease;
}

.news-card:hover .news-card__media > img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.news-media--fallback {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(135deg, #0d8f9f, #63d7d4);
}

.news-media--fallback::before,
.news-media--fallback::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
}

.news-media--fallback::before {
  width: 230px;
  height: 230px;
  top: -95px;
  right: -55px;
}

.news-media--fallback::after {
  width: 155px;
  height: 155px;
  top: -58px;
  right: -18px;
}

.news-media--award {
  background: linear-gradient(135deg, #167c91, #2cb7b3 58%, #80d9c8);
}

.news-media--exhibition {
  background: linear-gradient(135deg, #314a68, #438aa0 58%, #70c9cb);
}

.news-media--speech {
  background: linear-gradient(135deg, #18526b, #168fa0 58%, #57cbc7);
}

.news-media--fallback span {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}

.news-media--fallback b {
  max-width: 240px;
  font-size: 27px;
  line-height: 1.05;
}

.projects-sort {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8f98a5;
  font-size: 12px;
  white-space: nowrap;
}

.projects-sort select {
  min-width: 82px;
  border: 0;
  background: transparent;
  color: var(--teal);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  outline: none;
}

.projects-sort select:focus-visible {
  box-shadow: 0 2px 0 var(--teal);
}

.news-dialog {
  width: min(1680px, calc(100vw - 24px));
  max-height: min(96vh, 1080px);
  overflow: hidden;
}

.news-dialog[open] {
  grid-template-columns: minmax(0, 62%) minmax(390px, 38%);
}

.news-dialog--has-media {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.news-dialog.news-dialog--has-media .case-dialog__content {
  overflow: visible;
}

.news-dialog--text-only {
  width: min(1080px, calc(100vw - 24px));
  max-height: 96vh;
  overflow-y: auto;
  border-top: 9px solid var(--teal);
  background:
    radial-gradient(circle at 92% 8%, rgba(89, 207, 205, .16), transparent 26%),
    #fff;
}

.news-dialog--text-only[open] {
  display: block;
}

.news-dialog.news-dialog--text-only .case-dialog__content {
  width: min(100%, 940px);
  margin: 0 auto;
  padding: 72px 68px 62px;
  overflow: visible;
}

.news-dialog.news-dialog--text-only h2 {
  max-width: 740px;
  margin-bottom: 30px;
  font-size: clamp(32px, 4vw, 46px);
}

.news-dialog.news-dialog--text-only .case-dialog__facts {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 152, 168, .17);
  border-bottom: 1px solid rgba(0, 152, 168, .17);
}

.news-dialog.news-dialog--text-only .case-dialog__description {
  margin-top: 30px;
}

.news-dialog .case-dialog__close {
  width: 46px;
  height: 46px;
  font-size: 30px;
}

.news-dialog__media {
  position: sticky;
  top: 0;
  height: min(96vh, 1080px);
  min-height: 0;
  overflow: hidden;
  background: #182b38;
}

.news-dialog .case-dialog__content {
  padding: 60px 56px 52px;
  overflow-y: auto;
}

.news-dialog h2 {
  margin-right: 36px;
  font-size: clamp(30px, 2.4vw, 40px);
  line-height: 1.14;
}

.news-dialog .case-dialog__facts {
  margin-bottom: 30px;
}

.news-dialog .case-dialog__fact strong {
  font-size: 14px;
}

.news-dialog .case-dialog__description p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.82;
}

.news-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
}

.news-gallery__stage {
  position: relative;
  min-height: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(73, 116, 132, .48), transparent 58%),
    #182b38;
}

.news-gallery__stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-gallery__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 72px;
  padding: 0 0 5px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 10px;
  background: rgba(10, 25, 34, .62);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(9px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.news-gallery__nav--previous {
  left: 20px;
}

.news-gallery__nav--next {
  right: 20px;
}

.news-gallery__nav:hover {
  border-color: #5ed1cf;
  background: rgba(0, 137, 153, .82);
  transform: translateY(-50%) scale(1.04);
}

.news-gallery__nav:focus-visible {
  outline: 3px solid #5ed1cf;
  outline-offset: 3px;
}

.news-gallery__stage figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(10, 25, 34, .7);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.news-gallery__thumbs {
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px;
  overflow-x: auto;
  background: #10232f;
  scrollbar-color: rgba(94, 209, 207, .65) rgba(255, 255, 255, .08);
  scrollbar-width: thin;
}

.news-gallery__thumb {
  flex: 0 0 126px;
  height: 78px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 7px;
  background: #2a404d;
  opacity: .62;
  cursor: pointer;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.news-gallery__thumb:hover,
.news-gallery__thumb.is-active {
  border-color: #5ed1cf;
  opacity: 1;
  transform: translateY(-2px);
}

.news-gallery__thumb:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.news-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-dialog__media .news-media--fallback {
  width: 100%;
  height: 100%;
  min-height: 600px;
  justify-content: center;
}

.news-dialog__source {
  display: inline-flex;
  margin-top: 6px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.news-dialog__source:hover {
  color: #007f8f;
}

@media (max-width: 980px) {
  .news-featured {
    width: calc(100% - 48px);
  }

  .news-featured__card {
    grid-template-columns: 1fr;
  }

  .news-featured__media > img {
    min-height: 300px;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card__media {
    min-height: 0;
  }

  .news-dialog {
    max-height: 94vh;
    overflow-y: auto;
  }

  .news-dialog[open] {
    display: block;
  }

  .news-dialog__media {
    position: static;
    height: min(62vw, 560px);
  }

  .news-dialog__media .news-media--fallback {
    min-height: 100%;
  }

  .news-dialog .case-dialog__content {
    padding: 44px 40px 42px;
    overflow: visible;
  }

  .news-dialog.news-dialog--text-only .case-dialog__content {
    padding: 58px 46px 48px;
  }
}

@media (max-width: 640px) {
  .news-featured {
    width: calc(100% - 36px);
    margin-top: 40px;
    margin-bottom: 54px;
  }

  .news-featured > h2 {
    font-size: 28px;
  }

  .news-featured__copy {
    padding: 30px 22px 26px;
  }

  .news-featured__copy h3 {
    font-size: 23px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card__media {
    min-height: 0;
  }

  .news-card .project-card__body {
    padding: 27px 23px 26px;
  }

  .news-card h2 {
    font-size: 22px;
  }

  .news-media--fallback {
    padding: 22px;
  }

  .news-dialog {
    width: calc(100% - 16px);
  }

  .news-dialog__media {
    height: 350px;
  }

  .news-gallery__nav {
    width: 42px;
    height: 58px;
    font-size: 38px;
  }

  .news-gallery__nav--previous {
    left: 10px;
  }

  .news-gallery__nav--next {
    right: 10px;
  }

  .news-gallery__thumbs {
    gap: 7px;
    padding: 10px;
  }

  .news-gallery__thumb {
    flex-basis: 94px;
    height: 60px;
  }

  .news-dialog .case-dialog__content {
    padding: 34px 23px 32px;
  }

  .news-dialog.news-dialog--text-only .case-dialog__content {
    padding: 50px 24px 34px;
  }

  .news-dialog h2 {
    font-size: 27px;
  }

  .news-dialog .case-dialog__description p {
    font-size: 15px;
  }
}
