/* ============================================
   NutravimLab — style.css
   Color theme: Fresh Green + White + Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
  --green:        #2a7d4f;
  --green-dark:   #1a5c38;
  --green-light:  #3a9e65;
  --green-pale:   #edf7f1;
  --gold:         #e6a817;
  --gold-light:   #fef3d0;
  --red:          #e03535;
  --white:        #ffffff;
  --bg:           #f7faf8;
  --bg-card:      #ffffff;
  --border:       #e2ece7;
  --text:         #1a2e25;
  --text-mid:     #4a5e54;
  --text-light:   #7a9088;
  --shadow-sm:    0 2px 8px rgba(42,125,79,.08);
  --shadow-md:    0 6px 24px rgba(42,125,79,.13);
  --shadow-lg:    0 16px 48px rgba(42,125,79,.18);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Section labels ─────────────────────────────────── */
.sec-header { text-align: center; margin-bottom: 40px; }
.sec-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid rgba(42,125,79,.2);
  border-radius: 40px;
  padding: 4px 14px;
  margin-bottom: 10px;
}
.sec-tag-gold { color: var(--gold); background: var(--gold-light); border-color: rgba(230,168,23,.3); }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.sec-title.light { color: #fff; }
.sec-sub { color: var(--text-mid); font-size: .95rem; }
.sec-sub.light { color: rgba(255,255,255,.75); }

/* ── Buttons ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 40px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(42,125,79,.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,125,79,.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 26px;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.9); }

/* ============================================
   HEADER
   ============================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--green-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
#header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green-light) 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 66px;
  gap: 16px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; object-fit: contain; }

.header-search { flex: 1; max-width: 420px; position: relative; }
.header-search input {
  width: 100%;
  padding: 9px 38px 9px 16px;
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: var(--transition);
}
.header-search input::placeholder { color: rgba(255,255,255,.45); }
.header-search input:focus { background: rgba(255,255,255,.18); border-color: var(--gold); }
.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  font-size: 15px;
}
.search-btn:hover { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.12); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

.mobile-menu { display: none; background: var(--green-dark); padding: 12px 0 16px; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,.8); padding: 10px 20px; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/nutravimlab-hero-section.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
/* Dark gradient overlay so text is readable */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20,70,40,.88) 0%,
    rgba(20,70,40,.75) 45%,
    rgba(20,70,40,.25) 100%
  );
}
.hero .container { position: relative; z-index: 1; }
.hero-center { max-width: 620px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 40px;
  color: #f0f0f0;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  white-space: nowrap;
}
.hero-title .accent { color: #f0d070; }
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-trust li { color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 600; }

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-section {
  padding: 72px 0 80px;
  background: var(--bg);
}
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.prod-search-input {
  padding: 10px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  outline: none;
  width: 280px;
  transition: var(--transition);
}
.prod-search-input:focus { border-color: var(--green); }
.prod-count { font-size: .85rem; color: var(--text-light); }
.prod-count strong { color: var(--text); }

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product card */
.pcard {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42,125,79,.3);
}

.pcard-img-wrap {
  background: var(--green-pale);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  overflow: hidden;
}
.pcard-img-wrap img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
  transition: transform .35s ease;
}
.pcard:hover .pcard-img-wrap img { transform: scale(1.07); }

.pcard-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcard-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 5px;
}
.pcard-name {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 7px;
}
.pcard-name a { color: var(--green-dark); transition: var(--transition); }
.pcard-name a:hover { color: var(--green); }

.pcard-desc {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.pcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.pcard-stars { color: var(--gold); font-size: .78rem; }
.pcard-rev { font-size: .72rem; color: var(--text-light); }

.pcard-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 20px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.pcard-btn:hover { background: var(--green-dark); }

/* Hidden when filtered */
.pcard.hidden { display: none; }

/* ============================================
   TRENDING CAROUSEL
   ============================================ */
.trending-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e5c3c 50%, #256645 100%);
  position: relative;
  overflow: hidden;
}
.trending-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.trending-section .container { position: relative; z-index: 1; }

.tcard {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  flex-shrink: 0;
}
.tcard:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

