/* =========================================================
   newsroom.css — UNCDF Bank DRC · Newsroom / Media Page
   Depends on: styles.css (custom properties, Quicksand font)
   ========================================================= */

/* ---------------------------------------------------------
   1. NEWSROOM HERO
   --------------------------------------------------------- */
.newsroom-hero {
  background-color: var(--dark);
  background-image: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a0002 40%,
    var(--red) 100%
  );
  padding: 72px 0 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.newsroom-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(42,61,143, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.newsroom-hero .wrap {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Breadcrumb */
.newsroom-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.newsroom-hero .breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  opacity: 0.4;
}

.newsroom-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.newsroom-hero .breadcrumb a:hover {
  color: var(--white);
}

.newsroom-hero .breadcrumb li:last-child {
  color: rgba(255, 255, 255, 0.9);
}

/* Heading */
.newsroom-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 680px;
}

/* Lede */
.newsroom-hero .hero-lede {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 0 36px;
}

/* Search row */
.newsroom-hero .hero-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 540px;
}

.newsroom-hero .hero-search-row input[type="search"],
.newsroom-hero .hero-search-row input[type="text"] {
  flex: 1;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0 16px;
  outline: none;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s;
}

.newsroom-hero .hero-search-row input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsroom-hero .hero-search-row input:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.15);
}

.newsroom-hero .hero-search-row button {
  height: 48px;
  padding: 0 24px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.newsroom-hero .hero-search-row button:hover {
  background: #a81a20;
  transform: translateY(-1px);
}

/* ---------------------------------------------------------
   2. NEWS FILTER BAR
   --------------------------------------------------------- */
.news-filter-bar {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-filter-bar .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 58px;
}

.news-filter-bar .wrap::-webkit-scrollbar {
  display: none;
}

/* Filter pill buttons */
.filter-btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(42,61,143, 0.05);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ---------------------------------------------------------
   3. FEATURED SECTION
   --------------------------------------------------------- */
.featured-section {
  padding: 64px 0 56px;
  background: var(--white);
}

.featured-section .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.featured-section .section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}

.featured-section .section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.featured-section .section-header a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
}

.featured-section .section-header a:hover {
  text-decoration: underline;
}

/* 2-column featured grid */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Featured card */
.featured-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.featured-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Image placeholder */
.featured-card .fc-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

.fc-img-1 { background-image: url("../images/news/news1.jpg"); }
.fc-img-2 { background-image: url("../images/news/news2.jpg"); }
.fc-img-3 { background-image: url("../images/news/news3.jpg"); }

/* Overlay badge (e.g. FEATURED, VIDEO) */
.featured-card .fc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

/* Card body */
.featured-card .fc-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-card .fc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}

.featured-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin: 0 0 12px;
}

.featured-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.featured-card h3 a:hover {
  color: var(--red);
}

.featured-card .fc-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}

.featured-card .fc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-card .fc-date {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.featured-card .fc-read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.featured-card .fc-read-more::after {
  content: "→";
}

.featured-card .fc-read-more:hover {
  gap: 8px;
}

/* ---------------------------------------------------------
   4. NEWS GRID SECTION
   --------------------------------------------------------- */
.news-grid-section {
  padding: 56px 0 64px;
  background: var(--light);
}

.news-grid-section .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-grid-section .section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}

.news-grid-section .section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* 3-column grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* News card */
.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.news-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

/* Image placeholder top */
.news-card .nc-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.news-card .nc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nc-img-a { background-image: url("../images/news/news4.jpg"); }
.nc-img-b { background-image: url("../images/news/news5.jpg"); }
.nc-img-c { background-image: url("../images/news/news6.jpg"); }
.nc-img-d { background-image: url("../images/news/news7.jpg"); }
.nc-img-e { background-image: url("../images/news/news8.jpg"); }
.nc-img-f { background-image: url("../images/news/news9.jpg"); }
.nc-img-g { background-image: url("../images/news/news10.jpg"); }
.nc-img-h { background-image: url("../images/news/news11.jpg"); }
.nc-img-i { background-image: url("../images/news/news12.jpg"); }
.nc-img-j { background-image: url("../images/news/news13.jpg"); }
.nc-img-k { background-image: url("../images/news/news14.jpg"); }
.nc-img-l { background-image: url("../images/news/news15.jpg"); }

/* Card body */
.news-card .nc-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card .nc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--red);
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.45;
  margin: 0 0 10px;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.news-card h3 a:hover {
  color: var(--red);
}

.news-card .nc-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

/* Meta row: date + read time */
.news-card .nc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.news-card .nc-date {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.news-card .nc-read-time {
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--light);
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Hidden state for filtering */
.news-card.hidden {
  display: none;
}

/* Load more */
.news-grid-section .load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.news-grid-section .btn-load-more {
  height: 46px;
  padding: 0 32px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: transparent;
  color: var(--red);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.news-grid-section .btn-load-more:hover {
  background: var(--red);
  color: var(--white);
}

/* ---------------------------------------------------------
   5. PRESS KIT SECTION
   --------------------------------------------------------- */
.press-kit-section {
  padding: 72px 0;
  background-color: var(--dark);
  background-image: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
}

.press-kit-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left copy */
.press-kit-copy {
  color: var(--white);
}

.press-kit-copy .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}

.press-kit-copy h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 18px;
}

