/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --green:     #2e7d32;
    --green-l:   #43a047;
    --green-d:   #1b5e20;
    --gold:      #f9a825;
    --gold-l:    #fdd835;
    --dark:      #1a2e1a;
    --text:      #3a3a3a;
    --muted:     #666;
    --light:     #f4f8f4;
    --white:     #ffffff;
    --radius:    8px;
    --shadow:    0 4px 20px rgba(0,0,0,.09);
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2rem; font-weight: 800; color: var(--green-d); margin-bottom: .5rem; }
.section-title h2 span { color: var(--gold); }
.section-title p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.section-title .divider { width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin: .8rem auto 0; }

/* ── Top Bar ── */
.topbar {
    background: var(--green-d);
    color: rgba(255,255,255,.8);
    font-size: .82rem;
    padding: .4rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .4rem; }
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: var(--gold-l); }
.topbar-left, .topbar-right { display: flex; gap: 1.2rem; align-items: center; }

/* ── Navbar ── */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    padding: 0 1rem;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: 1280px; }
.navbar-brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo { height: 52px; width: auto; object-fit: contain; flex-shrink: 0; }
.navbar-brand .brand-text { line-height: 1.2; }
.navbar-brand .brand-name { font-size: .78rem; font-weight: 800; color: var(--green-d); letter-spacing: .2px; white-space: nowrap; }
.navbar-brand .brand-tag { font-size: .65rem; color: var(--gold); font-style: italic; font-weight: 600; }
.nav-links { display: flex; gap: .9rem; list-style: none; align-items: center; flex-wrap: nowrap; }
.nav-links a { font-size: .78rem; font-weight: 600; color: var(--dark); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--green-l); }
.nav-donate {
    background: var(--gold); color: var(--dark) !important;
    padding: .35rem .9rem; border-radius: 50px; font-weight: 700 !important;
    transition: background .2s !important;
}
.nav-donate:hover { background: var(--gold-l) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; display: block; }

/* ── Hero ── */
.hero {
    background: linear-gradient(160deg, var(--green-d) 0%, #2e5e2e 60%, #3a7a3a 100%);
    color: var(--white);
    padding: 6rem 0 5rem;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-block; background: rgba(249,168,37,.2); border: 1px solid var(--gold); color: var(--gold-l); font-size: .8rem; font-weight: 700; padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1.2rem; letter-spacing: .5px; text-transform: uppercase; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.2; margin-bottom: 1rem; }
.hero h1 span { color: var(--gold-l); }
.hero-tagline { font-size: 1.1rem; font-style: italic; color: var(--gold-l); margin-bottom: 1rem; font-weight: 600; }
.hero p { font-size: 1rem; opacity: .88; margin-bottom: 2rem; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: .75rem 1.8rem; border-radius: 50px; font-weight: 700; font-size: .95rem; transition: .2s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-l); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.hero-card {
    background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
    padding: 2rem;
}
.hero-card h3 { font-size: 1rem; color: var(--gold-l); margin-bottom: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 900; color: var(--gold-l); line-height: 1; }
.hero-stat .lbl { font-size: .78rem; opacity: .8; margin-top: .3rem; }
.hero-focus { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-focus p { font-size: .82rem; opacity: .7; margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .5px; }
.focus-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.focus-tag { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); font-size: .75rem; padding: .25rem .7rem; border-radius: 50px; }

/* ── About ── */
.about { background: var(--light); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-block {
    background: linear-gradient(135deg, var(--green-d), var(--green-l));
    border-radius: 16px; padding: 2.5rem; color: var(--white); position: relative;
}
.about-img-block .quote { font-size: 1.1rem; font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; opacity: .92; }
.about-img-block .founders { font-size: .85rem; opacity: .75; }
.about-img-block .founders strong { display: block; color: var(--gold-l); font-size: .95rem; margin-bottom: .2rem; }
.about-badge {
    position: absolute; top: -14px; right: 1.5rem;
    background: var(--gold); color: var(--dark);
    font-size: .75rem; font-weight: 800; padding: .3rem .9rem; border-radius: 50px;
    text-transform: uppercase; letter-spacing: .5px;
}
.about-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--green-d); margin-bottom: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: .97rem; }
.about-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.meta-item { background: var(--white); border-left: 4px solid var(--green-l); padding: .7rem 1rem; border-radius: 0 var(--radius) var(--radius) 0; flex: 1; min-width: 130px; }
.meta-item h4 { font-size: 1.3rem; font-weight: 900; color: var(--green-d); }
.meta-item p { font-size: .78rem; color: var(--muted); margin: 0; }

/* ── Vision Mission ── */
.vision-mission { background: var(--green-d); color: var(--white); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.vm-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 2rem; }
.vm-card .vm-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.vm-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--gold-l); margin-bottom: .8rem; }
.vm-card p { font-size: .95rem; opacity: .88; line-height: 1.7; }

