/*
 * Shared news-panel background for public pages that do not use the homepage's
 * full hero component stylesheet.
 */
.hero-news {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: transparent;
}

.hero-news::before,
.hero-news::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-news::before {
  background: url("/images/news-bg.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero-news::after {
  background: rgba(0, 0, 0, 0.60);
  z-index: 1;
}

.hero-news > * {
  position: relative;
  z-index: 2;
}

.hero-news .news-placeholder {
  max-width: 1100px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(1px);
}

@media (max-width: 768px) {
  .hero-news {
    min-height: auto;
  }
}
