/* ============================================================
   Newsroom Page
   ============================================================ */

.newsroom-page {
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 4rem 4rem;
  box-sizing: border-box;
}

/* ---- Section Header (reuse hero-brand from explore, hidden globally in base.css) ---- */

.newsroom-header {
  text-align: center;
  padding-top: 3rem;
  margin-bottom: 1.5rem;
}

.newsroom-page .hero-brand-title {
  display: flex !important;
  justify-content: center;
  margin: 0;
}

.newsroom-page .hero-brand-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.newsroom-page .hero-brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 168, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsroom-page .hero-brand-link:hover .hero-brand-logo {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(0, 168, 255, 0.6);
}

.newsroom-page .brand-dash {
  display: inline !important;
  font-size: 2.5rem;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.newsroom-page .hero-brand-link:hover .brand-dash {
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.4);
}

.newsroom-header-accent {
  font-size: 2.5rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-primary, #00a8ff);
}

.newsroom-header-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.4rem auto 0;
  max-width: 600px;
}


/* ---- Group selector pills ---- */

.newsroom-group-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
}

.newsroom-group-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.newsroom-group-pill:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.newsroom-group-pill.is-active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.newsroom-group-pill-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.newsroom-group-pill-thumb-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Showcase container — match /explore exactly via reused .showcase-* classes,
       just trim outer padding for /news. ---- */

.newsroom-page .showcase-content-wrapper {
  padding: 0;
}

.newsroom-page .showcase-content {
  min-height: 400px;
}

.newsroom-page .showcase-empty,
.newsroom-page .showcase-error {
  padding: 4rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.newsroom-page .showcase-empty a,
.newsroom-page .showcase-error a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}
