/* ==========================================================================
   News & Media Hub — mockup layout (hero → body)
   ========================================================================== */

.news-hub {
  background: #f4f6f5;
}

/* ─── Hero ─── */
.news-hub-hero {
  position: relative;
  min-height: 320px;
  padding: 3.5rem 0 7rem;
  background: linear-gradient(105deg, #003320 0%, #004026 42%, #005a34 100%);
  color: #fff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .news-hub-hero {
    min-height: 380px;
    padding: 4rem 0 8.5rem;
  }
}

.news-hub-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 48, 30, 0.92) 0%, rgba(0, 64, 38, 0.75) 45%, rgba(0, 64, 38, 0.35) 100%),
    url("../img/profile/profile2.jpeg") center 30% / cover no-repeat;
  opacity: 0.45;
}

.news-hub-hero__portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(48%, 420px);
  max-height: 100%;
  pointer-events: none;
  z-index: 1;
  display: none;
}

@media (min-width: 992px) {
  .news-hub-hero__portrait {
    display: block;
  }
}

.news-hub-hero__portrait img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

.news-hub-hero__inner {
  position: relative;
  z-index: 2;
}

.news-hub-hero__copy {
  max-width: 560px;
}

.news-hub-hero h1 {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #fff;
}

.news-hub-dot {
  color: var(--yellow, #ffc107);
}

.news-hub-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.92;
  margin: 0;
  max-width: 480px;
}

/* ─── Featured card ─── */
.news-hub-featured-section {
  margin-top: -4.5rem;
  position: relative;
  z-index: 10;
  padding-bottom: 0.5rem;
}

.news-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 32, 20, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 64, 38, 0.08);
}

@media (min-width: 992px) {
  .news-featured-card {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 320px;
  }
}

.news-featured-card__body {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .news-featured-card__body {
    padding: 2.25rem 2.5rem;
  }
}

.news-featured-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green-primary, #004026);
  margin: 0 0 0.75rem;
}

.news-featured-card__title {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.news-featured-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #555;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured-card__meta {
  font-size: 0.8125rem;
  color: #888;
  margin-bottom: 1.25rem;
}

.news-featured-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.news-btn-read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-primary, #004026);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.news-btn-read:hover {
  background: var(--green-mid, #006b3f);
  color: #fff !important;
  transform: translateY(-1px);
}

.news-icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.news-icon-btn:hover {
  border-color: var(--green-primary, #004026);
  color: var(--green-primary, #004026);
}

.news-featured-card__media {
  position: relative;
  min-height: 220px;
  background: #e8ece9;
}

@media (min-width: 992px) {
  .news-featured-card__media {
    min-height: 100%;
  }
}

.news-featured-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
}

.news-featured-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--yellow, #ffc107);
  color: #1a1a1a;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}

/* ─── Live ticker ─── */
.news-live-ticker {
  background: var(--green-primary, #004026);
  color: #fff;
  padding: 0.65rem 0;
  margin-bottom: 0;
}

.news-live-ticker__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  max-width: 1320px;
  margin: 0 auto;
}

.news-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
  color: #ff6b6b;
}

.news-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  animation: news-live-pulse 1.4s ease-in-out infinite;
}

@keyframes news-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.news-live-ticker__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.news-live-ticker__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: news-ticker-scroll 40s linear infinite;
}

.news-live-ticker__track.is-paused {
  animation-play-state: paused;
}

@keyframes news-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.news-live-item {
  font-size: 0.8125rem;
  opacity: 0.95;
}

