.top-stories {
  padding: 60px 0;
  background: #f5f5f5;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

.story {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: 100%;
}

.story-content{
    margin:20px
}

.story-image-left{
    height: 328px;
    width: 720px;
    overflow: hidden;
    /* border-radius: 16px; */
    padding: 20px;
}


.story-image-left img {
     width: 100%;
    height: 100%;
    object-fit: cover;
    /* display: block; */
    /* padding: 20px; */
    border-radius: 16px;
}

/* Featured */
/* .story--featured .story-image {
  height: 420px;
} */

/* Right side cards */
/* RIGHT SIDE CARD */
.story--compact {
  display: flex;
  align-items: center;
  gap: 20px;

  background: #fff;
  border-radius: 20px;
  padding: 16px;

  width: 100%;
}

/* IMAGE */
.story--compact .story-image {
     width: 280px;
    /* min-width: 410px; */
    height: 164px;
    border-radius: 16px;
    overflow: hidden;
}

.story--compact .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.story--compact .story-content {
  flex: 1;
}

.story--compact .story-meta {
  font-size: 14px;
  color: #777;
  display: block;
  margin-bottom: 6px;
}

.story--compact .story-title {
  font-size: 18px;
  margin: 0 0 8px;
}

.story--compact .story-title a {
  text-decoration: none;
  color: #1a1a1a;
}

.story--compact .story-link {
  font-size: 14px;
  color: #5b2dcc;
  text-decoration: none;
  font-weight: 500;
}

/* Spotlight section */
/* ===== Spotlight Wrapper ===== */
.spotlight {
  position: relative;
  width: 100%;
  /* height: 420px; */
  margin: 60px 0;
  /* background: #f5f5f5; */
}

/* ===== Image ===== */
.spotlight__media {
  width: 100%;
  /* height: 100%; */
}

.spotlight__media img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  /* border-radius: 45px; */
  display: block;
 
}

/* ===== Blue Overlay Card ===== */
.spotlight__overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0d6efd;
  color: #fff;

  padding: 42px 155px;
  max-width: 420px;
  border-radius: 0px 120px 120px 0;

  display: flex;
  flex-direction: column;   /* 🔑 THIS */
  align-items: flex-start; /* 🔑 */
}


/* Date */
.spotlight__date {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.spotlight__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.3;
}

.story-card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
  margin-top: 4px;
}

.story-card__link:hover {
  opacity: 0.85;
}


/* Section */
.other-stories {
  margin: 80px 0;
}

.other-stories__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #4a4a4a;
}

/* Story list */
.other-stories__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card */
.story-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* Image */
.story-card__image img {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

/* Content */
.story-card__content {
  flex: 1;
}

.story-card__meta {
  font-size: 13px;
  color: #8a8a8a;
  display: block;
  margin-bottom: 6px;
}

.story-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #333;
}

.story-card__summary {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.story-card__link {
  font-size: 14px;
  font-weight: 500;
  color: #5a2ca0;
  text-decoration: none;
}

.story-card__link:hover {
  text-decoration: underline;
}



/* ===============================
   News Detail
================================ */
.news-detail {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
}

.news-detail__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.3;
}

/* Hero image */
.news-detail__image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.news-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Meta */
.news-detail__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.news-detail__actions a {
  margin-left: 12px;
  text-decoration: none;
  font-size: 16px;
}

/* Content */
.news-detail__subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.news-detail__content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* Download CTA */
.news-detail__download {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #eee;
  margin-top: 32px;
  font-size: 14px;
}

.download-link {
  color: #0d6efd;
  font-weight: 500;
  text-decoration: none;
}

/* ===============================
   Related News
================================ */
.related-news {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
}

.related-news__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.related-news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Cards */
.related-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.related-card__tag {
  display: inline-block;
  font-size: 11px;
  color: #6f42c1;
  margin: 10px 12px 4px;
}

.related-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 12px 16px;
}

/* ===========================
   OTHER STORIES FILTER BAR
=========================== */

/* ===============================
   OTHER STORIES – HEADER (FIGMA)
   =============================== */

.news-filters {
  width: 100%;
}

.news-filters__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* LEFT: Title */
.news-filters__title {
  flex: 1;
}

.news-filters__title .section-title {
  margin: 0;
}

/* RIGHT: Search + Filter */
.news-filters__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* -----------------
   SEARCH INPUT
------------------ */
.news-filters__search {
  width: 320px;
}

.news-filters__search input {
  width: 100%;
  height: 40px;
  border-radius: 999px;
  padding: 0 16px 0 36px;
}

/* -----------------
   FILTER DROPDOWN
------------------ */
.news-filters__category {
  display: inline-flex;
  align-items: center;
  position: relative;
}

/* Kill Drupal / Bootstrap widths */
.news-filters__category,
.news-filters__category .form-item,
.news-filters__category select {
  width: auto !important;
  max-width: none !important;
}

/* Hide label completely */
.news-filters__category label {
  display: none !important;
}

/* Dropdown styling like Figma */
.news-filters__category select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #6f2dbd;
  padding: 6px 22px 6px 0;
  cursor: pointer;
  appearance: none;
  white-space: nowrap;
}

/* Caret */
.news-filters__category::after {
  content: "▾";
  font-size: 12px;
  color: #6f2dbd;
  margin-left: 6px;
  pointer-events: none;
}

.view-news .views-exposed-form {
  display: none;
}

/* Align views pagination to right */
.pager,
.pager__items,
.js-pager__items,
.pagination {
  display: flex;
  justify-content: flex-end;
  margin-right: 75px;
}