.tcard-link { display: block; padding: 16px; text-align: center; color: inherit; }
.tcard-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.tcard-img img { max-height: 110px; width: auto; object-fit: contain; transition: transform .3s ease; }
.tcard:hover .tcard-img img { transform: scale(1.08); }
.tcard-name { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.tcard-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition);
}
.tcard:hover .tcard-btn { background: #d49510; }

/* ============================================
   BLOG CAROUSEL
   ============================================ */
.blog-section {
  padding: 72px 0;
  background: var(--white);
  border-top: 3px solid var(--green-pale);
}
.blog-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  flex-shrink: 0;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-link { display: block; color: inherit; }
.blog-card-placeholder .blog-card-link { cursor: default; }
.blog-card-img, .blog-card-img-wrap { height: 160px; overflow: hidden; background: var(--green-pale); }
.blog-card-img img, .blog-card-img-wrap img, .blog-card-thumb { width: 100%; height: 160px; object-fit: cover; object-position: center top; transition: transform .35s ease; display: block; }
.blog-card:hover .blog-card-img img, .blog-card:hover .blog-card-img-wrap img, .blog-card:hover .blog-card-thumb { transform: scale(1.05); }
.blog-placeholder-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .9rem;
  font-weight: 600;
}
.blog-card-body { padding: 16px 18px 20px; }
.blog-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 7px;
}
.blog-title {
  font-size: .98rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.blog-card:hover .blog-title { color: var(--green); }
.blog-excerpt {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 12px;
}
.blog-meta { display: flex; gap: 12px; font-size: .73rem; color: var(--text-light); }

/* ============================================
   CAROUSEL ENGINE
   ============================================ */
.carousel-wrapper { position: relative; margin-top: 28px; }
.carousel-outer, .carousel-track-outer { overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; gap: 18px; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: transparent;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.blog-section .carousel-btn { border-color: var(--border); color: var(--text-mid); }
.carousel-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.7); }
.blog-section .carousel-btn:hover { background: var(--green-pale); border-color: var(--green); color: var(--green); }
.carousel-btn:disabled { opacity: .3; cursor: not-allowed; }
.carousel-dots { display: flex; gap: 7px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.blog-section .dot { background: var(--border); }
.dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.blog-section .dot.active { background: var(--green); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: 60px 0;
  background: var(--green-pale);
  border-top: 2px solid rgba(42,125,79,.15);
}
.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.newsletter-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 4px; }
.newsletter-sub { font-size: .88rem; color: var(--text-mid); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 11px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  min-width: 240px;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--green); }
.newsletter-form button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 40px;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--green-dark); }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #0f2b1c;
  padding: 56px 0 24px;
  color: rgba(255,255,255,.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand p { font-size: .83rem; line-height: 1.65; margin-top: 14px; max-width: 250px; }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.28); margin-top: 10px; }
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   TOAST & SCROLL TOP
   ============================================ */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--green-dark);
  color: #fff;
  padding: 12px 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: .86rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateY(70px);
  opacity: 0;
  transition: .35s ease;
  z-index: 9999;
  max-width: 280px;
}
.toast.show { transform: translateY(0); opacity: 1; }

.scroll-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 42px; height: 42px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 998;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-dark); }

/* ============================================
   FADE-UP ANIMATION
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 60px 0 50px; min-height: 420px; }
  .hero-title { white-space: normal; font-size: 2rem; }
  .hero-sub { font-size: .95rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 12px; }
  .products-section { padding: 48px 0 56px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pcard-img-wrap { height: 140px; }
  .newsletter-box { flex-direction: column; text-align: center; padding: 24px 20px; }
  .newsletter-form { justify-content: center; }
  .newsletter-form input { min-width: 0; width: 100%; max-width: 300px; }
  .newsletter-form button { width: 100%; max-width: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trending-section { padding: 52px 0; }
  .blog-section { padding: 52px 0; }
}

@media (max-width: 540px) {
  .header-search { display: none; }
  .logo-img { height: 36px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pcard-name { font-size: .88rem; }
  .pcard-img-wrap { height: 120px; padding: 12px; }
  .pcard-body { padding: 10px 12px 12px; }
  .pcard-desc { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .toast { right: 10px; bottom: 10px; left: 10px; max-width: 100%; }
  .scroll-top { bottom: 14px; left: 14px; width: 36px; height: 36px; }
}

/* ── Logo image (NutravimLab) ── */
.logo-mark { display: none; }
.logo-text  { display: none; }
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 3px 10px;
}
@media (max-width: 600px) {
  .logo-img { height: 36px; padding: 2px 7px; }
}

/* ── Carousel class aliases (HTML uses these names) ── */
/* Trending cards */
.trend-card                          { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); overflow: hidden; transition: var(--transition); flex-shrink: 0; }
.trend-card:hover                    { background: rgba(255,255,255,.18); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.trend-link                          { display: block; padding: 16px; text-align: center; color: inherit; text-decoration: none; }
.trend-img-wrap                      { height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; overflow: hidden; }
.trend-img-wrap img                  { max-height: 110px; width: auto; object-fit: contain; transition: transform .3s ease; display: block; }
.trend-card:hover .trend-img-wrap img { transform: scale(1.08); }
.trend-name                          { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.trend-cta                           { display: inline-block; background: var(--gold); color: #fff; font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; }
.trend-card:hover .trend-cta         { background: #d49510; }

/* Blog card image wrapper */
.blog-card-img-wrap                  { height: 160px; overflow: hidden; background: var(--green-pale, #e8f4ee); }
.blog-card-thumb                     { width: 100%; height: 160px; object-fit: cover; object-position: center top; display: block; transition: transform .35s ease; }
.blog-card:hover .blog-card-thumb    { transform: scale(1.05); }

/* blog-card-cat used in HTML vs blog-cat in CSS */
.blog-card-cat  { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green, #2D6A4F); display: block; margin-bottom: 7px; }
.blog-card-title { font-size: .98rem; font-weight: 800; color: var(--green-dark, #1B4332); line-height: 1.35; margin-bottom: 8px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.blog-card-excerpt { font-size: .8rem; color: var(--text-light, #777); line-height: 1.5; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; margin-bottom: 10px; }
.blog-card-date { font-size: .74rem; color: var(--text-light, #777); }

/* carousel-track-outer overflow */
.carousel-track-outer { overflow: hidden; }