/* ── Values ── */
.values { background: var(--light); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow); text-align: center; transition: transform .2s; }
.value-card:hover { transform: translateY(-4px); }
.value-letter { width: 52px; height: 52px; border-radius: 50%; background: var(--green-d); color: var(--white); font-size: 1.4rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-d); margin-bottom: .5rem; }
.value-card p { font-size: .85rem; color: var(--muted); }

/* ── Focus Areas ── */
.focus-areas { background: var(--white); }
.focus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.focus-card { border: 1px solid #e0ede0; border-radius: var(--radius); padding: 1.5rem; transition: all .2s; }
.focus-card:hover { border-color: var(--green-l); box-shadow: var(--shadow); transform: translateY(-3px); }
.focus-card .focus-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.focus-card h3 { font-size: .95rem; font-weight: 700; color: var(--green-d); margin-bottom: .4rem; }
.focus-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── Gallery ── */
.gallery { background: var(--light); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery-item {
    aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
    background: linear-gradient(135deg, var(--green-d), var(--green-l));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); font-size: .85rem; font-weight: 600;
    transition: transform .2s; cursor: pointer;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── Vacancies ── */
.vacancies { background: var(--white); }
.vacancy-list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin: 0 auto; }
.vacancy-card { border: 1px solid #e0ede0; border-radius: var(--radius); overflow: hidden; }
.vacancy-header { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; cursor: pointer; transition: background .2s; }
.vacancy-header:hover { background: var(--light); }
.vacancy-title h3 { font-size: 1rem; font-weight: 700; color: var(--green-d); }
.vacancy-title .vacancy-meta { display: flex; gap: 1rem; margin-top: .3rem; flex-wrap: wrap; }
.vacancy-meta span { font-size: .8rem; color: var(--muted); }
.vacancy-badge { background: var(--green-d); color: var(--white); font-size: .75rem; font-weight: 700; padding: .25rem .8rem; border-radius: 50px; white-space: nowrap; }
.vacancy-body { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.vacancy-body.open { max-height: 300px; padding: 1rem 1.5rem 1.5rem; }
.vacancy-body p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.btn-apply { background: var(--green-d); color: var(--white); padding: .55rem 1.4rem; border-radius: 50px; font-size: .88rem; font-weight: 700; display: inline-block; transition: background .2s; }
.btn-apply:hover { background: var(--green-l); }

/* ── Contact ── */
.contact { background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--green-d); margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 1.5rem; font-size: .95rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1rem; }
.contact-detail .c-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--green-d); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail .c-text { font-size: .92rem; color: var(--text); }
.contact-detail .c-text small { display: block; color: var(--muted); font-size: .78rem; }
.contact-form { background: var(--white); padding: 2rem; border-radius: 12px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-d); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: .35rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: .65rem .9rem;
    border: 1px solid #d4e6d4; border-radius: var(--radius);
    font-size: .93rem; font-family: inherit; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green-l); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; padding: .75rem; background: var(--green-d); color: var(--white); border: none; border-radius: 50px; font-size: .97rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: var(--green-l); }

/* ── Footer ── */
footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 3.5rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .f-logo { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand .f-logo .logo-circle { width: 40px; height: 40px; font-size: .85rem; }
.footer-brand .f-logo-text .f-name { font-size: .95rem; font-weight: 800; color: var(--white); }
.footer-brand .f-logo-text .f-tag { font-size: .72rem; color: var(--gold); font-style: italic; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-l); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; padding-top: 1.5rem; font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom em { color: var(--gold); font-style: italic; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-card { display: none; }
    .about-inner, .vm-grid, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 1rem 1.5rem 1.5rem; box-shadow: 0 8px 20px rgba(0,0,0,.1); gap: 1rem; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .topbar .topbar-right { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Slider ── */
.slider { position: relative; overflow: hidden; background: var(--dark); max-height: 520px; }
.slider-track { display: flex; transition: transform .5s ease; height: 100%; }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; height: 520px; object-fit: cover; display: block; opacity: .88; }
.slide-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    color: #fff; padding: 2.5rem 2rem 1.8rem;
}
.slide-caption h2 { font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 800; margin-bottom: .4rem; }
.slide-caption p  { font-size: .95rem; opacity: .88; max-width: 600px; }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.3); color: #fff;
    width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem;
    cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center;
    z-index: 10;
}
.slider-btn:hover { background: rgba(255,255,255,.3); }
.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }
.slider-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s; }
.dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* Gallery empty */
.gallery-empty { grid-column: 1/-1; text-align: center; color: #999; padding: 3rem; font-size: .95rem; }

/* ── Team ── */
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-photo { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; border: 4px solid var(--light); box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initials { width: 100%; height: 100%; background: var(--green-d); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; }
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.team-role { font-size: .82rem; color: var(--green-l); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.team-card p { font-size: .85rem; color: var(--muted); margin-top: .6rem; line-height: 1.6; }

/* ── Articles Listing ── */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.article-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s; }
.article-card:hover { transform: translateY(-4px); }
.article-cover { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--green-d); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.article-card:hover .article-cover img { transform: scale(1.04); }
.article-cover-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: .4; }
.article-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.article-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--muted); margin-bottom: .6rem; }
.article-body h2 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; line-height: 1.4; }
.article-body h2 a { color: inherit; }
.article-body h2 a:hover { color: var(--green-l); }
.article-body p { font-size: .88rem; color: var(--muted); flex: 1; margin-bottom: 1rem; line-height: 1.6; text-align: justify; }
.read-more { font-size: .85rem; font-weight: 700; color: var(--green-l); }
.read-more:hover { color: var(--green-d); }

