/* ============================================
   MONÈRA Insights & News - insights.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --primary-navy:  #022F38;
  --dark-navy:     #011C22;
  --deep-teal:     #063844;
  --gold-accent:   #CDA77B;
  --warm-white:    #F8F7F4;
  --text-dark:     #112228;
  --muted-text:    #68757A;
  --border-light:  rgba(205,167,123,0.2);
  --shadow-card:   0 2px 16px rgba(1,28,34,0.08);
  --shadow-hover:  0 8px 32px rgba(1,28,34,0.14);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--warm-white);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ── Breadcrumb ── */
.breadcrumb-bar {
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--muted-text);
}
.breadcrumb-bar a {
  color: var(--muted-text);
  text-decoration: none;
}
.breadcrumb-bar a:hover { color: var(--gold-accent); }
.breadcrumb-bar .sep { margin: 0 6px; }

/* ── Page Header ── */
.page-header {
  padding: 28px 0 36px;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  color: var(--primary-navy);
  margin: 0 0 10px;
  line-height: 1.1;
}
.page-header .gold-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.page-header .gold-rule::before,
.page-header .gold-rule::after {
  content: '';
  display: block;
  height: 1px;
  flex: 1;
  max-width: 170px;
  background: var(--gold-accent);
}
.gold-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-accent);
  transform: rotate(45deg);
  display: inline-block;
}
.page-header p {
  font-size: 15px;
  color: var(--muted-text);
  max-width: 420px;
  line-height: 1.75;
  margin: 0;
}

/* ── Featured Article ── */
.featured-article {
  background: #fff;
  border: 1px solid #e9e4dc;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 52px;
}
.featured-article .fa-left {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-article .fa-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 16px;
}
.featured-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.2;
  margin: 0 0 18px;
}
.featured-article .fa-summary {
  font-size: 14.5px;
  color: var(--muted-text);
  line-height: 1.75;
  margin-bottom: 24px;
}
.featured-article .fa-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--muted-text);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.featured-article .fa-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.featured-article .fa-meta i {
  font-size: 14px;
  color: var(--muted-text);
}
.featured-article .fa-right {
  padding: 0;
  position: relative;
  min-height: 340px;
}
.featured-article .fa-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 13px 26px;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  width: fit-content;
}
.btn-gold:hover {
  background: #b8905f;
  color: #fff;
  transform: translateX(2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary-navy);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border: 1.5px solid var(--primary-navy);
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-outline-gold:hover {
  background: var(--primary-navy);
  color: #fff;
}

/* ── Category Navigation ── */
.category-nav {
  padding: 36px 0 40px;
  border-top: 1px solid #e9e4dc;
  border-bottom: 1px solid #e9e4dc;
  margin-bottom: 48px;
}
.category-nav .nav-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.category-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 12px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
  min-width: 90px;
}
.category-nav .nav-item.active {
  border-bottom-color: var(--gold-accent);
  color: var(--gold-accent);
}
.category-nav .nav-item:hover {
  color: var(--gold-accent);
}
.category-nav .nav-icon {
  font-size: 22px;
  color: inherit;
  line-height: 1;
}
.category-nav .nav-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-text);
  line-height: 1.3;
}
.category-nav .nav-item.active .nav-label {
  color: var(--gold-accent);
}
.category-nav .nav-item:hover .nav-label {
  color: var(--gold-accent);
}

/* ── Articles Grid ── */
.articles-section {
  margin-bottom: 52px;
}
.articles-section .section-grid {
  row-gap: 28px;
}

.article-card {
  background: #fff;
  border: 1px solid #e9e4dc;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%;
}
.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.article-card .card-img-wrap {
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}
.article-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.article-card:hover .card-img-wrap img {
  transform: scale(1.04);
}
.article-card .card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-card .card-category {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 10px;
}
.article-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.3;
  margin: 0 0 10px;
}
.article-card .card-desc {
  font-size: 13.5px;
  color: var(--muted-text);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.article-card .card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--muted-text);
  border-top: 1px solid #f0ece5;
  padding-top: 14px;
  margin-top: auto;
  flex-wrap: wrap;
}
.article-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.article-card .card-meta i { font-size: 13px; }

/* ── View All Button ── */
.view-all-wrap {
  text-align: center;
  padding: 8px 0 52px;
}

