.news-entry {
  position: relative;
  background-color: rgba(0, 0, 0, 0.6); /* sÃļtÃŠt overlay */
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  z-index: 0;
}

.news-entry > * {
  position: relative;
  z-index: 1;
}