:root {
  --st-news-ink: #0b2f45;
  --st-news-teal: #087f80;
  --st-news-teal-dark: #07565c;
  --st-news-orange: #d56e35;
  --st-news-gold: #e3b23c;
  --st-news-mist: #eef8f6;
  --st-news-line: #c7ddda;
}

.st-news-article,
.st-news-article__body {
  color: #173842;
  font-size: 1rem;
  line-height: 1.72;
}

.st-news-article--preview {
  border: 1px solid var(--st-news-line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 38px rgba(10, 47, 69, .08);
}

.st-news-image {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #061426;
}
.st-news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.st-news-hero {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background:
    radial-gradient(circle at 90% 0, rgba(71, 182, 169, .3), transparent 34%),
    linear-gradient(135deg, #073f4b 0%, #075f65 58%, #0e7a76 100%);
  color: #fff;
}

.st-news-hero::after {
  content: "ST";
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: -.35em;
  color: rgba(255,255,255,.07);
  font: 800 clamp(5rem, 12vw, 10rem)/1 Manrope, Inter, sans-serif;
  pointer-events: none;
}

.st-news-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  margin-bottom: 1rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.st-news-hero__meta span {
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: .35rem .7rem;
}

.st-news-hero__meta time { color: #cceee8; }

.st-news-urgency {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0 0 1rem;
  padding: .5rem .78rem;
  border-radius: 9px;
  background: #fff2d1;
  color: #7a421f;
  font-weight: 800;
}

.st-news-lead {
  position: relative;
  z-index: 1;
  max-width: 66rem;
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.58;
}

.st-news-at-a-glance,
.st-news-article__body > section,
.st-news-article__body > aside {
  max-width: 74rem;
  margin: 0 auto;
}

.st-news-at-a-glance { padding: clamp(1.35rem, 3vw, 2.25rem); }

.st-news-at-a-glance h2,
.st-news-article__body h2 {
  color: var(--st-news-ink);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.25;
}

.st-news-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  padding: 0;
  list-style: none;
}

.st-news-facts li {
  position: relative;
  min-height: 100%;
  padding: 1rem 1rem 1rem 2.5rem;
  border: 1px solid var(--st-news-line);
  border-radius: 14px;
  background: var(--st-news-mist);
}

.st-news-facts li::before {
  content: "✓";
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--st-news-teal);
  font-weight: 900;
}

.st-news-article__body {
  padding: clamp(1.25rem, 3vw, 2.75rem);
  background: #fff;
}

.st-news-article__body > section { margin-bottom: 2.2rem; }

.st-news-article__body ul:not(.st-news-facts),
.st-news-checklist { padding-left: 1.35rem; }

.st-news-article__body li { margin-bottom: .65rem; }

.st-news-actions {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #b8d9d4;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3fbf9, #e7f6f3);
}

.st-news-checklist { counter-reset: news-action; list-style: none; padding: 0; }
.st-news-checklist li {
  position: relative;
  padding: .9rem .9rem .9rem 3.25rem;
  border-bottom: 1px solid rgba(7, 127, 128, .16);
}
.st-news-checklist li:last-child { border-bottom: 0; }
.st-news-checklist li::before {
  counter-increment: news-action;
  content: counter(news-action);
  position: absolute;
  left: .25rem;
  top: .65rem;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--st-news-teal);
  color: #fff;
  font-weight: 800;
}

.st-news-career {
  margin-bottom: 2.2rem !important;
  padding: 1.3rem 1.5rem;
  border-left: 5px solid var(--st-news-gold);
  border-radius: 0 14px 14px 0;
  background: #fff8e7;
}
.st-news-career strong { color: var(--st-news-ink); font-size: 1.08rem; }
.st-news-career p { margin: .45rem 0 0; }

