/* Editorial newsroom pages, kept separate from the shared product shell. */
.newsroom-page,
.news-article-page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.newsroom-breadcrumb,
.news-article-topbar {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--live-muted, #626875);
  font-size: 12px;
}

.newsroom-breadcrumb strong,
.news-article-topbar span:last-child {
  color: var(--live-ink, #08080c);
}

.newsroom-masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  min-height: 150px;
  margin-bottom: 14px;
  padding: 24px 34px 23px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgb(66 244 206 / 28%), transparent 28%),
    linear-gradient(125deg, #0a1720 0%, #083d4c 56%, #075c69 100%);
  color: #fff;
  box-shadow: 0 17px 40px rgb(1 34 43 / 18%);
}

.newsroom-overline {
  display: inline-block;
  color: rgb(210 255 247 / 78%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.newsroom-overline-dark {
  color: #087467;
}

.newsroom-masthead h1 {
  margin: 8px 0 7px;
  color: #fff;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.9px;
  line-height: .98;
}

.newsroom-masthead p {
  max-width: 590px;
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  line-height: 1.5;
}

.newsroom-ownership {
  display: flex;
  min-width: 190px;
  flex-direction: column;
  gap: 4px;
  padding: 15px 18px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 14px;
  background: rgb(255 255 255 / 9%);
  color: rgb(255 255 255 / 76%);
  font-size: 12px;
}

.newsroom-ownership strong {
  color: #fff;
  font-size: 15px;
}

.newsroom-ownership small {
  color: rgb(255 255 255 / 60%);
  font-size: 11px;
}

.newsroom-topic-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 16px;
  padding: 0 2px 11px;
  overflow-x: auto;
  border-bottom: 1px solid var(--live-line, #dfe2e8);
  scrollbar-width: none;
}

.newsroom-topic-bar::-webkit-scrollbar {
  display: none;
}

.newsroom-topic-bar span {
  flex: 0 0 auto;
  color: var(--live-muted, #626875);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.newsroom-topic-bar .is-active {
  color: #087467;
}

.newsroom-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 16px;
  margin-bottom: 32px;
}

.newsroom-featured-card,
.newsroom-story-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe2e8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(8 25 36 / 7%);
}

.newsroom-featured-card {
  height: 410px;
  min-height: 410px;
  background: #071d27;
}

.newsroom-story-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  color: transparent;
  font-size: 0;
  text-decoration: none;
}

.newsroom-featured-media,
.newsroom-featured-media img {
  width: 100%;
  height: 410px;
  min-height: 410px;
}

.newsroom-featured-media img {
  display: block;
  object-fit: cover;
  object-position: center 34%;
  opacity: .86;
  transition: transform .35s ease, opacity .35s ease;
}

.newsroom-featured-card:hover .newsroom-featured-media img,
.newsroom-featured-card:focus-within .newsroom-featured-media img {
  opacity: .96;
  transform: scale(1.025);
}

.newsroom-featured-card::after {
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgb(3 20 28 / 20%) 27%, rgb(3 20 28 / 95%) 100%);
  content: "";
  pointer-events: none;
}

.newsroom-featured-body {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 34px 30px;
  color: #fff;
}

.newsroom-featured-topline {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
  color: rgb(255 255 255 / 72%);
  font-size: 11px;
  font-weight: 700;
}

.newsroom-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgb(66 244 206 / 35%);
  border-radius: 30px;
  background: rgb(66 244 206 / 13%);
  color: #a8fff0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.newsroom-featured-body h2 {
  max-width: 680px;
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(26px, 3vw, 41px);
  letter-spacing: -1.2px;
  line-height: 1.05;
}

.newsroom-featured-body p {
  max-width: 625px;
  margin-bottom: 17px;
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
  line-height: 1.55;
}

.newsroom-read-more,
.newsroom-text-link,
.newsroom-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #087467;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.newsroom-read-more {
  color: #9dfff0;
  font-size: 13px;
}

.newsroom-side-stories {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.newsroom-story-card {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  height: 197px;
  min-height: 197px;
}

.newsroom-story-card-media,
.newsroom-story-card-media img {
  width: 100%;
  height: 197px;
  min-height: 197px;
}

.newsroom-story-card-media img {
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.newsroom-story-card:hover .newsroom-story-card-media img,
.newsroom-story-card:focus-within .newsroom-story-card-media img {
  transform: scale(1.04);
}

.newsroom-story-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 14px 18px;
}

.newsroom-story-card .newsroom-meta {
  margin-bottom: 6px;
}

.newsroom-story-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.14;
}

.newsroom-story-card p {
  margin-bottom: 9px;
  font-size: 11.5px;
  line-height: 1.4;
}

