/* --- Mobile-First Article Typography --- */
.news-article {
  font-family: 'Helvetica Neue', Arial, sans-serif; 
}

/* --- Unify Article Content and Paragraph Widths --- */
/* Constrained Reading Width for optimal UX */
.news-body-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px; /* Ensures text doesn't touch the edges on mobile */
  font-size: 1.125rem; /* 18px baseline for mobile readability */
  line-height: 1.8;
  color: #2b2b2b; /* Dark grey, softer than pure black */
}

/* Ensure native Drupal text paragraphs map to the correct sizing */
.news-body-content p {
  margin-bottom: 1.5rem;
}

/* Ensure the slider and other custom blocks take up the full 800px width */
.news-body-content .news-component-block,
.news-body-content > div {
  width: 100%;
}

/* Desktop Typography Adjustments */
@media (min-width: 768px) {
  .news-body-content {
    font-size: 1.25rem; /* 20px on larger screens */
    padding: 0; /* Remove side padding on desktop where width is constrained */
  }
}

/* --- Hero Image Layout --- */
.news-hero {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  background-color: transparent;
}

.news-hero .hero-media img,
.news-hero .hero-media video {
  width: 100%;
  height: 50vh; /* Takes up 50% of the mobile viewport height */
  object-fit: cover; /* Ensures the image fills the space without stretching */
  display: block;
}

@media (min-width: 768px) {
  .news-hero .hero-media img,
  .news-hero .hero-media video {
    height: 70vh; /* Taller hero on desktop */
  }
}

/* --- Primary Node Caption --- */
.hero-caption {
  font-size: 1.1rem;
  color: #D4AF37; /* Matches your gold theme */
  font-weight: 600;
  font-style: italic; /* Forces italicization */
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eaeaea;
}