.press-kit-copy p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px;
}

.press-kit-copy .btn-contact-press {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 24px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.press-kit-copy .btn-contact-press:hover {
  background: #a81a20;
}

/* Right download cards */
.press-kit-downloads {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dl-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 22px;
  transition: background 0.2s, border-color 0.2s;
}

.dl-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(42,61,143, 0.5);
}

.dl-card .dl-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.dl-card .dl-info {
  flex: 1;
  min-width: 0;
}

.dl-card .dl-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.dl-card .dl-size {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.dl-card .btn-download {
  height: 36px;
  padding: 0 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.dl-card .btn-download:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ---------------------------------------------------------
   6. MEDIA CONTACT SECTION
   --------------------------------------------------------- */
.media-contact-section {
  padding: 72px 0;
  background: var(--light);
}

.media-contact-section .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.media-contact-section .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 12px;
}

.media-contact-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px;
}

.media-contact-section .section-lede {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 40px;
}

/* Contact card */
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 44px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-card .cc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #7a1015);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.contact-card .cc-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
}

.contact-card .cc-role {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 20px;
}

.contact-card .cc-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 20px;
}

.contact-card .cc-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-card .cc-detail a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.contact-card .cc-detail a:hover {
  text-decoration: underline;
}

.contact-card .cc-detail:last-child {
  margin-bottom: 0;
}

.contact-card .cc-icon {
  font-size: 1rem;
  opacity: 0.65;
}

/* ---------------------------------------------------------
   7. RESPONSIVE
   --------------------------------------------------------- */

/* 900px — two-column news grid */
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-kit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* 640px — single column */
@media (max-width: 640px) {
  .newsroom-hero {
    padding: 52px 0 44px;
  }

  .newsroom-hero h1 {
    font-size: 1.75rem;
  }

  .newsroom-hero .hero-search-row {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .news-filter-bar .wrap {
    height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .featured-section,
  .news-grid-section,
  .press-kit-section,
  .media-contact-section {
    padding: 44px 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .newsroom-hero .wrap,
  .featured-section .wrap,
  .news-grid-section .wrap,
  .press-kit-inner,
  .media-contact-section .wrap {
    padding: 0 16px;
  }

  .featured-card .fc-body {
    padding: 20px 18px 18px;
  }

  .news-card .nc-body {
    padding: 18px 16px 16px;
  }

  .dl-card {
    flex-wrap: wrap;
  }
}

/* ── HTML class aliases / additions ── */

/* Press kit classes (HTML uses .pk-copy, .pk-kicker, .pk-downloads, .btn-dl) */
.pk-copy {
  color: var(--white);
}
.pk-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}
.pk-copy h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 18px;
  color: var(--white);
}
.pk-copy p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
}
.pk-downloads {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btn-dl {
  height: 36px;
  padding: 0 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-dl:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Media contact card (HTML uses .mc-card / .mc-icon / .mc-body / .mc-link) */
.mc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 44px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.mc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #7a1015);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.mc-body {
  flex: 1;
  min-width: 0;
}
.mc-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}
.mc-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 18px;
}
.mc-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.mc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.2s;
}
.mc-link:hover {
  opacity: 0.75;
}

/* Featured card tag alias (HTML uses .news-tag in featured cards) */
.featured-card .news-tag,
.news-card .news-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 10px;
}

/* Featured card meta footer (HTML uses .fc-meta / .meta-date / .meta-link) */
.featured-card .fc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}
.meta-date {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.meta-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.meta-link:hover { gap: 8px; }

/* News card tag alias  */
.nc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--red);
  margin-bottom: 10px;
}

/* Load more button (HTML uses .load-more-btn) */
.load-more-btn {
  height: 46px;
  padding: 0 32px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: transparent;
  color: var(--red);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: block;
  margin: 40px auto 0;
}
.load-more-btn:hover {
  background: var(--red);
  color: var(--white);
}

/* News search wrap (hero) */
.news-search-wrap {
  position: relative;
  flex: 1;
}
.news-search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
  pointer-events: none;
  color: var(--white);
}
.news-search-wrap input {
  width: 100%;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0 16px 0 44px;
  outline: none;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.news-search-wrap input::placeholder { color: rgba(255,255,255,0.45); }
.news-search-wrap input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}

/* Hero search row — make flex */
.news-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 580px;
}
.news-search-row button {
  height: 48px;
  padding: 0 24px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.news-search-row button:hover { background: #a81a20; }

/* Featured stack layout */
.featured-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.featured-stack .featured-card {
  flex: 1;
}