.news-live-item::before {
  content: "•";
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.news-live-item:first-child::before {
  content: none;
  margin: 0;
}

.news-live-ticker__nav {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.news-live-nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.news-live-nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ─── Main body ─── */
.news-hub-body {
  padding: 2.5rem 0 3.5rem;
}

/* Category pills */
.news-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.news-cat-pill {
  border: 1px solid #d0d5d2;
  background: #fff;
  color: #444;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.news-cat-pill:hover {
  border-color: var(--green-primary, #004026);
  color: var(--green-primary, #004026);
}

.news-cat-pill.is-active {
  background: var(--green-primary, #004026);
  border-color: var(--green-primary, #004026);
  color: #fff;
}

/* Grid cards — hub variant */
.news-hub .news-grid-card {
  height: 100%;
}

.news-hub .news-grid-card__link {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 32, 20, 0.06);
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-hub .news-grid-card__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 32, 20, 0.1);
  color: inherit;
}

.news-hub .news-grid-card__thumb {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #e8ece9;
}

.news-hub .news-grid-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-hub .news-grid-card__link:hover .news-grid-card__thumb img {
  transform: scale(1.05);
}

.news-hub .news-grid-card__tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--yellow, #ffc107);
  color: #1a1a1a;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  z-index: 2;
}

.news-hub .news-grid-card__tag--video {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
}

.news-hub .news-grid-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.news-hub .news-grid-card__play i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-primary, #004026);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.news-hub .news-grid-card__duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  z-index: 2;
}

.news-hub .news-grid-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.news-hub .news-grid-card__body h3 {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-hub .news-grid-card__meta {
  font-size: 0.75rem;
  color: #888;
}

.news-btn-load-more {
  border: 2px solid #1a1a1a;
  background: #fff;
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.news-btn-load-more:hover {
  background: #1a1a1a;
  color: #fff;
}

.news-btn-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Section blocks */
.news-section-block {
  margin-top: 2.5rem;
}

.news-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.news-section-head h2 {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 1.125rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.news-section-link {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-primary, #004026);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.news-section-link:hover {
  color: var(--green-mid, #006b3f);
}

/* Video cards */
.news-video-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 32, 20, 0.08);
  color: inherit;
}

.news-video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #222;
}

.news-video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.news-video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-video-card__play i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-primary, #004026);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.news-video-card__duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.15rem 0.35rem;
  border-radius: 3px;
}

.news-video-card__body {
  padding: 0.75rem 0.85rem;
}

.news-video-card__body h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  line-height: 1.35;
  color: #1a1a1a;
}

.news-video-card__views {
  font-size: 0.6875rem;
  color: #888;
}

/* Gallery */
.news-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.news-gallery-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.news-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-gallery-item:hover img {
  transform: scale(1.06);
}

/* Social widget */
.news-social-widget .news-section-head {
  align-items: flex-start;
}

.news-social-widget__icons {
  display: flex;
  gap: 0.5rem;
}

.news-social-widget__icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-primary, #004026);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.news-social-widget__icons a:hover {
  background: var(--green-mid, #006b3f);
  color: #fff;
}

.news-social-post {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 32, 20, 0.05);
}

.news-social-post__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.news-social-post__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8ece9;
  color: var(--green-primary, #004026);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.news-social-post__head strong {
  display: block;
  font-size: 0.875rem;
  color: #1a1a1a;
}

.news-social-post__head span {
  font-size: 0.75rem;
  color: #888;
}

.news-social-post p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #444;
  margin: 0 0 0.75rem;
}

