/* ===============================
   InSalus – FINAL CLEAN CSS (STABLE)
   =============================== */

/* ---------- VARIABLES ---------- */
:root{
  --green-dark:#0A4A3A;
  --gold:#E2B837;
  --text:#0f1a17;
  --muted:#4b5a55;
  --bg:#ffffff;
  --max-width:1100px;
  --shadow:0 16px 40px rgba(0,0,0,.08);
}

/* ---------- RESET ---------- */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* ---------- CONTAINER ---------- */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 20px;
}

/* ===============================
   HEADER + NAV
   =============================== */
.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(10,74,58,.12);
}

.header-inner{
  max-width:var(--max-width);
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative; /* bitno zbog mobilnog dropdowna */
}

.logo img{height:120px}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:var(--green-dark);
  font-weight:700;
}

.nav a.active,
.nav a:hover{color:var(--gold)}

.cta{
  background:var(--gold);
  color:#111;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
}

.hamburger{
  display:none;
  background:none;
  border:none;
  font-size:28px;
  cursor:pointer;
  color:var(--green-dark);
}

/* ===============================
   HERO
   =============================== */
.hero{
  padding:80px 0;
  background:linear-gradient(180deg, rgba(10,74,58,.06), transparent);
}

.hero-content{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border-radius:24px;
  padding:56px;
  box-shadow:var(--shadow);
}

.hero-row{
  display:flex;
  gap:48px;
  align-items:center;
}

.hero-text{flex:1.2}
.hero-side-image{flex:.8}

.hero-side-image img{
  max-width:240px;
  border-radius:20px;
}

/* ---------- HERO CTA ---------- */
.hero-actions{
  display:flex;
  gap:16px;
  margin-top:28px;
  flex-wrap:wrap;
}

.hero-actions .btn{
  background:var(--gold);
  color:#111;
  padding:14px 30px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 28px rgba(226,184,55,.45);
  transition:.2s ease;
}

.hero-actions .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(226,184,55,.55);
}

.hero-actions .btn-outline{
  border:2px solid var(--green-dark);
  color:var(--green-dark);
  padding:12px 28px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:.2s ease;
}

.hero-actions .btn-outline:hover{
  background:var(--green-dark);
  color:#fff;
}

/* ===============================
   SECTIONS
   =============================== */
.section{padding:64px 0}

.section h2{
  text-align:center;
  font-size:30px;
  margin-bottom:22px;
  color:var(--green-dark);
}

/* ===============================
   ZAŠTO INSALUS (legacy grid)
   =============================== */