/* ── Article Single ── */
.article-hero { position: relative; max-height: 460px; overflow: hidden; }
.article-hero img { width: 100%; height: 460px; object-fit: cover; display: block; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,.7)); }
.article-hero-text { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; padding-bottom: 2rem; color: #fff; }
.article-hero-text h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.2; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.article-excerpt { font-size: 1.05rem; color: var(--muted); font-style: italic; border-left: 4px solid var(--green-l); padding-left: 1rem; margin-bottom: 1.5rem; line-height: 1.7; text-align: justify; }
.article-text { font-size: .97rem; line-height: 1.85; color: var(--text); text-align: justify; font-style: normal; }
.article-text h2, .article-text h3 { color: var(--green-d); margin: 1.5rem 0 .6rem; }
.article-text p { margin-bottom: 1rem; }
.article-text ul, .article-text ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-text img { max-width: 100%; border-radius: var(--radius); margin: 1rem 0; }
.article-text a { color: var(--green-l); text-decoration: underline; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: var(--light); border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1.5rem; }
.sidebar-widget h3 { font-size: .95rem; font-weight: 700; color: var(--green-d); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--green-l); }
.related-item { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .9rem; padding-bottom: .9rem; border-bottom: 1px solid #e0ede0; }
.related-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.related-item img, .related-placeholder { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; flex-shrink: 0; background: var(--green-d); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.related-item p { font-size: .83rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: .2rem; }
.related-item small { font-size: .75rem; color: var(--muted); }
.related-item:hover p { color: var(--green-l); }

/* ── Homepage articles preview ── */
.articles-preview { background: var(--light); }

/* Pager */
.pagination { display: flex; gap: .4rem; justify-content: center; flex-wrap: wrap; list-style: none; }
.pagination li a, .pagination li span { display: block; padding: .45rem .9rem; border-radius: 6px; font-size: .88rem; border: 1px solid #d4e6d4; color: var(--green-d); transition: .2s; }
.pagination li a:hover { background: var(--green-d); color: #fff; border-color: var(--green-d); }
.pagination li.active span { background: var(--green-d); color: #fff; border-color: var(--green-d); }

@media (max-width: 768px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .article-hero img { height: 260px; }
}

/* ── Share buttons ── */
.share-btn { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 600; cursor: pointer; border: none; transition: opacity .2s, transform .15s; text-decoration: none; }
.share-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.share-btn:hover { opacity: .85; transform: translateY(-1px); }
.share-wa  { background: #25d366; color: #fff; }
.share-x   { background: #000; color: #fff; }
.share-li  { background: #0a66c2; color: #fff; }
.share-copy { background: var(--light); color: var(--dark); border: 1px solid #d4e6d4; }
.share-copy:hover { background: var(--green-d); color: #fff; border-color: var(--green-d); }
.share-full { width: 100%; justify-content: center; border-radius: 6px; padding: .55rem 1rem; }

/* Share bar below article body */
.share-bar { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e0ede0; }
.share-label { display: block; font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .8rem; }
.share-buttons { display: flex; flex-wrap: wrap; gap: .6rem; }

/* Article card footer */
.article-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .6rem; margin-top: auto; padding-top: .8rem; border-top: 1px solid #eef2ee; }
.card-share { display: flex; gap: .4rem; }
.card-share .share-btn { padding: .3rem .5rem; border-radius: 6px; font-size: 0; }
.card-share .share-btn svg { width: 16px; height: 16px; }

/* ── Inline article images with captions ── */
.article-text figure { margin: 1.8rem 0; text-align: center; }
.article-text figure img { max-width: 100%; border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.article-text figcaption { font-size: .83rem; color: #888; font-style: italic; margin-top: .5rem; text-align: center; }