.newsroom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 11px;
  margin-bottom: 9px;
  color: #727a86;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.newsroom-meta span + span::before {
  margin-right: 11px;
  color: #b4bac3;
  content: "•";
}

.newsroom-story-card h3,
.newsroom-latest-card h3 {
  margin: 0 0 8px;
  color: #101419;
  font-size: 17px;
  letter-spacing: -.3px;
  line-height: 1.18;
}

.newsroom-story-card p,
.newsroom-latest-card p {
  margin-bottom: 16px;
  color: #5d6672;
  font-size: 12px;
  line-height: 1.55;
}

.newsroom-latest-section {
  margin-bottom: 42px;
}

.newsroom-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}

.newsroom-section-heading h2 {
  margin: 7px 0 0;
  color: #111218;
  font-size: 25px;
  letter-spacing: -.6px;
}

.newsroom-section-note {
  color: #6c7480;
  font-size: 12px;
}

.newsroom-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.newsroom-latest-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  min-width: 0;
  min-height: 208px;
  padding: 21px;
  border: 1px solid #e0e3e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgb(8 25 36 / 5%);
}

.newsroom-latest-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  font-size: 20px;
  font-weight: 800;
}

.newsroom-latest-icon-mint { background: #dbfff6; color: #087467; }
.newsroom-latest-icon-purple { background: #f0e7ff; color: #7640b2; }
.newsroom-latest-icon-orange { background: #fff0dd; color: #aa6400; }

.newsroom-communications-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
  padding: 27px 31px;
  border-radius: 18px;
  background: #e6faf5;
  color: #0b312f;
}

.newsroom-communications-strip h2 {
  margin: 6px 0 6px;
  color: #0b312f;
  font-size: 21px;
  letter-spacing: -.4px;
}

.newsroom-communications-strip p {
  margin: 0;
  color: #3d6660;
  font-size: 13px;
}

.newsroom-strip-button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 10px;
  background: #075b57;
  color: #fff;
}

.newsroom-strip-button:hover,
.newsroom-strip-button:focus-visible {
  border-color: #075b57;
  background: #004944;
  color: #fff;
}

/* Full article pages */
.news-article-topbar {
  justify-content: space-between;
}

.news-article-back-link {
  color: #087467;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.news-article-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 24px;
  background: #091d26;
  box-shadow: 0 16px 40px rgb(8 25 36 / 13%);
}

.news-article-hero-media,
.news-article-hero-media img {
  width: 100%;
  height: 440px;
}

.news-article-hero-media img {
  display: block;
  object-fit: cover;
  object-position: center 38%;
  opacity: .72;
}

.news-article-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(2 18 27 / 91%) 0%, rgb(2 18 27 / 70%) 43%, rgb(2 18 27 / 10%) 100%), linear-gradient(0deg, rgb(2 18 27 / 54%), transparent 50%);
  content: "";
  pointer-events: none;
}

.news-article-hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(26px, 6vw, 74px);
  width: min(670px, calc(100% - 52px));
  transform: translateY(-50%);
  color: #fff;
}

.news-article-hero-copy h1 {
  margin: 16px 0 14px;
  color: #fff;
  font-size: clamp(31px, 4vw, 52px);
  letter-spacing: -1.8px;
  line-height: 1.02;
}

.news-article-hero-copy p {
  max-width: 600px;
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-size: 16px;
  line-height: 1.55;
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 45px;
  max-width: 1040px;
  margin: 35px auto 20px;
}

.news-article-main {
  min-width: 0;
}

.news-article-byline {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 23px;
  border-bottom: 1px solid #e0e3e8;
}

.news-article-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #d9fff6;
  color: #075b57;
  font-size: 13px;
  font-weight: 800;
}