.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.feature{
  background:linear-gradient(180deg, rgba(10,74,58,.06), transparent);
  border-radius:22px;
  padding:32px;
  border:1px solid rgba(10,74,58,.14);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* ===============================
   WHY INSALUS – PREMIUM
   =============================== */
.why{
  padding: 76px 0;
  background: linear-gradient(180deg, rgba(10,74,58,.06), transparent);
}

.why-header{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.why-header h2{
  font-size: 32px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.why-header p{
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,74,58,.12);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.why-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

.why-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226,184,55,.18);
  margin-bottom: 14px;
}

.why-icon svg{
  width: 20px;
  height: 20px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3{
  font-size: 18px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.why-card p{
  color: var(--muted);
  line-height: 1.65;
  font-size: 14.7px;
}

/* ===============================
   USLUGE (intro)
   =============================== */
.services-header{
  text-align:center;
  max-width:680px;
  margin:0 auto 40px;
}

.services-title{
  font-size:32px;
  font-weight:800;
  color:var(--green-dark);
  margin-bottom:14px;
}

.services-subtitle{
  font-size:17px;
  color:var(--muted);
  line-height:1.6;
}

.services-wrapper{
  max-width:920px;
  margin:0 auto;
}

/* ===============================
   SERVICE CARDS V2 (InStatera style)
   =============================== */
.services-grid-v2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-v2{
  overflow: hidden;
  cursor: pointer;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10,74,58,.12);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  text-align: left;

  /* reveal default (JS dodaje .show) */
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

.service-card-v2:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}

.service-card-v2 .card-img{
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
}

.service-card-v2 .card-body{
  padding: 18px 18px 16px;
}

.service-card-v2 h3{
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.service-card-v2 p{
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.service-card-v2 .card-meta{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.service-card-v2 .meta-row{
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13.5px;
}

.service-card-v2 .meta-row strong{
  color: var(--green-dark);
  font-weight: 700;
}

.service-card-v2 .meta-row svg{
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 16px;
}

.service-card-v2 .card-link{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dark);
}

.service-card-v2 .card-link svg{
  width: 16px;
  height: 16px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* reveal show */
.service-card-v2.show{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

/* ===============================
   CTA BLOCK
   =============================== */
.contact-cta{
  background:linear-gradient(180deg, rgba(10,74,58,.08), rgba(10,74,58,.02));
  padding:72px 0;
  text-align:center;
}

.contact-cta-inner{
  max-width:720px;
  margin:0 auto;
}

.contact-cta h2{
  font-size:32px;
  font-weight:800;
  margin-bottom:16px;
}

.contact-cta p{
  font-size:17px;
  color:var(--muted);
  margin-bottom:32px;
}

.contact-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

/* ===============================
   FOOTER
   =============================== */
footer{
  padding:26px 20px;
  text-align:center;
  background:var(--green-dark);
  color:#fff;
}

/* ===============================
   GLOBAL REVEAL (optional)
   Koristi class="reveal"
   =============================== */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* FAILSAFE: ako JS ne radi */
html.no-js .reveal,
.no-js .reveal{
  opacity: 1 !important;
  transform: none !important;
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===============================
   O MENI
   =============================== */
.about-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: start;
}

.about-card{
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.about-card h1{
  margin-bottom: 20px;
  color: var(--green-dark);
}

.about-card p{
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.about-quote{
  margin-top: 24px;
  font-style: italic;
  font-weight: 600;
  color: var(--green-dark);
}

.about-side{
  text-align: center;
}

.about-side img{
  width: 100%;
  max-width: 360px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.about-cta{
  background: linear-gradient(180deg, rgba(10,74,58,.08), rgba(10,74,58,.02));
  padding: 24px;
  border-radius: 22px;
}

.about-cta h3{
  margin-bottom: 14px;
  color: var(--green-dark);
}

.about-info{
  margin: 20px auto 24px;
  max-width: 360px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: left;
}

.about-info p{
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--muted);
}

.about-info strong{color: var(--green-dark)}

.about-info a{
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}

.about-info a:hover{
  text-decoration: underline;
}

/* ===============================
   KONTAKT
   =============================== */
.contact-hero{
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.contact-hero h1{
  color: var(--green-dark);
  margin-bottom: 12px;
}

.contact-hero p{
  color: var(--muted);
  font-size: 17px;
}

.contact-card{
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-left h3{
  margin-bottom: 20px;
  color: var(--green-dark);
}

.contact-left p{
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-left a{
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}

.contact-note{
  margin-top: 20px;
  font-size: 14px;
  opacity: .8;
}

.contact-right input,
.contact-right textarea{
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid rgba(10,74,58,.15);
  font-family: inherit;
}

.contact-right input:focus,
.contact-right textarea:focus{
  outline: none;
  border-color: var(--green-dark);
}

.contact-icon.whatsapp{
  background: rgba(37,211,102,.18);
}

.contact-icon.whatsapp svg{
  fill: #25D366;
}

/* ===============================
   SERVICE PAGE (DETALJ USLUGE)
   =============================== */
.service-hero{
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.service-card{
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.service-card h1{
  color: var(--green-dark);
  margin-bottom: 24px;
}

.back-btn{
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.back-btn:hover{
  text-decoration: underline;
}

.service-meta{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.service-meta span{
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.service-meta strong{
  font-size: 15px;
  color: var(--green-dark);
}

.service-price{color: var(--gold)}

.service-image img{
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.service-content{
  max-width: 820px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.service-content h2{
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--green-dark);
}

.service-content p{
  color: var(--muted);
  line-height: 1.7;
}

.service-content ul{
  padding-left: 20px;
  color: var(--muted);
}

.service-content li{
  margin-bottom: 8px;
}

/* CTA gumb */
.service-btn{
  display: inline-block;
  padding: 14px 30px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(226,184,55,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(226,184,55,.45);
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width:900px){

  .hamburger{display:block}

  /* Mobilni dropdown meni */
  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    gap:0;
    border-bottom:1px solid rgba(10,74,58,.12);
    box-shadow:0 18px 44px rgba(0,0,0,.08);
  }

  .nav a{
    padding:14px 16px;
    border-top:1px solid rgba(10,74,58,.08);
  }

  /* BITNO: usklađeno s JS -> nav.open */
  .nav.open{display:flex}

  .cta{display:none}

  .hero-row{
    flex-direction:column;
    text-align:center;
  }

  .features{grid-template-columns:1fr}
  .services-grid-v2{grid-template-columns:1fr}

  .hero-actions{justify-content:center}
  .hero-actions a{width:100%;max-width:280px}

  .contact-cta{padding:56px 0}
  .contact-cta h2{font-size:26px}

  .contact-actions{flex-direction:column}
  .contact-actions a{width:100%;max-width:320px;margin:0 auto}

  .about-grid{grid-template-columns:1fr}
  .about-card{padding:32px 24px}
  .about-side img{max-width:300px}

  .contact-card{
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .service-hero{
    grid-template-columns: 1fr;
    margin: 48px auto;
  }

  .service-card{padding: 28px 24px}
  .service-meta{grid-template-columns: 1fr}
}

@media (max-width: 768px){
  .header-inner{padding:12px 16px}
  .logo img{height:60px}
}
/* ===============================
   BOTTOM CTA (Dogovori termin + Postavi pitanje)
=============================== */
.bottom-cta{
  padding: 70px 0 50px;
  background: linear-gradient(180deg, rgba(10,74,58,.06), transparent);
}

.bottom-cta-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.cta-box{
  background: #fff;
  border-radius: 22px;
  padding: 34px 30px;
  border: 1px solid rgba(10,74,58,.12);
  box-shadow: 0 18px 46px rgba(0,0,0,.08);
}

.cta-box h3{
  font-size: 22px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.cta-box p{
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-btn{
  display: inline-block;
  background: var(--gold);
  color: #111;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(226,184,55,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(226,184,55,.45);
}

.cta-btn.outline{
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  box-shadow: none;
}

.cta-btn.outline:hover{
  background: var(--green-dark);
  color: #fff;
}

@media (max-width: 900px){
  .bottom-cta-inner{
    grid-template-columns: 1fr;
  }
}
/* ===============================
   REVEAL (fade-in) – FINAL
   - radi za CTA i sve ostalo
=============================== */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}

.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* delay (za ljepši ulaz jedan za drugim) */
.reveal.delay-1{ transition-delay: .12s; }
.reveal.delay-2{ transition-delay: .24s; }
.reveal.delay-3{ transition-delay: .36s; }

/* FAILSAFE: ako JS ne radi */
html.no-js .reveal,
.no-js .reveal{
  opacity: 1 !important;
  transform: none !important;
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* CTA icons – smaller + cleaner */
.cta-icon{
  width:36px;
  height:36px;
  border-radius:12px;
  flex:0 0 36px;
}

.cta-icon svg{
  width:18px;
  height:18px;
}
/* ===============================
   WHY – MOBILE HARD FIX (1 column)
=============================== */
@media (max-width: 900px){
  .why-grid{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .why-card{
    width: 100% !important;
    padding: 20px 18px !important;
    border-radius: 18px !important;
  }

  .why-header h2{
    font-size: 26px !important;
  }

  .why-header p{
    font-size: 15.5px !important;
  }
}
/* WhatsApp CTA mini button */
.cta-mini.whatsapp{
  border: 2px solid rgba(37,211,102,.35);
  color: #1b5e20;
  font-weight: 900;
  gap: 10px;
}

.cta-mini.whatsapp svg{
  width: 18px;
  height: 18px;
  color: #25D366; /* WhatsApp green */
}

.cta-mini.whatsapp:hover{
  background: rgba(37,211,102,.10);
  transform: translateY(-1px);
}
/* ===============================
   SERVICE HERO – ANIMACIJA (PRO)
   (lijeva kartica ulazi s lijeva, slika s desna)
=============================== */

.service-hero .service-card.reveal{
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}

.service-hero .service-image.reveal{
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .9s ease, transform .9s ease;
  will-change: opacity, transform;
}

/* kada JS doda .show */
.service-hero .service-card.reveal.show,
.service-hero .service-image.reveal.show{
  opacity: 1;
  transform: translateX(0);
}

/* Mobile: umjesto lijevo/desno bolje klasični fade-up */
@media (max-width: 900px){
  .service-hero .service-card.reveal,
  .service-hero .service-image.reveal{
    transform: translateY(18px);
  }

  .service-hero .service-card.reveal.show,
  .service-hero .service-image.reveal.show{
    transform: translateY(0);
  }
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .service-hero .service-card.reveal,
  .service-hero .service-image.reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ===============================
   BOTTOM CTA – BG IMAGE
=============================== */
.bottom-cta{
  position: relative;
  padding: 80px 0 60px;

  /* pozadinska slika */
  background-image: url("images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* tamni overlay za čitljivost */
.bottom-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,74,58,.82),
    rgba(10,74,58,.55)
  );
}

/* sve unutra ide iznad overlaya */
.bottom-cta .container{
  position: relative;
  z-index: 1;
}

/* CTA kartice malo "glass" */
.bottom-cta .cta-box{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* malo jači kontrast naslova */
.bottom-cta .cta-box h3{
  color: var(--green-dark);
}

/* mobile padding */
@media (max-width: 900px){
  .bottom-cta{
    padding: 60px 0 50px;
    background-position: center top;
  }
}
/* ===============================
   HERO – FIX (da slika ne bježi van)
=============================== */

.hero-content{
  overflow: hidden;       /* NAJBITNIJE */
}

.hero-img-wrap{
  width: 100%;
  max-width: 100%;
  border-radius: 22px;
  overflow: hidden;       /* isto bitno */
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  margin-bottom: 26px;
}

.hero-img-wrap img{
  width: 100%;
  max-width: 100%;
  height: 360px;          /* desktop visina */
  object-fit: cover;
  display: block;
}

/* mobitel */
@media (max-width: 900px){
  .hero-img-wrap img{
    height: 280px;
  }
}
.contact-right .btn{
  background: var(--gold);
  color: #111;
  border: none;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(226,184,55,.35);
  transition: .2s ease;
}

.contact-right .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(226,184,55,.45);
}
/* WhatsApp gumb – Kontakt stranica */
.contact-left .cta-mini.whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37,211,102,.28);
  transition: .2s ease;
}

.contact-left .cta-mini.whatsapp svg{
  width: 20px;
  height: 20px;
  color: #fff;
  flex: 0 0 20px;
}

.contact-left .cta-mini.whatsapp:hover{
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,.38);
}
/* BLOG LISTA – INSALUS */
.blog-list-hero{padding:74px 0 34px;background:linear-gradient(180deg,rgba(10,74,58,.055),transparent)}
.blog-list-heading{max-width:820px}
.blog-eyebrow{display:inline-block;margin-bottom:10px;color:var(--gold);font-size:13px;font-weight:900;letter-spacing:1.8px}
.blog-list-heading h1{color:var(--green-dark);font-size:46px;line-height:1.08;font-weight:900;letter-spacing:-1px;margin-bottom:16px}
.blog-title-line{width:92px;height:4px;border-radius:999px;background:var(--gold);margin-bottom:20px}
.blog-list-heading p{max-width:760px;color:var(--muted);font-size:18px;line-height:1.7}
.blog-list-section{padding:34px 0 84px}
.blog-list-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:stretch}
.blog-list-card{overflow:hidden;display:flex;flex-direction:column;background:#fff;border:1px solid rgba(10,74,58,.11);border-radius:24px;box-shadow:0 16px 42px rgba(0,0,0,.08);transition:transform .22s ease,box-shadow .22s ease}
.blog-list-card:hover{transform:translateY(-6px);box-shadow:0 24px 58px rgba(0,0,0,.13)}
.blog-list-image-link{display:block;overflow:hidden;height:330px;background:rgba(10,74,58,.08)}
.blog-list-image-link img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.blog-list-card:hover .blog-list-image-link img{transform:scale(1.035)}
.blog-list-content{display:flex;flex-direction:column;flex:1;padding:25px 25px 27px}
.blog-list-meta{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:14px;color:var(--muted);font-size:12.5px}
.blog-list-meta span:first-child{padding:6px 10px;border-radius:999px;background:rgba(226,184,55,.18);color:var(--green-dark);font-weight:800}
.blog-list-meta span:last-child{padding:6px 0}
.blog-list-card h2{margin:0 0 14px;color:var(--text);font-size:22px;line-height:1.3}
.blog-list-card h2 a{color:inherit;text-decoration:none}
.blog-list-card h2 a:hover{color:var(--green-dark)}
.blog-list-card p{color:var(--muted);font-size:14.7px;line-height:1.7;margin-bottom:24px}
.blog-list-more{margin-top:auto;display:inline-flex;width:max-content;color:var(--green-dark);font-size:14px;font-weight:900;text-decoration:none;border-bottom:2px solid rgba(226,184,55,.65);padding-bottom:3px}
.blog-list-more:hover{color:var(--gold)}
@media(max-width:900px){.blog-list-hero{padding:52px 0 24px}.blog-list-heading{text-align:center;margin:0 auto}.blog-list-heading h1{font-size:34px;letter-spacing:-.5px}.blog-title-line{margin-left:auto;margin-right:auto}.blog-list-heading p{font-size:16px}.blog-list-section{padding:24px 0 58px}.blog-list-grid{grid-template-columns:1fr;gap:22px}.blog-list-image-link{height:280px}}
@media(max-width:520px){.blog-list-image-link{height:230px}.blog-list-content{padding:21px 19px 23px}.blog-list-card h2{font-size:20px}}