.st-news-source {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #d4dedc;
  border-radius: 18px;
  background: #f7f9f8;
}
.st-news-source a { color: #006b75; text-decoration: underline; text-underline-offset: 3px; }
.st-news-source dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem 1.25rem;
  margin: 1rem 0;
}
.st-news-source dl div { padding: .7rem 0; border-top: 1px solid #dce6e4; }
.st-news-source dt { color: #567077; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.st-news-source dd { margin: .2rem 0 0; color: var(--st-news-ink); font-weight: 700; }
.st-news-editorial-note { margin-bottom: 0; color: #587078; font-size: .92rem; }

.st-news-member-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 2.4rem !important;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 18px;
  background: linear-gradient(120deg, #073f4b, #087f80);
  color: #fff;
}
.st-news-member-cta strong { font: 800 clamp(1.2rem, 2vw, 1.6rem)/1.3 Manrope, Inter, sans-serif; }
.st-news-member-cta p { margin: .45rem 0 0; color: #dcf4ef; }
.st-news-member-cta__actions { display: flex; flex: 0 0 auto; gap: .65rem; }
.st-news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .7rem 1rem;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
}
.st-news-button--primary { border-color: var(--st-news-gold); background: var(--st-news-gold); color: #173842 !important; }
.st-authenticated .st-news-member-cta { display: none !important; }

.st-news-preview-gate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid var(--st-news-line);
  background: linear-gradient(120deg, #073f4b, #087f80);
  color: #fff;
}
.st-news-preview-gate strong { font: 800 clamp(1.1rem, 2vw, 1.4rem)/1.3 Manrope, Inter, sans-serif; }
.st-news-preview-gate p { margin: .4rem 0 0; color: #dcf4ef; }
.st-news-preview-gate__actions { display: flex; flex: 0 0 auto; gap: .65rem; }
.st-authenticated .st-news-preview-gate { display: none !important; }

body.st-cybersecurity-news-page #eb .eb-empty,
body.st-cybersecurity-news-page #eb .o-empty { display: none !important; }

.st-news-hub-intro {
  max-width: 1180px;
  margin: 1rem auto 2rem;
  border: 1px solid var(--st-news-line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 42px rgba(10,47,69,.08);
}
.st-news-hub-intro__copy {
  padding: clamp(1.75rem, 4vw, 4rem);
  background: radial-gradient(circle at 88% 0, rgba(86,199,182,.32), transparent 35%), linear-gradient(135deg,#073f4b,#087f80);
  color: #fff;
}
.st-news-hub-intro__eyebrow { margin: 0 0 .8rem; color: #9de8dc; font-size: .8rem; font-weight: 900; letter-spacing: .15em; }
.st-news-hub-intro h1 { max-width: 900px; margin: 0; color: #fff; font-size: clamp(2rem,5vw,4.5rem); line-height: 1.02; }
.st-news-hub-intro__lead { max-width: 850px; margin: 1.25rem 0 0; color: #e4f7f4; font-size: clamp(1rem,1.7vw,1.25rem); }
.st-news-hub-intro__principles { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; margin: 0; padding: 1rem clamp(1.5rem,4vw,4rem); list-style: none; background: #eef8f6; }
.st-news-hub-intro__principles li { display: flex; align-items: center; gap: .4rem; color: var(--st-news-ink); font-weight: 750; }
.st-news-hub-intro__principles span { color: var(--st-news-teal); }
.st-news-hub-categories { padding: clamp(1.5rem,4vw,3rem); }
.st-news-hub-categories h2 { color: var(--st-news-ink); }
.st-news-hub-categories__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .9rem; }
.st-news-hub-category { display: flex; flex-direction: column; min-height: 170px; padding: 1.15rem; border: 1px solid var(--st-news-line); border-radius: 16px; color: var(--st-news-ink) !important; text-decoration: none !important; }
.st-news-hub-category:hover { border-color: var(--st-news-teal); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(10,47,69,.09); }
.st-news-hub-category strong { font-size: 1.05rem; }
.st-news-hub-category small { margin: .6rem 0 1rem; color: #577078; line-height: 1.45; }
.st-news-hub-category span { margin-top: auto; color: #9b4d25; font-weight: 800; }

.st-news-preview-page {
  max-width: 1180px;
  margin: 1rem auto 2.5rem;
  border: 1px solid var(--st-news-line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 42px rgba(10,47,69,.08);
}
.st-news-preview-page__heading {
  padding: clamp(1.5rem,4vw,3rem);
  background: #062f3b;
}
.st-news-preview-page__heading h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem,4vw,3.7rem);
  line-height: 1.08;
}
.st-news-preview-page__content .st-news-article--preview {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.st-news-preview-page__actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 clamp(1.25rem,3vw,2rem) clamp(1.25rem,3vw,2rem);
}

@media (max-width: 767.98px) {
  .st-news-facts,
  .st-news-source dl { grid-template-columns: 1fr; }
  .st-news-member-cta { align-items: stretch; flex-direction: column; }
  .st-news-member-cta__actions { flex-direction: column; }
  .st-news-preview-gate { align-items: stretch; flex-direction: column; }
  .st-news-preview-gate__actions { flex-direction: column; }
  .st-news-button { width: 100%; }
  .st-news-hub-categories__grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .st-news-hub-categories__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
