*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.6;
}

/* ── NAV: same overrides as investment page ── */
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}

.nav-item.active .main-nav-botton {
  color: #009e60 !important;
  font-weight: 700;
  position: relative;
}


.nav-item.active .main-nav-botton::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #009e60;
}

.progress-line {
  height: 3px;
  background: rgba(0, 158, 96, 0.06);
}
.progress-line .pgs {
  display: block;
  height: 100%;
  width: 0;
  background: #009e60;
}
.megamenu-placeholder {
  height: 0;
}
.search-result-container {
  display: none;
}
.block-megamenu {
  display: none;
}

/* ── HERO: no background overrides — BNP stylesheet handles .main-header ── */
.col-md-10 {
  width: 100%;
  max-width: 83.33%;
}
.col-lg-8 {
  width: 100%;
  max-width: 66.67%;
}
.col-12 {
  width: 100%;
}
.header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.progress-img-bg {
  display: none;
}

/* Give the image container enough height for the rich overlay */
.main-header-img {
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .main-header-img {
    min-height: 420px;
  }
}

/* ── MODULES: same as investment ── */
.modules {
  background: #ffffff;
}
#module-11402 {
  padding: 0;
}

/* ─────────────────────────────────────
         SHARED HELPERS  (same tokens)
      ───────────────────────────────────── */
.sec-eye {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #009e60;
  margin-bottom: 0.55rem;
}
.sec-title {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  color: #0d2b2b;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.sec-sub {
  font-size: 0.92rem;
  color: #5a5a5a;
  line-height: 1.75;
  max-width: 560px;
}
.g-rule {
  width: 44px;
  height: 3px;
  background: #009e60;
  margin: 0.75rem 0 1.4rem;
  border-radius: 2px;
}
.g-rule-c {
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────
         FILTER / CATEGORY TAB BAR
      ───────────────────────────────────── */
.filter-bar {
  background: #ffffff;
  border-bottom: 1px solid #e0dbd0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.filter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar {
  display: none;
}
.filter-tab {
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a5a5a;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: 'Inter', sans-serif;
}
.filter-tab:hover {
  color: #0d2b2b;
}
.filter-tab.active {
  color: #009e60;
  border-bottom-color: #009e60;
  font-weight: 700;
}

/* ─────────────────────────────────────
         FEATURED / LEAD ARTICLE
      ───────────────────────────────────── */
.featured-section {
  padding: 3.5rem 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid #e0dbd0;
}
.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.featured-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #f2ede0;
  aspect-ratio: 16/9;
}
.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* SVG placeholder image */
.featured-img-svg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #009e60;
  margin-bottom: 0.75rem;
}
.featured-cat::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #009e60;
}
.featured-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0d2b2b;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.featured-excerpt {
  font-size: 0.9rem;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 1.5rem;
}
.featured-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.meta-dot {
  width: 3px;
  height: 3px;
  background: #ccc;
  border-radius: 50%;
}
.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #009e60;
  text-decoration: none;
  border-bottom: 2px solid #009e60;
  padding-bottom: 0.1rem;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.btn-read:hover {
  color: #007a48;
  border-color: #007a48;
}
.btn-read-arrow {
  font-size: 1rem;
  line-height: 1;
}

/* ─────────────────────────────────────
         SECTION: ARTICLE GRID
      ───────────────────────────────────── */
.articles-section {
  padding: 4rem 1.5rem;
  background: #ffffff;
}
.articles-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.articles-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0dbd0;
}