.news-social-post p a {
  color: var(--green-primary, #004026);
}

.news-social-post__media {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.news-social-post__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Sidebar ─── */
.news-hub-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-sidebar-search {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.news-search-wrap {
  flex: 1;
  position: relative;
}

.news-search-wrap i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}

.news-search-wrap .form-control {
  padding-left: 2.35rem;
  border-radius: 8px;
  border: 1px solid #d0d5d2;
  font-size: 0.875rem;
  min-height: 44px;
}

.news-btn-filters {
  border: 1px solid #d0d5d2;
  background: #fff;
  color: #444;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0 1rem;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.news-btn-filters:hover {
  border-color: var(--green-primary, #004026);
  color: var(--green-primary, #004026);
}

.news-sidebar-filters {
  margin-top: -0.5rem;
}

.news-sidebar-panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 32, 20, 0.04);
}

.news-sidebar-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.news-sidebar-panel h3 {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 0.9375rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.news-press-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #eee;
}

.news-press-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-press-list a {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
}

.news-press-list a:hover {
  color: var(--green-primary, #004026);
}

.news-press-list time {
  display: block;
  font-size: 0.6875rem;
  color: #999;
  font-weight: 400;
  margin-top: 0.2rem;
}

.news-press-list .bi-file-earmark-pdf {
  color: #dc3545;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.news-downloads-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.news-downloads-list li:last-child {
  border-bottom: 0;
}

.news-downloads-list a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.news-downloads-list a i {
  color: var(--green-primary, #004026);
  font-size: 1rem;
}

.news-downloads-list a:hover {
  color: var(--green-primary, #004026);
}

/* Timeline */
.news-timeline {
  position: relative;
  padding-left: 1.25rem;
  margin: 0;
}

.news-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--green-primary, #004026), rgba(0, 64, 38, 0.2));
  border-radius: 2px;
}

.news-timeline li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1rem;
}

.news-timeline li::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-primary, #004026);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--green-primary, #004026);
}

.news-timeline__year {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--green-primary, #004026);
  letter-spacing: 0.04em;
}

.news-timeline__text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333;
}

/* Subscribe box */
.news-subscribe-box {
  background: var(--green-primary, #004026);
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
}

.news-subscribe-box h3 {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #fff;
}

.news-subscribe-box p {
  font-size: 0.8125rem;
  opacity: 0.9;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.news-subscribe-input {
  display: flex;
  gap: 0;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  overflow: hidden;
}

.news-subscribe-input .form-control {
  border: none;
  border-radius: 0;
  font-size: 0.875rem;
  min-height: 44px;
}

.news-btn-subscribe {
  background: var(--yellow, #ffc107);
  color: #1a1a1a;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: none;
  padding: 0 1.1rem;
  white-space: nowrap;
  border-radius: 0;
}

.news-btn-subscribe:hover {
  background: #e6ac00;
  color: #1a1a1a;
}

.news-btn-whatsapp {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.news-btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.news-badge-emergency {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: #dc3545;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Article page (unchanged essentials) */
.news-article-full {
  max-width: 800px;
  margin: 0 auto;
}

.news-article-full h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--green-primary);
  margin: 1rem 0 1.5rem;
}

.news-article-meta {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.news-article-meta .badge-type {
  display: inline-block;
  background: rgba(0, 64, 38, 0.1);
  color: var(--green-primary);
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.news-article-hero img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.news-article-content {
  line-height: 1.75;
  font-size: 1.0625rem;
  color: var(--text-dark, #1a1a1a);
}

.news-article-content p { margin-bottom: 1rem; }

.news-article-content h1,
.news-article-content h2,
.news-article-content h3,
.news-article-content h4,
.news-article-content h5,
.news-article-content h6 {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  line-height: 1.25;
  margin: 1.75rem 0 0.75rem;
  color: var(--green-primary, #004026);
}

.news-article-content h1 { font-size: 2rem; }
.news-article-content h2 { font-size: 1.65rem; }
.news-article-content h3 { font-size: 1.4rem; }
.news-article-content h4 { font-size: 1.2rem; }
.news-article-content h5 { font-size: 1.05rem; }
.news-article-content h6 { font-size: 0.95rem; }

.news-article-content ul,
.news-article-content ol {
  margin: 0 0 1.25rem 1.25rem;
  padding-left: 1rem;
}

.news-article-content li { margin-bottom: 0.35rem; }

.news-article-content a {
  color: var(--green-primary, #004026);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md, 12px);
  margin: 1rem 0;
}

.news-article-content blockquote {
  border-left: 4px solid var(--gold, #d4a017);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  color: #444;
  font-style: italic;
}

.news-article-content .article-embed,
.news-article-content iframe {
  max-width: 100%;
}

.news-article-content .article-embed {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.news-article-content .article-embed--video iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 200px;
  border: 0;
  border-radius: var(--radius-md, 12px);
}

.news-article-content .article-embed--instagram iframe {
  width: 100%;
  max-width: 400px;
  min-height: 480px;
  border: 0;
  border-radius: var(--radius-md, 12px);
}

.news-article-content table {
  width: 100%;
  margin-bottom: 1.25rem;
  border-collapse: collapse;
}

.news-article-content th,
.news-article-content td {
  border: 1px solid #dee2e6;
  padding: 0.5rem 0.75rem;
}

.news-badge-emergency-inline {
  color: #dc3545;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 991.98px) {
  .news-hub-featured-section {
    margin-top: -2rem;
  }

  .news-hub-body {
    padding-top: 1.75rem;
  }
}