/* ── Quote Banner ── */
.quote-banner {
  background: #fff;
  border: 1px solid #e9e4dc;
  border-radius: 6px;
  padding: 56px 60px;
  text-align: center;
  margin-bottom: 52px;
  position: relative;
}
.quote-banner .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold-accent);
  line-height: 1;
  display: block;
  margin-bottom: -12px;
  text-align: left;
  padding-left: 4px;
}
.quote-banner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-navy);
  line-height: 1.5;
  margin: 0 auto 24px;
  max-width: 700px;
}
.quote-banner .quote-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.quote-banner .quote-divider::before,
.quote-banner .quote-divider::after {
  content: '';
  display: block;
  height: 1px;
  width: 48px;
  background: var(--gold-accent);
}
.quote-banner .quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-navy);
  letter-spacing: 0.3px;
}

/* ── Newsletter ── */
.newsletter-card {
  background: #fff;
  border: 1px solid #e9e4dc;
  border-radius: 6px;
  padding: 44px 48px;
  margin-bottom: 52px;
  box-shadow: var(--shadow-card);
}
.newsletter-card .nl-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}
.newsletter-card .nl-icon-wrap i {
  font-size: 26px;
  color: var(--gold-accent);
}
.newsletter-card .nl-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.newsletter-card .nl-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-navy);
  margin: 0 0 8px;
}
.newsletter-card .nl-text p {
  font-size: 13.5px;
  color: var(--muted-text);
  line-height: 1.65;
  margin: 0;
  max-width: 360px;
}
.newsletter-card .nl-form {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter-card .nl-form input {
  flex: 1;
  min-width: 160px;
  padding: 13px 18px;
  border: 1px solid #ddd5c8;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--warm-white);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-card .nl-form input::placeholder { color: #aaa; }
.newsletter-card .nl-form input:focus { border-color: var(--gold-accent); }
.newsletter-card .nl-form .btn-gold {
  white-space: nowrap;
  border-radius: 3px;
  font-size: 12.5px;
  letter-spacing: 0.8px;
}

/* ── Footer Strip ── */
.footer-strip {
  border-top: 1px solid #e9e4dc;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted-text);
}

/* ── Placeholder images ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .featured-article .fa-left {
    padding: 32px 28px 28px;
  }
  .featured-article .fa-right {
    min-height: 260px;
  }
  .category-nav .nav-item {
    min-width: 70px;
    padding: 6px 8px 10px;
  }
  .category-nav .nav-label { font-size: 11px; }
  .newsletter-card {
    padding: 32px 28px;
  }
  .quote-banner { padding: 44px 36px; }
}

@media (max-width: 767.98px) {
  .page-header h1 { font-size: 36px; }
  .featured-article .fa-right {
    min-height: 220px;
  }
  .featured-article .fa-left {
    padding: 28px 22px 24px;
  }
  .featured-article h2 { font-size: 26px; }
  .category-nav .nav-list {
    gap: 4px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .category-nav .nav-item {
    min-width: 80px;
    flex-shrink: 0;
  }
  .newsletter-card .nl-left {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
  .newsletter-card .nl-form {
    flex-direction: column;
  }
  .newsletter-card .nl-form input { min-width: unset; }
  .newsletter-card .nl-form .btn-gold { width: 100%; justify-content: center; }
  .quote-banner { padding: 36px 24px; }
  .quote-banner .quote-mark { font-size: 60px; }
}

/* ── Category nav (shared pattern with resources page) ── */
.category-nav {
  padding: 32px 0 36px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.category-nav::-webkit-scrollbar { height: 3px; }
.category-nav::-webkit-scrollbar-track { background: transparent; }
.category-nav::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.category-nav .cn-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  gap: 0;
}
.cn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 6px 16px 12px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  text-align: center;
  flex: 1 0 90px;
}
.cn-item.active  { border-bottom-color: var(--gold); }
.cn-item:hover   { border-bottom-color: var(--gold); }
.cn-icon {
  font-size: 22px;
  color: var(--muted);
  line-height: 1;
}
.cn-item.active .cn-icon,
.cn-item:hover  .cn-icon { color: var(--gold); }
.cn-cat-logo {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.cn-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}
.cn-item.active .cn-label,
.cn-item:hover  .cn-label { color: var(--gold); }
.cn-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .cn-item { min-width: 80px; }
}