.see-all {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #009e60;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.see-all:hover {
  color: #007a48;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* card-custom card-teaser — reuse original BNP class names */
.card-custom {
  background: #fff;
  border: 1px solid #e0dbd0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.card-custom:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
  border-color: #009e60;
}
.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f2ede0;
  flex-shrink: 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.card-custom:hover .card-img img {
  transform: scale(1.03);
}
.card-img-svg {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-container {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* .category {
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 0.55rem;
      } */
.cat-market {
  color: rgb(241, 236, 236);
}
.cat-sector {
  color: rgb(241, 236, 236);
}
.cat-etf {
  color: rgb(241, 236, 236);
}
.cat-research {
  color: #8b1a4a;
}
.cat-thought {
  color: #5a3e8a;
}
.cat-token {
  color: #007a8a;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d2b2b;
  line-height: 1.35;
  margin-bottom: 0.55rem;
  flex: 1;
}
.card-excerpt {
  font-size: 0.9rem;
  color: #5a5a5a;
  line-height: 1.65;
  margin-bottom: 0.9rem;
}
.card-meta {
  font-size: 0.7rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}
.card-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.card-read {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #009e60;
  text-decoration: none;
  transition: color 0.2s;
}
.card-read:hover {
  color: #007a48;
}
.cta-corner {
  width: 28px;
  height: 28px;
  background: #009e60;
  border-radius: 50%;
  display: flex;
  margin: 20px;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-corner:hover {
  background: #007a48;
}

/* ─────────────────────────────────────
         CREAM BACKGROUND SECTION (sector analysis etc.)
      ───────────────────────────────────── */
.articles-section.bg-cream {
  background: #f2ede0;
  border-top: 1px solid #e0dbd0;
}

/* ─────────────────────────────────────
         SIDEBAR LAYOUT (2-col with aside)
      ───────────────────────────────────── */
.split-section {
  padding: 4rem 1.5rem;
  background: #ffffff;
  border-top: 1px solid #e0dbd0;
}
.split-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* aside: research + report list */
.aside-block {
  background: #f2ede0;
  border: 1px solid #e0dbd0;
  border-radius: 6px;
  padding: 1.5rem;
}
.aside-block + .aside-block {
  margin-top: 1.25rem;
}
.aside-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0d2b2b;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #009e60;
  display: inline-block;
}
.report-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.report-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e0dbd0;
  text-decoration: none;
  transition: opacity 0.2s;
}
.report-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.report-item:hover {
  opacity: 0.75;
}
.report-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.ico-green {
  background: #e8f7f0;
}
.ico-wine {
  background: #fdf0f5;
}
.ico-blue {
  background: #eef4ff;
}
.ico-gold {
  background: #fdf5dc;
}
.ico-purple {
  background: #f4f0fd;
}

.report-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d2b2b;
  line-height: 1.3;
  margin-bottom: 0.15rem;
}
.report-sub {
  font-size: 0.72rem;
  color: #888;
}

/* quick-links list in aside */
.qlink-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.qlink-list li {
  border-bottom: 1px solid #e0dbd0;
}
.qlink-list li:last-child {
  border-bottom: none;
}
.qlink-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-size: 0.82rem;
  color: #0d2b2b;
  text-decoration: none;
  transition: color 0.2s;
}
.qlink-list a:hover {
  color: #009e60;
}
.qlink-arr {
  font-size: 0.75rem;
  color: #ccc;
}

/* main articles list in split layout */
.list-articles {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.list-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid #e0dbd0;
  border-radius: 6px;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.list-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-color: #009e60;
}
.list-card-img {
  overflow: hidden;
  background: #f2ede0;
}
.list-card-img-svg {
  width: 100%;
  height: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-card-body {
  padding: 1rem 1rem 1rem 0;
  display: flex;
  flex-direction: column;
}
.list-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d2b2b;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  flex: 1;
}
.list-card-excerpt {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.list-card-meta {
  font-size: 0.68rem;
  color: #aaa;
}

/* ─────────────────────────────────────
         THOUGHT LEADERSHIP BANNER CARDS
      ───────────────────────────────────── */
.thought-section {
  padding: 4rem 1.5rem;
  background: #f2ede0;
  border-top: 1px solid #e0dbd0;
}
.thought-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.thought-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.thought-card {
  background: #0d2b2b;
  border-radius: 6px;
  padding: 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.thought-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}
.thought-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(0, 158, 96, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.thought-cat {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00c070;
  margin-bottom: 0.75rem;
}
.thought-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.7rem;
  flex: 1;
}
.thought-excerpt {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.thought-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.btn-thought {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: red;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 192, 112, 0.4);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s;
  align-self: flex-start;
}
.btn-thought:hover {
  border-color: #00c070;
}

/* ─────────────────────────────────────
         NEWSLETTER / CTA STRIP
      ───────────────────────────────────── */
.cta-strip {
  background: #0d2b2b;
  padding: 3.5rem 1.5rem;
  border-top: 3px solid #009e60;
}
.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-strip-eye {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00c070;
  margin-bottom: 0.5rem;
}
.cta-strip-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.cta-strip-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.cta-strip-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.btn-cta-w {
  background: #8b1a4a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.75rem;
  border-radius: 25px;
  border: 2px solid #8b1a4a;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-cta-w:hover {
  background: #6e1239;
  border-color: #6e1239;
}
.btn-cta-o {
  background: transparent;
  color: #00c070;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.75rem;
  border-radius: 25px;
  border: 2px solid rgba(0, 192, 112, 0.45);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-cta-o:hover {
  background: rgba(0, 192, 112, 0.1);
  border-color: #00c070;
}

/* ─────────────────────────────────────
         RESPONSIVE
      ───────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split-grid {
    grid-template-columns: 1fr;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .thought-grid {
    grid-template-columns: 1fr;
  }
  .cta-strip-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .list-card {
    grid-template-columns: 1fr;
  }
  .list-card-img {
    min-height: 140px;
  }
  .col-md-10,
  .col-lg-8 {
    max-width: 100%;
  }
  .main-nav-items {
    display: none;
  }
}
