.newsroom-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(53, 168, 200, 0.18), transparent 26rem),
    linear-gradient(135deg, #f8fbff 0%, #e8f2fb 58%, #dceaf7 100%);
}

.newsroom-hero::after {
  content: "";
  position: absolute;
  inset: auto -6rem -13rem auto;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(40, 93, 146, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(40, 93, 146, 0.035), 0 0 0 8rem rgba(40, 93, 146, 0.025);
}

.newsroom-hero .inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.newsroom-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.newsroom-hero h1 { max-width: 780px; }
.newsroom-hero p { max-width: 720px; font-size: clamp(18px, 2vw, 22px); }

.newsroom-orbit {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(40, 93, 146, 0.18);
  border-radius: 50%;
}

.newsroom-orbit::before,
.newsroom-orbit::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(40, 93, 146, 0.14);
  border-radius: 50%;
  transform: rotate(24deg) scaleY(0.62);
}

.newsroom-orbit::after { transform: rotate(-38deg) scaleY(0.5); }

.newsroom-orbit-core {
  position: absolute;
  inset: 38%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 15px 35px rgba(24, 61, 98, 0.24);
}

.newsroom-orbit-persona {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(40, 93, 146, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(19, 45, 78, 0.12);
  font-weight: 750;
}

.newsroom-orbit-persona img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}

.newsroom-orbit-persona--leo { top: 10%; left: -4%; }
.newsroom-orbit-persona--diane { right: -4%; top: 22%; }
.newsroom-orbit-persona--ai { left: 17%; bottom: 8%; }

.newsroom-policy {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 12px 15px;
  border: 1px solid rgba(40, 93, 146, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.newsroom-policy::before { content: "i"; color: var(--brand); font-weight: 900; }

.newsroom-toolbar-wrap {
  position: sticky;
  top: 72px;
  z-index: 4;
  padding: 14px 0;
  background: linear-gradient(to bottom, var(--field) 78%, rgba(238, 244, 251, 0));
}

.newsroom-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(170px, 0.4fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248, 251, 255, 0.96);
  box-shadow: 0 12px 30px rgba(19, 45, 78, 0.09);
  backdrop-filter: blur(14px);
}

.newsroom-field { display: grid; gap: 6px; }
.newsroom-field label { font-size: 12px; font-weight: 800; color: var(--brand-dark); letter-spacing: 0.05em; text-transform: uppercase; }
.newsroom-field input,
.newsroom-field select {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.newsroom-field input:focus,
.newsroom-field select:focus { outline: 3px solid rgba(53, 168, 200, 0.19); border-color: var(--accent); }

.newsroom-result-summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin: 12px 2px 22px;
  color: var(--muted);
}

.newsroom-result-summary strong { color: var(--ink); }

.newsroom-list { display: grid; gap: 34px; }

.newsroom-entry {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.newsroom-entry-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(225, 239, 250, 0.88));
  border-bottom: 1px solid var(--line-soft);
}

.newsroom-kicker { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; }
.newsroom-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #dcecf8;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.newsroom-badge--campaign { background: #fff5d9; color: #72530d; }

.newsroom-entry h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.04; }
.newsroom-entry-deck { max-width: 760px; margin: 0; color: var(--muted); font-size: 18px; }

.newsroom-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 10px;
  align-self: start;
}

.newsroom-metric {
  min-width: 104px;
  padding: 12px;
  border: 1px solid rgba(40, 93, 146, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
}
.newsroom-metric span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; }
.newsroom-metric strong { display: block; margin-top: 3px; font-size: 20px; }

.newsroom-conversation { display: grid; gap: 16px; padding: clamp(24px, 4vw, 42px); }

.newsroom-message {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  max-width: 880px;
}
.newsroom-message:nth-child(even) { margin-left: clamp(0px, 7vw, 84px); }

.newsroom-message img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(19, 45, 78, 0.16);
}

.newsroom-bubble {
  position: relative;
  padding: 15px 18px 17px;
  border: 1px solid var(--line-soft);
  border-radius: 5px 17px 17px;
  background: #fff;
}
.newsroom-message--leo .newsroom-bubble { border-left: 4px solid var(--gold); }
.newsroom-message--diane .newsroom-bubble { border-left: 4px solid var(--accent); background: #f5fcff; }
.newsroom-message--team-ai .newsroom-bubble { border-left: 4px solid var(--brand-dark); background: #f5f8fc; }
.newsroom-speaker { display: flex; flex-wrap: wrap; gap: 7px; align-items: baseline; margin-bottom: 5px; }
.newsroom-speaker strong { color: var(--brand-dark); }
.newsroom-speaker small { color: var(--muted); }
.newsroom-bubble p { margin: 0; line-height: 1.58; }

.newsroom-entry-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px clamp(24px, 4vw, 42px);
  border-top: 1px solid var(--line-soft);
  background: #edf5fb;
}
.newsroom-entry-foot p { margin: 0; color: var(--muted); font-size: 14px; }
.newsroom-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.newsroom-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}
.newsroom-action--primary { background: var(--brand); color: #fff; }
.newsroom-action:hover { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(19, 45, 78, 0.12); }

.newsroom-empty,
.newsroom-error {
  padding: 42px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
}

.newsroom-participation {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 22px;
  background: var(--brand-dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.newsroom-participation p { color: #d9e8f4; }
.newsroom-participation-list { display: grid; gap: 10px; }
.newsroom-participation-item { padding: 13px 15px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 12px; background: rgba(255, 255, 255, 0.06); }

@media (max-width: 900px) {
  .newsroom-hero-grid,
  .newsroom-participation { grid-template-columns: 1fr; }
  .newsroom-orbit { max-width: 310px; }
  .newsroom-toolbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsroom-entry-head,
  .newsroom-entry-foot { grid-template-columns: 1fr; }
  .newsroom-metrics { max-width: 350px; }
  .newsroom-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .newsroom-orbit { width: 270px; }
  .newsroom-orbit-persona { font-size: 12px; }
  .newsroom-orbit-persona img { width: 32px; height: 32px; }
  .newsroom-toolbar { grid-template-columns: 1fr; }
  .newsroom-toolbar-wrap { position: static; }
  .newsroom-entry-head,
  .newsroom-conversation,
  .newsroom-entry-foot { padding: 22px 17px; }
  .newsroom-message,
  .newsroom-message:nth-child(even) { grid-template-columns: 44px minmax(0, 1fr); margin-left: 0; }
  .newsroom-message img { width: 42px; height: 42px; }
  .newsroom-metrics { grid-template-columns: 1fr 1fr; }
  .newsroom-metric:last-child { grid-column: 1 / -1; }
  .newsroom-result-summary { display: block; }
}
