/* Featured News Post Styles */

.featured-news-post {
  position: relative;
  padding: 0;
}

.featured-news-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-news-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.featured-news-post .headline-sub-title {
  color: #fff;
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .featured-news-bg {
    height: 500px;
  }

  .featured-news-post h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .featured-news-bg {
    height: 400px;
  }

  .featured-news-post h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .featured-news-post .headline-sub-title {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}