.news-article-byline > div:not(.news-article-meta) {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.news-article-byline strong {
  color: #111218;
  font-size: 13px;
}

.news-article-byline span:not(.news-article-avatar) {
  color: #6d7580;
  font-size: 11px;
}

.news-article-meta {
  display: flex;
  gap: 15px;
  margin-left: auto;
  color: #6d7580;
  font-size: 11px;
}

.news-article-copy {
  padding: 27px 0 6px;
}

.news-article-copy p,
.news-article-copy li {
  color: #313945;
  font-size: 15px;
  line-height: 1.75;
}

.news-article-copy h2 {
  margin: 30px 0 10px;
  color: #111218;
  font-size: 23px;
  letter-spacing: -.45px;
}

.news-article-copy ol,
.news-article-copy ul {
  margin: 15px 0 23px;
  padding-left: 23px;
}

.news-article-copy li + li {
  margin-top: 8px;
}

.news-article-copy blockquote {
  margin: 27px 0;
  padding: 18px 22px;
  border-left: 3px solid #42f4ce;
  background: #effbf8;
  color: #075b57;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.45;
}

.news-article-copy blockquote cite {
  display: block;
  margin-top: 11px;
  color: #4d756f;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}

.news-article-callout {
  margin: 25px 0;
  padding: 18px 20px;
  border: 1px solid #d8e7ff;
  border-radius: 13px;
  background: #f1f6ff;
  color: #234673;
}

.news-article-callout-mint {
  border-color: #cceee4;
  background: #effbf8;
  color: #075b57;
}

.news-article-callout strong {
  display: block;
  margin-bottom: 5px;
  color: inherit;
  font-size: 13px;
}

.news-article-callout p {
  margin: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.6;
}

.news-article-actions {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 25px;
  padding-top: 21px;
  border-top: 1px solid #e0e3e8;
}

.news-article-aside {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.news-article-aside-card {
  padding: 19px;
  border: 1px solid #e0e3e8;
  border-radius: 15px;
  background: #fff;
}

.news-article-aside-card dl {
  margin: 13px 0 0;
}

.news-article-aside-card dl > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f3;
}

.news-article-aside-card dl > div:last-child {
  border-bottom: 0;
}

.news-article-aside-card dt {
  color: #737b86;
  font-size: 10px;
  text-transform: uppercase;
}

.news-article-aside-card dd {
  margin: 0;
  color: #1d2731;
  font-size: 12px;
  font-weight: 700;
}

.news-related-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding-top: 13px;
}

.news-related-card img {
  display: block;
  width: 58px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.news-related-link {
  color: #075b57;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .newsroom-feature-grid {
    grid-template-columns: 1fr;
  }

  .newsroom-side-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .news-article-layout {
    gap: 25px;
  }
}

@media (max-width: 760px) {
  .newsroom-masthead {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 27px 24px 25px;
  }

  .newsroom-ownership {
    width: 100%;
  }

  .newsroom-side-stories,
  .newsroom-latest-grid,
  .news-article-layout {
    grid-template-columns: 1fr;
  }

  .newsroom-featured-card,
  .newsroom-featured-media,
  .newsroom-featured-media img {
    height: 420px;
    min-height: 420px;
  }

  .newsroom-story-card,
  .newsroom-story-card-media,
  .newsroom-story-card-media img {
    height: 190px;
    min-height: 190px;
  }

  .news-article-aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-article-hero,
  .news-article-hero-media,
  .news-article-hero-media img {
    min-height: 500px;
    height: 500px;
  }

  .news-article-hero::after {
    background: linear-gradient(0deg, rgb(2 18 27 / 95%) 0%, rgb(2 18 27 / 51%) 68%, rgb(2 18 27 / 10%) 100%);
  }

  .news-article-hero-copy {
    top: auto;
    bottom: 31px;
    transform: none;
  }
}

@media (max-width: 520px) {
  .newsroom-breadcrumb,
  .news-article-topbar {
    font-size: 11px;
  }

  .newsroom-featured-card,
  .newsroom-featured-media,
  .newsroom-featured-media img {
    height: 430px;
    min-height: 430px;
  }

  .newsroom-featured-body {
    padding: 24px 22px 24px;
  }

  .newsroom-featured-body h2 {
    font-size: 28px;
  }

  .newsroom-story-card {
    display: block;
    height: auto;
  }

  .newsroom-story-card-media,
  .newsroom-story-card-media img {
    height: 140px;
    min-height: 140px;
  }

  .newsroom-story-card-body {
    min-height: 180px;
    padding: 18px;
  }

  .newsroom-latest-card {
    min-height: 0;
  }

  .newsroom-section-heading,
  .newsroom-communications-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsroom-communications-strip {
    padding: 23px 20px;
  }

  .news-article-hero,
  .news-article-hero-media,
  .news-article-hero-media img {
    min-height: 520px;
    height: 520px;
  }

  .news-article-hero-copy {
    left: 22px;
    width: calc(100% - 44px);
  }

  .news-article-hero-copy h1 {
    font-size: 34px;
  }

  .news-article-hero-copy p {
    font-size: 14px;
  }

  .news-article-byline {
    flex-wrap: wrap;
  }

  .news-article-meta {
    width: 100%;
    margin-left: 54px;
  }

  .news-article-aside {
    grid-template-columns: 1fr;
  }

  .news-article-actions .row {
    align-items: stretch;
    flex-direction: column;
  }

  .news-article-actions .btn {
    width: 100%;
  }
}
