/*
Theme Name: LZS Theme
Theme URI: https://lazismupundong.org/
Author: Mazmodev
Author URI: https://lazismupundong.org/
Description: Tema resmi yang simpel, modern, dan tersinkronisasi penuh dengan plugin LZS Donasi.
Version: 1.4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lzstheme
*/

:root {
    --lzs-primary: #f97316;
    --lzs-primary-hover: #ea580c;
    --lzs-primary-light: #fff7ed;
    --lzs-primary-border: #fed7aa;
    --lzs-navy: #0f172a;
    --lzs-mint: #738B11;
    --lzs-mint-light: #E5E9BE;
    --lzs-bg: #fffffb;
    --lzs-white: #ffffff;
    --lzs-text: #0f172a;
    --lzs-text-muted: #64748b;
    --lzs-text-light: #94a3b8;
    --lzs-border: #e2e8f0;
    --lzs-radius: 16px;
    --lzs-radius-lg: 20px;
    --lzs-radius-sm: 12px;
    --lzs-radius-pill: 9999px;
    --lzs-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    --lzs-shadow-lg: 0 10px 24px rgba(0, 0, 0, .1);
    --lzs-container: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--lzs-bg);
    color: var(--lzs-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--lzs-primary);
    text-decoration: none;
    transition: all .2s ease;
}

a:hover {
    color: var(--lzs-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAVBAR â€” floating/hanging model
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-navbar-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 16px 0;
    background: transparent;
    pointer-events: none;
    transition: padding 0.3s ease;
}

.lzs-navbar-wrap.lzs-scrolled {
    padding: 0;
}

body.admin-bar .lzs-navbar-wrap {
    top: 32px;
}

.lzs-navbar {
    background: var(--lzs-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    border: 1px solid var(--lzs-border);
    pointer-events: all;
    max-width: var(--lzs-container);
    margin: 0 auto;
    transition: border-radius 0.3s ease, border-color 0.3s ease;
}

.lzs-navbar-wrap.lzs-scrolled .lzs-navbar {
    border-radius: 0 0 8px 8px;
    border-top-color: transparent;
}

.lzs-navbar-inner {
    position: relative;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Logo */
.lzs-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--lzs-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0;
}

.lzs-logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.lzs-logo span.accent {
    color: var(--lzs-white);
    background: var(--lzs-primary);
    border-radius: 4px;
    padding: 0 4px;
    margin-left: 1px;
}

/* Search â€” full width real form */
.lzs-search {
    flex: 1;
    background: #f8fafc;
    border: 1px solid var(--lzs-border);
    border-radius: var(--lzs-radius-pill);
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
}

.lzs-search i {
    font-size: 14px;
    color: var(--lzs-text-light);
    flex-shrink: 0;
}

.lzs-search input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: var(--lzs-text);
    height: 100%;
}

.lzs-search input::placeholder {
    color: var(--lzs-text-light);
}

/* Nav right */
.lzs-nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.lzs-nav-link {
    color: var(--lzs-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.lzs-nav-link i {
    font-size: 10px;
    color: var(--lzs-text-muted);
}

.lzs-nav-btn {
    background: var(--lzs-primary);
    color: var(--lzs-white);
    padding: 9px 22px;
    border-radius: var(--lzs-radius-sm);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
    white-space: nowrap;
}

.lzs-nav-btn:hover {
    background: var(--lzs-primary-hover);
    color: var(--lzs-white);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO â€” full width
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-hero {
    position: relative;
    min-height: 420px;
    border-radius: var(--lzs-radius-lg);
    overflow: hidden;

    max-width: var(--lzs-container);
    width: calc(100% - 32px);
    margin: 16px auto 0;

    background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
    display: flex;
    align-items: center;
}

.lzs-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.lzs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(255 218 193 / 82%) 0%, rgb(249 115 22 / 20%) 50%, transparent 100%);
}

.lzs-hero-content {
    position: relative;
    z-index: 2;
    padding: 44px 48px;
    max-width: 50%;
}

.lzs-hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgb(98 74 74);
    margin: 0 0 12px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.lzs-hero-content p {
    color: rgb(98 74 74);
    font-size: 16px;
    margin: 0 0 24px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.lzs-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lzs-mint);
    color: var(--lzs-white);
    padding: 12px 24px;
    border-radius: var(--lzs-radius-pill);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .2s;
}

.lzs-hero-btn:hover {
    background: #333;
    color: var(--lzs-white);
}

.lzs-hero-btn i {
    font-size: 12px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CATEGORY ICONS â€” flex dengan gap yang bisa diatur
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-cats {
    max-width: var(--lzs-container);
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 20px 0 16px;
}

.lzs-cats-scroll {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.lzs-cat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--lzs-text);
}

.lzs-cat-icon {
    width: 86px;
    height: 86px;
    border-radius: 28%;
    background: #ffffff;
    border: 1.5px solid #e0ded9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform .2s, border-color .2s;
    overflow: hidden;
}

.lzs-cat:hover .lzs-cat-icon {
    transform: translateY(-3px);
    border-color: #22c55e;
    box-shadow: none;
}

.lzs-cat-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.lzs-cat-label {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    text-align: center;
    line-height: 1.25;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HOME CONTAINER (sections below hero/cats)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-home {
    max-width: var(--lzs-container);
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 20px 0 40px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PAGE BOX (Kategori, etc)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-page-box {
    max-width: var(--lzs-container);
    width: calc(100% - 32px);
    margin: 24px auto 60px;
    padding: 40px;
    background: var(--lzs-white);
    border-radius: var(--lzs-radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
    min-height: 60vh;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   QUICK ACCESS CARDS â€” kpi_quick background, equal grid
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
    width: 100%;
}

.lzs-qcard {
    border-radius: var(--lzs-radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    min-height: 144px;
    box-sizing: border-box;
}

.lzs-qcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

/* Both cards share same orange gradient to match AmbulanMu reference */
.lzs-qcard--orange {
    background-image: url('asset/images/kpi_quick.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f97316;
}

.lzs-qcard--green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.lzs-qcard-text h4 {
    color: var(--lzs-white);
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.2;
}

.lzs-qcard-text p {
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    max-width: 80%;
}

.lzs-qcard-arrow {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lzs-white);
    font-size: 15px;
    transition: background 0.2s;
}

.lzs-qcard-arrow i {
    transform: rotate(-45deg);
}

.lzs-qcard:hover .lzs-qcard-arrow {
    background: rgba(255, 255, 255, 0.4);
}



/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SECTION HEADERS
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-section {
    margin-top: 48px;
    margin-bottom: 24px;
}

.lzs-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.lzs-section-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--lzs-navy);
    margin: 0;
}

.lzs-section-head a {
    font-size: 13px;
    font-weight: 600;
    color: var(--lzs-primary);
    text-decoration: none;
}

.lzs-more {
    text-align: center;
    margin-top: 18px;
}

.lzs-more a {
    font-size: 13px;
    font-weight: 700;
    color: var(--lzs-primary);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CAMPAIGN CARDS â€” 3 col grid desktop
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-mendesak-grid,
.lzs-doa-grid,
.lzs-cards-scroll,
.lzs-cerita-cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lzs-card {
    background: var(--lzs-white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
    border: 1px solid var(--lzs-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (hover: hover) {
    .lzs-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
}

.lzs-card-img-wrap {
    position: relative;
    width: 100%;
    height: 185px;
}

.lzs-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lzs-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lzs-card-placeholder i {
    font-size: 32px;
    color: rgba(255, 255, 255, .5);
}

.lzs-initial-placeholder span {
    font-size: 36px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    user-select: none;
}

.lzs-card-like {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    background: var(--lzs-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lzs-card-cat {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--lzs-white);
    color: var(--lzs-navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lzs-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lzs-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--lzs-navy);
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lzs-card-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: var(--lzs-radius-pill);
    overflow: hidden;
    margin-bottom: 6px;
}

.lzs-card-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    border-radius: var(--lzs-radius-pill);
}

.lzs-card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.lzs-card-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 5px 0;
}

.lzs-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.lzs-card-meta strong {
    color: var(--lzs-navy);
    font-size: 13px;
    display: block;
    margin-top: 3px;
}

.lzs-card-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #f97316;
    font-size: 14px;
    font-weight: 700;
    transition: opacity .18s;
    margin-top: 5px;
}

.lzs-card-link:hover {
    opacity: 0.8;
}

.lzs-card-arrow {
    width: 28px;
    height: 28px;
    background: #f97316;
    color: var(--lzs-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   DOA ORANG BAIK
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-doa-card {
    background: var(--lzs-white);
    border-radius: var(--lzs-radius-sm);
    border: 1px solid var(--lzs-border);
    padding: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
}

.lzs-doa-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
}

.lzs-doa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.lzs-doa-head-content {
    flex: 1;
}

.lzs-doa-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--lzs-navy);
}

.lzs-doa-sub {
    font-size: 11px;
    color: var(--lzs-text-light);
    margin-top: 2px;
}

.lzs-doa-time {
    font-size: 10px;
    color: var(--lzs-text-light);
    position: absolute;
    top: 0;
    right: 0;
}

.lzs-doa-text {
    font-size: 12px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 10px;
    font-style: italic;
}

.lzs-doa-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lzs-doa-like {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--lzs-text-light);
    cursor: pointer;
    transition: color .2s;
    user-select: none;
}

.lzs-doa-like:hover {
    color: #e11d48;
}

.lzs-doa-like.liked {
    color: #e11d48;
    pointer-events: none;
}

.lzs-doa-like.liked i {
    font-weight: 900;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CERITA BAIK
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-cerita-card {
    background: var(--lzs-white);
    border-radius: var(--lzs-radius-sm);
    overflow: hidden;
    border: 1px solid var(--lzs-border);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .2s;
}

.lzs-cerita-card:hover {
    transform: translateY(-3px);
}

.lzs-cerita-img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: block;
}

.lzs-cerita-placeholder {
    width: 100%;
    height: 155px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
}

.lzs-cerita-body {
    padding: 14px 16px;
}

.lzs-cerita-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--lzs-navy);
    margin: 0 0 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lzs-cerita-excerpt {
    font-size: 13px;
    color: var(--lzs-text-muted);
    margin: 0 0 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lzs-cerita-date {
    font-size: 12px;
    color: var(--lzs-primary);
    font-weight: 600;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEDEKAH SUBUH + YOUTUBE CTA
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-bottom-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
    background: var(--lzs-white);
    padding: 24px;
    border-radius: var(--lzs-radius-lg);
    border: 1px solid var(--lzs-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .03);
}

.lzs-youtube-wrapper {
    display: flex;
    flex-direction: column;
}

.lzs-youtube-video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: var(--lzs-radius-md);
}

.lzs-youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lzs-youtube-subscribe {
    padding: 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lzs-yt-info strong {
    display: block;
    font-size: 14px;
    color: var(--lzs-navy);
}

.lzs-yt-info span {
    font-size: 11px;
    color: var(--lzs-text-light);
}

.lzs-yt-sub-btn {
    background: #ef4444;
    /* YouTube Red */
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: var(--lzs-radius-pill);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.lzs-yt-sub-btn:hover {
    background: #dc2626;
    color: #fff;
}

.lzs-sedekah {
    border-radius: var(--lzs-radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 200px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    display: flex;
    align-items: flex-end;
}

.lzs-sedekah-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.lzs-sedekah-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(249, 115, 22, .92) 0%, rgba(249, 115, 22, .4) 55%, transparent 100%);
}

.lzs-sedekah-content {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.lzs-sedekah-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--lzs-white);
    margin: 0 0 6px;
}

.lzs-sedekah-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    margin: 0 0 16px;
    line-height: 1.5;
}

.lzs-sedekah-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lzs-white);
    color: var(--lzs-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: var(--lzs-radius-pill);
    text-decoration: none;
    transition: background .2s, color .2s;
}

.lzs-sedekah-btn:hover {
    background: var(--lzs-navy);
    color: var(--lzs-white);
}

.lzs-youtube-cta {
    border-radius: var(--lzs-radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 200px;
    background: var(--lzs-navy);
}

.lzs-youtube-cta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .75;
}

.lzs-youtube-cta-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, transparent 60%);
}

.lzs-youtube-cta-overlay p {
    color: var(--lzs-white);
    font-size: 12px;
    margin: 0 0 12px;
    line-height: 1.5;
}

.lzs-yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ff0000;
    color: var(--lzs-white);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--lzs-radius-pill);
    text-decoration: none;
    width: fit-content;
    transition: background .2s;
}

.lzs-yt-btn:hover {
    background: #cc0000;
    color: var(--lzs-white);
}

.lzs-yt-btn i {
    font-size: 13px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   EMPTY STATE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-empty {
    text-align: center;
    padding: 28px;
    color: var(--lzs-text-light);
    font-size: 13px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER â€” border-radius top, social icons, WP logo
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-footer {
    background: #423c38;
    /* warna coklat gelap lazismu */
    color: #e5e5e5;
    padding: 40px 48px;
    margin: 32px auto 24px;
    font-size: 13px;
    border-radius: 24px;
    max-width: var(--lzs-container);
    width: calc(100% - 32px);
    box-sizing: border-box;
}

.lzs-footer-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.lzs-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 36px;
}

/* Footer brand column */
.lzs-footer-brand {
    display: flex;
    flex-direction: column;
}

.lzs-footer-rekening-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}

.lzs-footer-rek-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lzs-footer-rek-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lzs-footer-bank-logo {
    width: 64px;
    max-height: 48px;
    object-fit: contain;



    margin-top: 5px;

    filter: brightness(0) invert(1);
    transition: .3s ease;
}

.lzs-footer-bank-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

.lzs-footer-rek-details {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.lzs-footer-rek-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a8a29e;
    font-weight: 700;
}

.lzs-footer-rek-bank {
    font-size: 12px;
    color: var(--lzs-white);
    margin: 2px 0;
}

.lzs-footer-rek-no {
    font-size: 11px;
    color: #d6d3d1;
    font-family: monospace;
}

.lzs-footer-logo {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.lzs-footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.lzs-footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--lzs-white);
    display: flex;
    align-items: center;
}

.lzs-footer-logo-text .accent {
    color: var(--lzs-white);
    background: var(--lzs-primary);
    border-radius: 4px;
    padding: 0 4px;
    margin-left: 1px;
}

.lzs-footer-desc {
    font-size: 12px;
    line-height: 1.75;
    color: #b8b3ae;
    margin-bottom: 12px;
    flex: 1;
}

/* Alamat Kantor di kolom brand */
.lzs-footer-brand-address {
    font-size: 12px;
    line-height: 1.6;
    color: #d6d3d1;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.lzs-footer-address-label {
    font-weight: 700;
    color: var(--lzs-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lzs-footer-brand-address i {
    color: var(--lzs-primary);
    font-size: 15px;
}

/* Social Icons */
.lzs-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.lzs-footer-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8b3ae;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.lzs-footer-social:hover {
    background: var(--lzs-primary);
    color: var(--lzs-white);
}

.lzs-footer h4 {
    color: var(--lzs-white);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px;
}

.lzs-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lzs-footer ul li a {
    color: #b8b3ae;
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}

.lzs-footer ul li a:hover {
    color: var(--lzs-white);
}

.lzs-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #7d7974;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MOBILE BOTTOM NAV
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--lzs-white);
    border-top: 1px solid var(--lzs-border);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .08);
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
}

.lzs-mobile-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
}

.lzs-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--lzs-text-muted);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    transition: color .2s;
    flex: 1;
}

.lzs-mobile-nav-item.active,
.lzs-mobile-nav-item:hover {
    color: var(--lzs-primary);
}

.lzs-mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 1px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MOBILE TOPBAR & MENU (hidden on desktop)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-mobile-topbar {
    display: none;
}

.lzs-mobile-menu {
    display: none;
}

.lzs-mobile-footer-addons {
    display: none;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE â€” Mobile
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
    .lzs-mobile-nav {
        display: block;
    }

    .lzs-footer {
        display: none;
    }

    .lzs-nav-link {
        display: none;
    }

    /* Mobile footer addons container */
    .lzs-mobile-footer-addons {
        display: block;
        padding: 20px 16px 90px;
        background: transparent;
        text-align: center;
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
        margin: 0 16px;
    }

    /* Mobile horizontal menu at bottom */
    .lzs-mobile-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 0 0 16px;
        background: transparent;
    }

    .lzs-mobile-menu a {
        color: #475569;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        font-family: 'Outfit', sans-serif;
        letter-spacing: .3px;
        transition: color .2s;
    }

    .lzs-mobile-menu a:hover {
        color: var(--lzs-primary);
    }

    /* Mobile social icons at bottom */
    .lzs-mobile-topbar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        padding: 0;
        background: transparent;
    }

    .lzs-mobile-topbar a {
        color: #64748b;
        font-size: 16px;
        text-decoration: none;
        transition: color .2s;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(0, 0, 0, .04);
    }

    .lzs-mobile-topbar a:hover {
        color: var(--lzs-primary);
        background: var(--lzs-primary-light);
    }

    /* Navbar full width on mobile */
    .lzs-navbar-wrap {
        padding: 0;
    }

    .lzs-navbar {
        border-radius: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border-left: none;
        border-right: none;
        border-top: none;
    }

    .lzs-navbar-inner {
        padding: 6px 16px;
        gap: 8px;
    }

    .lzs-logo {
        font-size: 18px;
    }

    .lzs-logo-img {
        height: 32px;
    }

    .lzs-search {
        height: 34px;
        padding: 0 12px;
    }

    .lzs-search input {
        font-size: 13px;
    }

    .lzs-nav-btn {
        padding: 7px 14px;
        font-size: 12px;
        border-radius: 8px;
    }

    /* Hero (Khusus Mobile: Layout Overlapping Card seperti referensi Kitabisa) */
    .lzs-hero {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 240px 0 16px !important;
        min-height: auto !important;
        height: auto !important;
        background: transparent !important;
        border-radius: 0 !important;
        overflow: visible !important;
        display: block !important;
    }

    .lzs-hero-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 280px !important;
        border-radius: 0 0 42px 42px !important;
        overflow: hidden !important;
    }

    .lzs-hero-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 280px !important;
        border-radius: 0 0 44px 24px !important;
        overflow: hidden !important;
        background: linear-gradient(180deg, rgba(254, 215, 170, 0.75) 0%, rgba(255, 237, 213, 0.35) 45%, transparent 100%) !important;
    }

    .lzs-hero-content {
        position: relative !important;
        z-index: 10 !important;
        background: var(--lzs-white, #ffffff) !important;
        border: 1px solid var(--lzs-border, #e2e8f0) !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
        padding: 20px 20px !important;
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    .lzs-hero-content h1 {
        position: absolute !important;
        top: -210px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        font-size: 20px !important;
        font-weight: 800 !important;
        color: #3d3d3d !important;
        line-height: 1.25 !important;
        margin: 0 !important;
        text-shadow: none !important;
        letter-spacing: -0.3px !important;
        z-index: 20 !important;
        text-align: center !important;
    }

    .lzs-hero-content p {
        font-size: 13px !important;
        color: #475569 !important;
        line-height: 1.5 !important;
        margin-top: 0 !important;
        margin-bottom: 18px !important;
        text-shadow: none !important;
    }

    .lzs-hero-btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: var(--lzs-primary, #f97316) !important;
        color: #ffffff !important;
        padding: 13px 20px !important;
        border-radius: 9999px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3) !important;
        box-sizing: border-box !important;
        text-decoration: none !important;
    }

    /* Section spacing on mobile */
    .lzs-section {
        margin-top: 28px;
        margin-bottom: 16px;
    }

    .lzs-section-head {
        margin-bottom: 14px;
    }

    .lzs-section-head h2 {
        font-size: 15px;
    }

    /* â”€â”€ Categories: 4-icon grid on mobile â”€â”€ */
    .lzs-cats {
        padding: 14px 0px;
    }

    .lzs-cats-scroll {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0;

        overflow-x: visible;
    }

    .lzs-cat-extra {
        display: none !important;
    }

    .lzs-cat {
        flex: 1;
        width: auto;
    }

    .lzs-cat-icon {
        width: 58px;
        height: 58px;
    }

    .lzs-cat-icon img {
        width: 42px;
        height: 42px;
    }

    .lzs-cat-label {
        font-size: 12px;
    }

    /* Container */
    .lzs-home {
        padding: 16px 0px;
    }

    .lzs-page-box {
        margin: 16px auto 40px;
        padding: 20px 16px;
        background: transparent;
        box-shadow: none;
        width: 100%;
    }


    /* Quick access */
    .lzs-quick {
        gap: 12px;
        margin-bottom: 24px;
        padding: 0;
    }

    .lzs-qcard {
        padding: 12px 14px;
        min-height: 70px;
    }

    .lzs-qcard-icon {
        width: 36px;
        height: 36px;
    }

    .lzs-qcard-text h4 {
        font-size: 13px;
    }

    .lzs-qcard-text p {
        font-size: 9px;
    }

    /* Cards on mobile now inherit the archive list view structure below */
    .lzs-section {
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .lzs-section-head {
        margin-bottom: 14px;
    }

    .lzs-section-head h2 {
        font-size: 17px;
    }

    /* Doa */
    .lzs-doa-card {
        flex: 0 0 240px;
    }

    /* Cerita */
    .lzs-cerita-cards-wrap {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .lzs-cerita-card {
        display: flex;
        align-items: flex-start;
        background: transparent;
        border: none;
        border-radius: 0;
        overflow: hidden;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--lzs-border);
    }

    .lzs-cerita-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .lzs-cerita-img {
        width: 140px;
        height: 95px;
        flex-shrink: 0;
        object-fit: cover;
        border-radius: var(--lzs-radius-sm);
    }

    .lzs-cerita-body {
        padding: 0 0 0 12px;
        flex: 1;
    }

    .lzs-cerita-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--lzs-navy);
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .lzs-cerita-excerpt {
        font-size: 11px;
        color: var(--lzs-text-muted);
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .lzs-cerita-date {
        font-size: 11px;
        font-weight: 600;
        color: var(--lzs-primary);
        display: inline-block;
    }

    /* Bottom grid */
    .lzs-bottom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
        background: var(--lzs-white);
        border-radius: var(--lzs-radius-lg);
    }

    .lzs-sedekah {
        min-height: 160px;
    }

    .lzs-sedekah-content h3 {
        font-size: 22px;
    }

    .lzs-sedekah-content p {
        font-size: 11px;
    }

    .lzs-youtube-cta {
        min-height: 160px;
    }
}

@media (max-width: 400px) {

    .lzs-hero-content h1 {
        font-size: 20px;
    }

    .lzs-hero {
        min-height: 150px;
    }

    .lzs-card {
        flex: 0 0 200px;
    }
}

.lzs-theme-main {
    padding-top: 0px;
}

.lzs-archive-container {
    max-width: var(--lzs-container);
    width: calc(100% - 32px);
    margin: 40px auto 60px;
}

.lzs-archive-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.lzs-archive-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--lzs-navy);
    margin: 0 0 8px;
}

.lzs-archive-desc {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.lzs-view-toggle {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: var(--lzs-radius-sm);
    gap: 4px;
}

.lzs-toggle-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 8px 12px;
    border-radius: var(--lzs-radius-sm);
    cursor: pointer;
    transition: all .2s;
    font-size: 16px;
}

.lzs-toggle-btn.active {
    background: var(--lzs-white);
    color: var(--lzs-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lzs-archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.lzs-filter-btn {
    background: var(--lzs-white);
    border: 1px solid var(--lzs-border);
    color: #64748b;
    padding: 8px 20px;
    border-radius: var(--lzs-radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.lzs-filter-btn:hover {
    border-color: var(--lzs-primary);
    color: var(--lzs-primary);
}

.lzs-filter-btn.active {
    background: var(--lzs-primary);
    border-color: var(--lzs-primary);
    color: var(--lzs-white);
}

.lzs-campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* LIST VIEW OVERRIDES */
.lzs-campaign-grid.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}

.lzs-campaign-grid.list-view .lzs-card {
    flex-direction: row;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
    box-shadow: none;
    padding: 16px 0;
    gap: 20px;
    align-items: stretch;
}

.lzs-campaign-grid.list-view .lzs-card:last-child {
    border-bottom: none;
}

.lzs-campaign-grid.list-view .lzs-card-img-wrap {
    width: 280px;
    height: auto;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.lzs-campaign-grid.list-view .lzs-card-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* New Filter Bar Styles */
.lzs-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    margin-bottom: 24px;
}

.lzs-filter-item {
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    border-right: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
}

.lzs-filter-item:last-child {
    border-right: none;
}

.lzs-filter-item i {
    font-size: 16px;
    color: var(--lzs-primary);
}

.lzs-filter-dot {
    width: 6px;
    height: 6px;
    background: var(--lzs-primary);
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: 20%;
}

.lzs-desktop-only {
    display: flex;
}

@media (max-width: 768px) {
    .lzs-desktop-only {
        display: none !important;
    }

    .lzs-archive-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Force Grid to be List on Mobile across Archive and Program Lainnya (`list mobile home campaign tolong samakan dengan yang ada di archive yak ui nya`) */
    .lzs-campaign-grid,
    .lzs-campaign-grid.list-view,
    .lzs-cards-scroll {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        overflow-x: visible !important;
    }

    .lzs-campaign-grid .lzs-card,
    .lzs-campaign-grid.list-view .lzs-card,
    .lzs-cards-scroll .lzs-card {
        display: flex !important;
        flex-direction: row !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 16px 0 !important;
        gap: 16px !important;
        align-items: stretch !important;
        flex: unset !important;
    }

    .lzs-campaign-grid .lzs-card:last-child,
    .lzs-campaign-grid.list-view .lzs-card:last-child,
    .lzs-cards-scroll .lzs-card:last-child {
        border-bottom: none !important;
    }

    .lzs-campaign-grid .lzs-card-img-wrap,
    .lzs-campaign-grid.list-view .lzs-card-img-wrap,
    .lzs-cards-scroll .lzs-card-img-wrap {
        width: 140px !important;
        height: 100px !important;
        flex-shrink: 0 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .lzs-campaign-grid .lzs-card-body,
    .lzs-campaign-grid.list-view .lzs-card-body,
    .lzs-cards-scroll .lzs-card-body {
        padding: 0 !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .lzs-campaign-grid .lzs-card-title,
    .lzs-campaign-grid.list-view .lzs-card-title,
    .lzs-cards-scroll .lzs-card-title {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .lzs-campaign-grid.list-view .lzs-card-stats span:last-child,
    .lzs-cards-scroll .lzs-card-stats span:last-child {
        display: none !important;
    }

    .lzs-campaign-grid.list-view .lzs-card-divider,
    .lzs-cards-scroll .lzs-card-divider {
        display: none !important;
    }

    .lzs-campaign-grid .lzs-card-stats,
    .lzs-cards-scroll .lzs-card-stats {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
        font-size: 11px !important;
    }

    .lzs-campaign-grid .lzs-card-link,
    .lzs-campaign-grid.list-view .lzs-card-link,
    .lzs-cards-scroll .lzs-card-link {
        display: none !important;
    }

    .lzs-campaign-grid .lzs-card-meta,
    .lzs-campaign-grid.list-view .lzs-card-meta,
    .lzs-cards-scroll .lzs-card-meta {
        font-size: 11px !important;
        margin-bottom: 0 !important;
        margin-top: 8px !important;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
       HORIZONTAL SLIDE / SWIPE ON MOBILE (MENDESAK & DOA)
       â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .lzs-mendesak-grid,
    .lzs-doa-grid {
        display: flex !important;
        grid-template-columns: unset !important;
        gap: 12px !important;
        overflow-x: auto !important;
        padding-bottom: 10px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        flex-wrap: nowrap !important;
    }

    .lzs-mendesak-grid::-webkit-scrollbar,
    .lzs-doa-grid::-webkit-scrollbar {
        display: none !important;
    }

    .lzs-mendesak-grid .lzs-card {
        flex: 0 0 240px !important;
        width: 240px !important;
        min-width: 240px !important;
        display: flex !important;
        flex-direction: column !important;
        background: var(--lzs-white, #fff) !important;
        border: 1px solid var(--lzs-border, #e2e8f0) !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
        padding: 0 !important;
        height: auto !important;
        gap: 0 !important;
    }

    .lzs-mendesak-grid .lzs-card-img-wrap {
        width: 100% !important;
        height: 150px !important;
        border-radius: 16px 16px 0 0 !important;
    }

    .lzs-mendesak-grid .lzs-card-body {
        padding: 14px !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        justify-content: space-between !important;
    }

    .lzs-mendesak-grid .lzs-card-title {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .lzs-mendesak-grid .lzs-card-divider {
        display: block !important;
    }

    .lzs-mendesak-grid .lzs-card-stats {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 11.5px !important;
    }

    .lzs-mendesak-grid .lzs-card-stats span:last-child {
        display: inline !important;
    }

    .lzs-mendesak-grid .lzs-card-link {
        display: flex !important;
    }

    .lzs-mendesak-grid .lzs-card-meta {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }

    .lzs-doa-grid .lzs-doa-card {
        flex: 0 0 260px !important;
        width: 260px !important;
        min-width: 260px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        background: var(--lzs-white, #fff) !important;
        border: 1px solid var(--lzs-border, #e2e8f0) !important;
        border-radius: 16px !important;
        padding: 16px !important;
    }
}

.lzs-load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.lzs-load-more-btn {
    background: var(--lzs-white);
    border: 1px solid var(--lzs-border);
    color: var(--lzs-navy);
    padding: 12px 28px;
    border-radius: var(--lzs-radius-pill);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lzs-load-more-btn:hover {
    background: var(--lzs-primary);
    color: var(--lzs-white);
    border-color: var(--lzs-primary);
}

.lzs-loading-state {
    text-align: center;
    padding: 40px;
    color: var(--lzs-primary);
    font-size: 16px;
    font-weight: 600;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   ARTICLE TYPOGRAPHY (.lzs-article-content)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-article-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    /* Slate 700 */
}

.lzs-article-content p {
    margin-bottom: 24px;
}

.lzs-article-content h1,
.lzs-article-content h2,
.lzs-article-content h3,
.lzs-article-content h4,
.lzs-article-content h5,
.lzs-article-content h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--lzs-navy);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.lzs-article-content h2 {
    font-size: 26px;
}

.lzs-article-content h3 {
    font-size: 22px;
}

.lzs-article-content h4 {
    font-size: 18px;
}

.lzs-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--lzs-radius-lg);
    margin: 24px 0;
}

.lzs-article-content blockquote {
    border-left: 4px solid var(--lzs-primary);
    background: #fff7ed;
    /* Orange 50 */
    padding: 16px 24px;
    margin: 24px 0;
    font-style: italic;
    border-radius: 0 var(--lzs-radius-md) var(--lzs-radius-md) 0;
    color: var(--lzs-navy);
}

.lzs-article-content ul,
.lzs-article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.lzs-article-content li {
    margin-bottom: 8px;
}

.lzs-article-content a {
    color: var(--lzs-primary);
    text-decoration: underline;
}

.lzs-article-content a:hover {
    color: #c2410c;
    /* Orange 700 */
}

.lzs-article-content figure {
    margin: 24px 0;
}

.lzs-article-content figcaption {
    font-size: 13px;
    color: var(--lzs-text-light);
    text-align: center;
    margin-top: 8px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   LAYOUT: SINGLE & ARCHIVE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
}

.lzs-main-content {
    background: var(--lzs-white);
    border-radius: var(--lzs-radius-lg);
    padding: 32px;
    border: 1px solid var(--lzs-border);
}

.lzs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lzs-widget {
    background: var(--lzs-white);

}

.lzs-widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--lzs-navy);
    position: relative;
    padding-bottom: 12px;
}

.lzs-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--lzs-primary);
    border-radius: 2px;
}

/* Related widget list */
.lzs-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lzs-widget ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--lzs-border);
}

.lzs-widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lzs-widget ul li a {
    color: var(--lzs-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: color .2s;
}

.lzs-widget ul li a:hover {
    color: var(--lzs-primary);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   COMMENTS
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-comments-area {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px dashed var(--lzs-border);
}

.lzs-comments-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--lzs-navy);
    margin-bottom: 24px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.comment {
    margin-bottom: 24px;
}

.comment-body {
    background: #f8fafc;
    /* Slate 50 */
    border: 1px solid var(--lzs-border);
    border-radius: var(--lzs-radius-lg);
    padding: 20px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-meta img.avatar {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.comment-author b {
    font-size: 15px;
    color: var(--lzs-navy);
}

.comment-metadata {
    font-size: 12px;
    color: var(--lzs-text-light);
}

.comment-content {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.reply a {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lzs-primary);
    text-decoration: none;
}

.children {
    list-style: none;
    padding-left: 24px;
    margin-top: 24px;
    border-left: 2px solid var(--lzs-border);
}

/* Comment Form */
.comment-respond {
    background: var(--lzs-white);
    border-radius: var(--lzs-radius-lg);
    padding: 24px;
    border: 1px solid var(--lzs-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.comment-reply-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--lzs-navy);
    margin-bottom: 16px;
}

.comment-form p {
    margin-bottom: 16px;
}

.comment-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--lzs-navy);
    margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--lzs-border);
    border-radius: var(--lzs-radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color .2s;
    background: #f8fafc;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--lzs-primary);
    background: #fff;
}

.comment-form .submit {
    background: var(--lzs-primary);
    color: var(--lzs-white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--lzs-radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
}

.comment-form .submit:hover {
    opacity: 0.9;
}

.lzs-mendesak-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.lzs-mendesak-grid::-webkit-scrollbar {
    display: none;
}

.lzs-mendesak-grid .lzs-card {

    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .lzs-mendesak-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        overflow: visible;
    }

    .lzs-mendesak-grid .lzs-card {
        flex: none;
        width: 100%;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
    .lzs-layout-with-sidebar {
        grid-template-columns: 1fr;
    }

    .lzs-main-content {
        padding: 24px;
    }
}

@media screen and (max-width: 768px) {
    .lzs-article-content {
        font-size: 15px;
    }

    .lzs-main-content {
        padding: 20px;
    }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   GALLERY & LIGHTBOX
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-article-content .gallery,
.lzs-article-content .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.lzs-article-content .gallery img,
.lzs-article-content .wp-block-gallery img,
.lzs-article-content .wp-block-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--lzs-radius-md);
    cursor: zoom-in;
    margin: 0 !important;
    transition: transform 0.2s;
}

.lzs-article-content .gallery img:hover,
.lzs-article-content .wp-block-gallery img:hover {
    transform: scale(1.02);
}

/* Lightbox Modal */
.lzs-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lzs-lightbox.active {
    display: flex;
    opacity: 1;
}

.lzs-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--lzs-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lzs-lightbox.active .lzs-lightbox-img {
    transform: scale(1);
}

.lzs-lightbox-prev,
.lzs-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    opacity: 0.7;
    transition: all 0.2s;
    z-index: 10;
}

/* â•â•â• MEGAMENU â•â•â• */
.lzs-megamenu-container {
    position: static;
    display: inline-block;
}

.lzs-megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    padding: 30px 40px;
    margin-top: 0;
    box-sizing: border-box;
}

/* Hover bridge for megamenu to prevent flickering */
.lzs-megamenu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 24px;
    background: transparent;
}

.lzs-megamenu-container:hover .lzs-megamenu {
    opacity: 1;
    visibility: visible;
}

.lzs-megamenu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lzs-megamenu-col h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.lzs-megamenu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lzs-megamenu-col ul li a {
    color: #475569;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    padding: 2px 0;
}

.lzs-megamenu-col ul li a:hover {
    color: #f97316;
    padding-left: 6px;
}

/* Campaign Card in Megamenu */
.lzs-megamenu-campaign-card:hover h4 {
    color: #f97316 !important;
}

.lzs-megamenu-campaign-card .lzs-mm-card-img-wrap img {
    transition: transform 0.3s ease;
}

.lzs-megamenu-campaign-card:hover .lzs-mm-card-img-wrap img {
    transform: scale(1.06);
}


.lzs-lightbox-prev:hover,
.lzs-lightbox-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.lzs-lightbox-prev {
    left: 24px;
}

.lzs-lightbox-next {
    right: 24px;
}

.lzs-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    line-height: 1;
    opacity: 0.7;
}

.lzs-lightbox-close:hover {
    opacity: 1;
}

/* ========================================================
   MODERN BLOG ARCHIVE & SINGLE POST AESTHETICS 
   ======================================================== */

.lzs-post-card {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--lzs-radius-lg);
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.lzs-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(var(--lzs-primary-rgb), 0.3);
    background: #fff;
}

.lzs-post-card-img {
    width: 240px;
    height: 160px;
    border-radius: var(--lzs-radius-md);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.lzs-post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lzs-post-card:hover .lzs-post-card-img img {
    transform: scale(1.05);
}

.lzs-post-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.lzs-post-card-cat {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 800;
    color: var(--lzs-primary);
    background: rgba(var(--lzs-primary-rgb), 0.1);
    padding: 4px 10px;
    border-radius: var(--lzs-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.lzs-post-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--lzs-navy);
    margin: 0 0 12px;
    line-height: 1.3;
    transition: color 0.2s;
}

.lzs-post-card:hover .lzs-post-card-title {
    color: var(--lzs-primary);
}

.lzs-post-card-excerpt {
    font-size: 14px;
    color: var(--lzs-text-muted);
    margin: 0 0 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lzs-post-card-meta {
    font-size: 12px;
    color: var(--lzs-text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.lzs-post-card-meta i {
    margin-right: 6px;
    opacity: 0.7;
}

@media screen and (max-width: 640px) {
    .lzs-post-card {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .lzs-post-card-img {
        width: 100%;
        height: 200px;
    }
}

/* Single Post */
.lzs-single-head {
    margin-bottom: 32px;
    text-align: left;
}

.lzs-single-cat {
    display: inline-flex;
    align-items: center;
    background: var(--lzs-primary-light);
    color: var(--lzs-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    transition: background 0.2s, color 0.2s;
}

.lzs-single-cat:hover {
    background: var(--lzs-primary);
    color: #fff;
}

.lzs-single-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--lzs-navy);
    line-height: 1.25;
    margin: 0 0 24px;
}

@media screen and (max-width: 768px) {
    .lzs-single-title {
        font-size: 28px;
    }
}

.lzs-single-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    font-size: 14px;
    color: var(--lzs-text-light);
    font-weight: 600;
}

.lzs-single-meta i {
    margin-right: 6px;
}

.lzs-single-featured-link {
    display: block;
}

.lzs-single-featured {
    margin-bottom: 40px;
    border-radius: var(--lzs-radius-lg) !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 400px;
}

.lzs-single-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lzs-single-featured-link:hover .lzs-single-featured img {
    transform: scale(1.03);
}

@media screen and (max-width: 768px) {
    .lzs-single-featured {
        height: 250px;
    }
}

.lzs-share-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--lzs-border);
}

.lzs-share-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--lzs-navy);
}

.lzs-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lzs-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.lzs-share-wa {
    background: #25D366;
}

.lzs-share-fb {
    background: #1877F2;
}

.lzs-share-tw {
    background: #1DA1F2;
}

/* Pagination Styling */
.lzs-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lzs-pagination a,
.lzs-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--lzs-radius-md);
    background: #fff;
    color: var(--lzs-navy);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid var(--lzs-border);
    transition: all 0.2s;
}

.lzs-pagination a:hover {
    border-color: var(--lzs-primary);
    color: var(--lzs-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lzs-pagination .current {
    background: var(--lzs-primary);
    color: #fff;
    border-color: var(--lzs-primary);
    box-shadow: 0 4px 12px rgba(var(--lzs-primary-rgb), 0.2);
}

.lzs-pagination .dots {
    border: none;
    background: transparent;
}

/* Single Content Image & Gallery Enhancements */
.lzs-article-content img {
    border-radius: var(--lzs-radius-lg) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: auto;
}

/* WordPress Default & Gutenberg Gallery Override */
.lzs-article-content .gallery,
.lzs-article-content .wp-block-gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: 16px !important;
    margin: 32px 0 !important;
}

.lzs-article-content .gallery br {
    display: none;
}

.lzs-article-content .gallery-item,
.lzs-article-content .wp-block-image {
    margin: 0 !important;
    width: 100% !important;
    display: block;
    overflow: hidden;
    border-radius: var(--lzs-radius-lg) !important;
}

.lzs-article-content .gallery-item img,
.lzs-article-content .wp-block-image img {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
    border: none !important;
    transition: transform 0.4s ease !important;
    display: block;
    margin: 0 !important;
}

.lzs-article-content .gallery-item a:hover img,
.lzs-article-content .wp-block-image a:hover img {
    transform: scale(1.1) !important;
}

.lzs-article-content .gallery-caption,
.lzs-article-content figcaption {
    font-size: 11px;
    color: var(--lzs-text-light);
    text-align: center;
    padding-top: 4px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MOBILE TWEAKS FOR CARDS (IMG HEIGHT & PADDING)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media screen and (max-width: 767px) {
    .lzs-card-img-wrap {
        height: 140px;
        /* Reduce height on mobile for better proportion */
    }

    .lzs-card-body {
        padding: 12px;
        /* Reduce margin between image and text */
    }

    .lzs-card-title {
        font-size: 14px;
        /* Slightly smaller title on mobile */
    }
}

/* â•â•â• LIVE SEARCH DROPDOWN â•â•â• */
.lzs-search-wrapper {
    position: static;
    flex: 1;
}

.lzs-search-wrapper .lzs-search {
    width: 100%;
}

.lzs-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    margin-top: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px 40px;
    box-sizing: border-box;
}

.lzs-search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#lzs-search-default-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.lzs-search-section {
    margin-bottom: 16px;
}

.lzs-search-section h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.lzs-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lzs-search-tags a {
    font-size: 12px;
    color: #475569;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lzs-search-tags a:hover {
    background: #e2e8f0;
    color: var(--lzs-primary);
}

.lzs-search-cat-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lzs-search-cat-links li a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.lzs-search-cat-links li a:hover {
    color: var(--lzs-primary);
}

/* Ajax live results */
.lzs-search-live-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-height: 320px;
    overflow-y: auto;
}

.lzs-search-item {
    display: flex;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    border: 1px solid transparent;
}

.lzs-search-item:hover {
    background: #f8fafc;
    border-color: #f1f5f9;
}

.lzs-search-item-img {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.lzs-search-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lzs-search-item-img-placeholder {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(135deg, #cbd5e1, #e2e8f0);
    flex-shrink: 0;
}

.lzs-search-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.lzs-search-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--lzs-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.lzs-search-item-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lzs-search-item-bar {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.lzs-search-item-fill {
    height: 100%;
    background: var(--lzs-primary);
    border-radius: 2px;
}

.lzs-search-item-percent {
    font-size: 11px;
    color: var(--lzs-text-light);
    white-space: nowrap;
}

.lzs-search-view-all-btn {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--lzs-primary);
    text-decoration: none;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-top: 12px;
    transition: color 0.2s;
}

.lzs-search-view-all-btn:hover {
    color: #c2410c;
}

/* Mobile responsive styles for live search dropdown */
@media screen and (max-width: 767px) {
    #lzs-search-default-panel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lzs-search-cat-links {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lzs-search-live-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lzs-search-dropdown {
        padding: 16px;
    }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PENGURUS PAGE TEMPLATE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-pengurus-hero {
    background: linear-gradient(135deg, #534c47 0%, #312c29 100%);
    padding: 120px 20px 90px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    z-index: 1;
}

.lzs-pengurus-hero-shape-1 {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.lzs-pengurus-hero-shape-2 {
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.lzs-pengurus-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lzs-pengurus-hero-tag {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.lzs-pengurus-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.lzs-pengurus-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #dcd6d1;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    display: inline-block;
}

.lzs-pengurus-container {
    max-width: 1100px;
    width: calc(100% - 32px);
    margin: -40px auto 80px;
    padding: 48px 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
}

.lzs-pengurus-section {
    margin-bottom: 60px;
}

.lzs-pengurus-section-title-wrap {
    text-align: center;
    margin-bottom: 32px;
}

.lzs-pengurus-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.lzs-pengurus-title-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #f97316;
    border-radius: 99px;
}

.lzs-pengurus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.lzs-pengurus-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lzs-pengurus-photo-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 4px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.lzs-pengurus-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.lzs-pengurus-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lzs-pengurus-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
    line-height: 1.4;
    word-break: break-word;
}

.lzs-pengurus-card span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.lzs-pengurus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(249, 115, 22, 0.15) !important;
}

.lzs-pengurus-card:hover .lzs-pengurus-photo-wrap {
    transform: scale(1.05);
    border-color: #f97316 !important;
}

@media (max-width: 768px) {
    .lzs-pengurus-hero {
        padding: 100px 16px 60px !important;
    }

    .lzs-pengurus-hero h1 {
        font-size: 30px !important;
    }

    .lzs-pengurus-card {
        max-width: 100% !important;
    }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   GLOBAL PAGE & SINGLE ARCHIVE TEMPLATE
   (No Inline CSS, Unified with Pengurus Style)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-page-hero {
    background: linear-gradient(135deg, #534c47 0%, #312c29 100%);
    padding: 120px 20px 90px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    z-index: 1;
}

.lzs-page-hero-shape-1 {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.lzs-page-hero-shape-2 {
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.lzs-page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lzs-page-hero-tag {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.lzs-page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.lzs-page-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #dcd6d1;
    line-height: 1.6;
    margin: 0;
    max-width: 650px;
    display: inline-block;
}

.lzs-page-container,
.lzs-archive-container,
.lzs-page-box {
    max-width: 1100px;
    width: calc(100% - 32px);
    margin: -40px auto 40px;
    padding: 48px 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
}

/* Post Cards inside Archive / Blog Layout */
.lzs-post-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lzs-post-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.lzs-post-card-img {
    width: 220px;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: #e2e8f0;
}

.lzs-post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lzs-post-card:hover .lzs-post-card-img img {
    transform: scale(1.06);
}

.lzs-post-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lzs-post-card-cat {
    display: inline-block;
    align-self: flex-start;
    background: #fff7ed;
    color: #f97316;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.lzs-post-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.4;
    transition: color 0.2s;
}

.lzs-post-card:hover .lzs-post-card-title {
    color: #f97316;
}

.lzs-post-card-excerpt {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 14px 0;
    line-height: 1.5;
}

.lzs-post-card-meta {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    gap: 16px;
    align-items: center;
}

@media screen and (max-width: 640px) {
    .lzs-post-card {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .lzs-post-card-img {
        width: 100%;
        height: 180px;
    }
}


/* Single Post with 2-Column Sidebar Layout */
.lzs-layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    align-items: start;
    max-width: 1100px;
    width: calc(100% - 32px);
    margin: -40px auto 80px;
    position: relative;
    z-index: 5;
}

.lzs-main-content {
    background: #ffffff;
    padding: 44px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.lzs-sidebar {
    background: #ffffff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.lzs-single-head {
    margin-bottom: 28px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 24px;
}

.lzs-single-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 14px;
}

.lzs-single-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13.5px;
    color: #64748b;
    flex-wrap: wrap;
}

.lzs-single-cat {
    background: #fff7ed;
    color: #f97316;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12.5px;
}

.lzs-single-featured-link {
    display: block;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
}

.lzs-single-featured img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.lzs-single-cta-box {
    margin-top: 40px;
    padding: 36px 32px;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.lzs-single-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #ffffff;
}

.lzs-single-cta-desc {
    margin: 0 0 24px;
    font-size: 15px;
    opacity: 0.95;
}

.lzs-single-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #f97316;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 99px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lzs-single-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Sidebar Widgets Clean Styling */
.lzs-widget {
    margin-bottom: 36px;
}

.lzs-widget:last-child {
    margin-bottom: 0;
}

.lzs-widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f97316;
    position: relative;
}

.lzs-sidebar-search-form {
    display: flex;
    gap: 8px;
}

.lzs-sidebar-search-input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.lzs-sidebar-search-input:focus {
    border-color: #f97316;
}

.lzs-sidebar-search-btn {
    background: #f97316;
    color: #ffffff;
    border: none;
    padding: 0 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.lzs-sidebar-search-btn:hover {
    background: #ea580c;
}

.lzs-sidebar-recent-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.lzs-sidebar-recent-item:last-child {
    border-bottom: none;
}

.lzs-sidebar-recent-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.lzs-sidebar-recent-thumb-placeholder {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    flex-shrink: 0;
}

.lzs-sidebar-recent-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 4px;
}

.lzs-sidebar-recent-title:hover {
    color: #f97316;
}

.lzs-sidebar-recent-date {
    font-size: 11.5px;
    color: #64748b;
    display: block;
}

.lzs-sidebar-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lzs-sidebar-cat-list li {
    border-bottom: 1px solid #f1f5f9;
}

.lzs-sidebar-cat-list li:last-child {
    border-bottom: none;
}

.lzs-sidebar-cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #475569;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.lzs-sidebar-cat-list li a:hover {
    color: #f97316;
}

.lzs-cat-count {
    background: #f1f5f9;
    color: #64748b;
    font-size: 11.5px;
    padding: 2px 8px;
    border-radius: 99px;
    font-weight: 700;
}

.lzs-sidebar-campaign-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lzs-sidebar-campaign-card:last-child {
    margin-bottom: 0;
}

.lzs-sidebar-campaign-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.lzs-sidebar-c-thumb-wrap {
    display: block;
    height: 140px;
    overflow: hidden;
}

.lzs-sidebar-c-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lzs-sidebar-c-body {
    padding: 16px;
}

.lzs-sidebar-c-body h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.4;
}

.lzs-sidebar-c-body h4 a {
    color: #0f172a;
    text-decoration: none;
}

.lzs-sidebar-c-body h4 a:hover {
    color: #f97316;
}

/* Contact Page Styles */
.lzs-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.lzs-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lzs-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff7ed;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.lzs-contact-item strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 4px;
}

.lzs-contact-item span {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FORM AMBULANCE DESIGN (Exact Reference UI)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-amb-notice {
    background: #FFEDD5;
    border: 1px solid #FDBA74;
    color: #C2410C;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 36px;
    max-width: 850px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.08);
}

.lzs-amb-form-box {
    max-width: 850px;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.lzs-amb-field-group {
    margin-bottom: 20px;
}

.lzs-amb-label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.lzs-amb-label span.req {
    color: #ef4444;
}

.lzs-amb-shareloc-btn {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #2563eb;
    font-size: 13.5px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lzs-amb-shareloc-btn:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.lzs-amb-shareloc-btn.active-gps {
    background: #ecfdf5;
    border-color: #10b981;
    color: #059669;
}

/* Radio pill tab style for Pengajuan Ambulan Untuk */
.lzs-amb-radio-tabs {
    display: inline-flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 14px;
    gap: 6px;
    border: 1px solid #e2e8f0;
}

.lzs-amb-radio-tab {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.lzs-amb-radio-tab input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lzs-amb-radio-tab span {
    display: block;
    padding: 8px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.25s ease;
    user-select: none;
}

.lzs-amb-radio-tab input[type="radio"]:checked+span {
    background: #ffffff;
    color: #f97316;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.lzs-amb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lzs-amb-full {
    grid-column: span 2;
}

/* 3-Column Schedule row on desktop */
.lzs-amb-schedule-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .lzs-amb-schedule-row {
        grid-template-columns: 1fr;
    }
}

.lzs-amb-input,
.lzs-amb-select,
.lzs-amb-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    box-sizing: border-box;
    transition: all 0.2s;
}

.lzs-amb-input:focus,
.lzs-amb-select:focus,
.lzs-amb-textarea:focus {
    border-color: #f97316;
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.lzs-amb-section-header {
    margin: 40px 0 24px;
    border-top: 2px dashed #e2e8f0;
    padding-top: 28px;
}

.lzs-amb-section-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lzs-amb-section-header p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

/* Colorful Distinct Screening Box for INFORMASI TAMBAHAN */
.lzs-amb-screening-box {
    background: #fffbeb;
    border: 2px solid #f59e0b;
    border-radius: 20px;
    padding: 28px 32px;
    margin: 36px 0 28px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}

.lzs-amb-screening-box .lzs-amb-section-header {
    margin: 0 0 22px;
    border-top: none;
    padding-top: 0;
    border-bottom: 2px dashed #fcd34d;
    padding-bottom: 16px;
}

.lzs-amb-screening-box .lzs-amb-section-header h3 {
    color: #d97706;
    font-size: 21px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lzs-amb-screening-box .lzs-amb-section-header p {
    color: #92400e;
    font-weight: 600;
}

.lzs-amb-screening-box .lzs-amb-screening-question {
    color: #78350f;
    font-size: 14.5px;
}

.lzs-amb-screening-box .lzs-amb-screening-item {
    border-bottom: 1px dashed #fde68a;
}

/* Screening Yes/No pill buttons */
.lzs-amb-screening-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lzs-amb-screening-item {
    padding: 14px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.lzs-amb-screening-item:last-child {
    border-bottom: none;
}

.lzs-amb-screening-question {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    display: block;
}

.lzs-amb-yn-wrap {
    display: flex;
    gap: 10px;
}

.lzs-amb-yn-btn {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.lzs-amb-yn-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lzs-amb-yn-btn span {
    display: inline-block;
    padding: 6px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #64748b;
    transition: all 0.2s;
    user-select: none;
}

.lzs-amb-yn-btn input[value="Ya"]:checked+span {
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.lzs-amb-yn-btn input[value="Tidak"]:checked+span {
    background: #64748b;
    border-color: #64748b;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.3);
}

.lzs-amb-masker-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #1e293b;
    margin: 32px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lzs-amb-infaq-desc {
    font-size: 12.5px;
    color: #94a3b8;
    text-transform: uppercase;
    line-height: 1.6;
    margin-bottom: 24px;
}

.lzs-amb-submit-wrap {
    text-align: center;
    margin-top: 36px;
}

.lzs-amb-submit-btn {
    background: linear-gradient(135deg, #f97316 0%, #d97706 100%);
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    border-radius: 99px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lzs-amb-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
}

@media (max-width: 992px) {
    .lzs-layout-with-sidebar {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .lzs-page-container {
        padding: 32px 20px;
    }

    .lzs-main-content,
    .lzs-sidebar {
        padding: 28px 20px;
    }

    .lzs-amb-form-box {
        padding: 28px 20px;
    }

    .lzs-amb-grid {
        grid-template-columns: 1fr;
    }

    .lzs-amb-full {
        grid-column: span 1;
    }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SINGLE POST: CERITA TERKAIT & KOMENTAR
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-related-section {
    margin-top: 48px;
    border-top: 2px dashed #e2e8f0;
    padding-top: 36px;
}

.lzs-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.lzs-related-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.lzs-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #f97316;
}

.lzs-related-thumb-link {
    display: block;
    height: 170px;
    overflow: hidden;
    position: relative;
}

.lzs-related-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lzs-related-card:hover .lzs-related-thumb {
    transform: scale(1.05);
}

.lzs-related-info {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lzs-related-info h4 {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 12px;
}

.lzs-related-info h4 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.lzs-related-info h4 a:hover {
    color: #f97316;
}

.lzs-related-info span {
    font-size: 12.5px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Comments Section */
#comments,
.comments-area {
    margin-top: 48px;
    border-top: 2px dashed #e2e8f0;
    padding-top: 36px;
}

.comments-title,
.comment-reply-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li.comment {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.comment-author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.comment-author b,
.comment-author .fn {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    font-style: normal;
}

.comment-metadata a {
    font-size: 12px;
    color: #64748b;
    text-decoration: none;
}

.comment-content p {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

.comment-reply-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: #f97316;
    background: #fff7ed;
    padding: 4px 14px;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.2s;
}

.comment-reply-link:hover {
    background: #f97316;
    color: #ffffff;
}

.comment-respond {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    margin-top: 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    color: #0f172a;
    font-family: inherit;
    margin-top: 6px;
    transition: border-color 0.2s;
    background: #ffffff;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus,
.comment-form-comment textarea:focus {
    border-color: #f97316;
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-submit input[type="submit"],
.comment-form button[type="submit"] {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 32px;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
    transition: all 0.2s;
}

.form-submit input[type="submit"]:hover,
.comment-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

/* Custom Button Hover Effects */
.lzs-hover-btn-primary {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lzs-hover-btn-primary:hover {
    transform: translateY(-2px) scale(1.015);
    filter: brightness(1.06);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35) !important;
}

.lzs-hover-btn-secondary {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lzs-hover-btn-secondary:hover {
    transform: translateY(-2px);
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}

.lzs-copy-btn {
    transition: all 0.2s ease;
}

.lzs-copy-btn:hover {
    background: #f8fafc !important;
    border-color: #f97316 !important;
    color: #f97316 !important;
}

#btn-baca-selengkapnya,
#btn-baca-selengkapnya-desktop {
    transition: all 0.2s ease;
}

#btn-baca-selengkapnya:hover {
    background: #fff7ed !important;
    color: #ea580c !important;
    transform: translateY(-1px);
}

#btn-baca-selengkapnya-desktop:hover {
    background: #fff7ed !important;
    border-color: #fed7aa !important;
    color: #ea580c !important;
    transform: translateY(-2px);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NEW SPLIT SECTIONS (SEDEKAH & YOUTUBE) & PRE-FOOTER CTA
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lzs-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 56px;
    margin-bottom: 48px;
}

#sedekah-section {
    margin-top: 56px;
    margin-bottom: 48px;
}

.lzs-sedekah-img-box {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.lzs-sedekah-img-box img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lzs-sedekah-img-box:hover img {
    transform: scale(1.03);
}

.lzs-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lzs-split-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--lzs-navy, #0f172a);
    margin: 8px 0 12px;
    line-height: 1.3;
}

.lzs-split-content p {
    font-size: 14px;
    color: var(--lzs-text-muted, #64748b);
    margin: 0 0 20px;
    line-height: 1.6;
}

.lzs-youtube-video-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.lzs-youtube-video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.lzs-prefooter-cta {
    background: var(--lzs-primary, #f97316);
    color: #fff;
    padding: 32px 48px;
    margin: 32px auto 16px;
    border-radius: 24px;
    max-width: var(--lzs-container, 1140px);
    width: calc(100% - 32px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.lzs-prefooter-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.lzs-prefooter-cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.lzs-prefooter-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lzs-prefooter-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.lzs-prefooter-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.5;
}

.lzs-cta-btn {
    background: #fff;
    color: var(--lzs-primary, #f97316);
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.lzs-cta-btn:hover {
    background: #fff7ed;
    color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .lzs-split-section {
        grid-template-columns: 1fr;
        padding: 0 !important;
        gap: 24px;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Khusus Sedekah Subuh di Mobile: Judul & Deskripsi disembunyikan, hanya tombol di kiri pojok bawah gambar */
    #sedekah-section {
        position: relative !important;
        display: block !important;
        margin-top: 40px !important;
        margin-bottom: 36px !important;
    }

    #sedekah-section .lzs-sedekah-img-box {
        position: relative !important;
        width: 100% !important;
        min-height: 230px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }

    #sedekah-section .lzs-sedekah-img-box img {
        width: 100% !important;
        min-height: 230px !important;
        object-fit: cover !important;
        display: block !important;
    }

    #sedekah-section .lzs-split-content {
        position: absolute !important;
        bottom: 16px !important;
        left: 16px !important;
        right: auto !important;
        top: auto !important;
        z-index: 5 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    #sedekah-section .lzs-split-content>div:first-child,
    #sedekah-section .lzs-split-content h3,
    #sedekah-section .lzs-split-content p {
        display: none !important;
    }

    #sedekah-section .lzs-split-content>div:last-child {
        display: block !important;
        margin: 0 !important;
    }

    #sedekah-section .lzs-split-content>div:last-child a {
        padding: 10px 20px !important;
        font-size: 13px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35) !important;
    }

    .lzs-split-content h3 {
        font-size: 22px;
    }

    /* Khusus YouTube di Mobile: Video di atas, judul dan tombol subscribe di bawah, deskripsi disembunyikan */
    #youtube-section {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    #youtube-section .lzs-youtube-video-box {
        order: 1 !important;
        width: 100% !important;
    }

    #youtube-section .lzs-split-content {
        order: 2 !important;
        width: 100% !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
    }

    #youtube-section .lzs-split-content p {
        display: none !important;
    }

    #youtube-section .lzs-split-content h3 {
        font-size: 18px !important;
        margin: 0 0 14px !important;
    }

    #youtube-section .lzs-split-content .lzs-yt-sub-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .lzs-prefooter-cta {
        padding: 24px 20px;
        margin: 24px auto 12px;
        border-radius: 16px;
    }

    .lzs-prefooter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .lzs-prefooter-text h3 {
        font-size: 20px;
    }

    .lzs-prefooter-action {
        width: 100%;
    }

    .lzs-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   KALKULATOR ZAKAT PAGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Nisab Info Bar */
.lzs-zakat-nisab-bar {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #d1fae5;
    padding: 18px 22px;
    margin: -28px 0 28px;
    box-shadow: 0 8px 28px rgba(6, 95, 70, 0.10);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.lzs-zakat-nisab-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 220px;
}

.lzs-zakat-nisab-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lzs-zakat-nisab-prefix {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    flex-shrink: 0;
}

.lzs-zakat-emas-input {
    width: 160px;
    padding: 10px 12px;
    border: 1.5px solid #a7f3d0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
}

.lzs-zakat-emas-input:focus {
    border-color: #065f46;
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1);
}

.lzs-zakat-nisab-info {
    font-size: 13px;
    color: #475569;
    border-left: 1px solid #d1fae5;
    padding-left: 20px;
    flex: 1;
    min-width: 220px;
    line-height: 1.9;
}

.lzs-zakat-nisab-info .lzs-zakat-nisab-note {
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: 2px;
}

/* Tab Navigation */
.lzs-zakat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.lzs-ztab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.lzs-ztab:hover {
    border-color: #065f46;
    color: #065f46;
}

.lzs-ztab.active {
    background: #065f46;
    color: #fff;
    border-color: #065f46;
}

/* Calculator Card */
.lzs-zcalc-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.lzs-zcalc-head {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    font-family: 'Outfit', sans-serif;
}

.lzs-zcalc-head-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.lzs-zcalc-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 22px;
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 3px solid #065f46;
}

.lzs-zcalc-note {
    font-size: 13px;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 16px 0;
    line-height: 1.6;
}

/* Form Grid */
.lzs-zcalc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}

.lzs-zfield {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lzs-zfull {
    grid-column: 1 / -1;
}

.lzs-zfield label {
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.lzs-zinput {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14.5px;
    color: #0f172a;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.lzs-zinput:focus {
    border-color: #065f46;
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.08);
}

/* Radio Group */
.lzs-zradio-group {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.lzs-zradio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
}

.lzs-zradio-label input[type="radio"] {
    accent-color: #065f46;
    width: 16px;
    height: 16px;
}

/* Calc Button */
.lzs-zcalc-btn {
    width: 100%;
    background: linear-gradient(135deg, #065f46, #047857);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(6, 95, 70, 0.22);
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
}

.lzs-zcalc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(6, 95, 70, 0.32);
}

/* Result Box */
.lzs-zresult {
    margin-top: 22px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d1fae5;
}

.lzs-zresult-header {
    background: #f0fdf4;
    padding: 20px 22px;
    border-bottom: 1px solid #d1fae5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.lzs-zresult-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
}

.lzs-zresult-badge.wajib {
    background: #dcfce7;
    color: #15803d;
}

.lzs-zresult-badge.tidak-wajib {
    background: #fef2f2;
    color: #b91c1c;
}

.lzs-zresult-amount {
    font-size: 30px;
    font-weight: 900;
    color: #065f46;
    margin-top: 8px;
    font-family: 'Outfit', sans-serif;
}

.lzs-zresult-amount-label {
    font-size: 12.5px;
    color: #047857;
    margin-top: 2px;
}

.lzs-zresult-pay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #065f46;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(6, 95, 70, 0.25);
    transition: all 0.2s;
}

.lzs-zresult-pay-btn:hover {
    background: #047857;
    color: #fff;
    transform: translateY(-1px);
}

.lzs-zresult-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.lzs-zresult-table td {
    padding: 10px 16px;
    font-size: 13px;
    border-bottom: 1px solid #f1f5f9;
}

.lzs-zresult-table td:first-child {
    color: #64748b;
}

.lzs-zresult-table td:last-child {
    font-weight: 700;
    color: #0f172a;
    text-align: right;
}

.lzs-zresult-table tr:last-child td {
    border-bottom: none;
}

.lzs-zresult-info {
    background: #fffbeb;
    padding: 12px 16px;
    font-size: 12.5px;
    color: #92400e;
    border-top: 1px solid #fde68a;
    line-height: 1.6;
}

/* Reference Grid */
.lzs-zakat-ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.lzs-zakat-ref-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lzs-zakat-ref-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.lzs-zakat-ref-label {
    font-size: 11.5px;
    color: #64748b;
}

.lzs-zakat-ref-val {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 1px;
}

/* CTA Banner */
.lzs-zakat-cta {
    margin-top: 28px;
    background: linear-gradient(135deg, #065f46, #047857);
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
}

.lzs-zakat-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0 0 6px;
}

.lzs-zakat-cta h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 18px;
    font-family: 'Outfit', sans-serif;
}

.lzs-zakat-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #065f46;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: all 0.2s;
}

.lzs-zakat-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    color: #065f46;
}

/* Responsive Kalkulator Zakat */
@media (max-width: 640px) {
    .lzs-zcalc-grid {
        grid-template-columns: 1fr;
    }

    .lzs-zcalc-card {
        padding: 20px 16px;
    }

    .lzs-ztab span {
        display: none;
    }

    .lzs-zakat-nisab-info {
        border-left: none;
        border-top: 1px solid #d1fae5;
        padding-left: 0;
        padding-top: 14px;
    }

    .lzs-zresult-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .lzs-zresult-pay-btn {
        width: 100%;
        justify-content: center;
    }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PROFIL PAGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.lzs-profil-container {
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
}

.lzs-profil-section {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

/* Intro Section */
.lzs-profil-intro {
    position: relative;
    overflow: hidden;
}

.lzs-profil-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lzs-profil-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lzs-profil-intro-icon {
    width: 64px;
    height: 64px;
    background: #fff7ed;
    color: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}

.lzs-profil-intro h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 24px;
}

.lzs-lead-text {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
}

.lzs-profil-legal-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    border-left: 4px solid #065f46;
}

.lzs-legal-icon {
    width: 48px;
    height: 48px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.lzs-legal-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.lzs-legal-text strong {
    color: #0f172a;
}

/* History Grid */
.lzs-profil-history {
    background: #f8fafc;
}

.lzs-history-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: flex-start;
}

.lzs-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 24px;
}

.lzs-history-text p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.lzs-history-quote {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: #065f46;
    line-height: 1.6;
    padding: 24px 0;
    margin: 32px 0;
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
    text-align: center;
}

.lzs-history-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lzs-visual-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

.lzs-visual-card:hover {
    transform: translateX(-5px);
    border-color: #065f46;
}

.lzs-visual-card.lzs-vc-alt {
    background: #065f46;
    color: #fff;
    border-color: #065f46;
}

.lzs-vc-icon {
    width: 42px;
    height: 42px;
    background: #f1f5f9;
    color: #065f46;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.lzs-vc-alt .lzs-vc-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lzs-visual-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #0f172a;
}

.lzs-vc-alt h4 {
    color: #fff;
}

.lzs-visual-card p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.lzs-vc-alt p {
    color: rgba(255, 255, 255, 0.85);
}

/* Pillars Section */
.lzs-sub-badge {
    background: #fff7ed;
    color: #f97316;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.lzs-pillars-header {
    text-align: center;
}

.lzs-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lzs-pillar-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.lzs-pillar-card:hover,
.lzs-pc-active {
    background: #065f46;
    border-color: #065f46;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 95, 70, 0.2);
}

.lzs-pillar-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #cbd5e1;
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.lzs-pillar-card:hover .lzs-pillar-number,
.lzs-pc-active .lzs-pillar-number {
    color: rgba(255, 255, 255, 0.2);
}

.lzs-pillar-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    transition: color 0.3s;
}

.lzs-pillar-card:hover .lzs-pillar-content h4,
.lzs-pc-active .lzs-pillar-content h4 {
    color: #fff;
}

.lzs-pillar-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s;
}

.lzs-pillar-card:hover .lzs-pillar-content p,
.lzs-pc-active .lzs-pillar-content p {
    color: rgba(255, 255, 255, 0.85);
}

.lzs-pillar-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    color: rgba(0, 0, 0, 0.02);
    z-index: -1;
    transform: rotate(-15deg);
    transition: color 0.3s;
}

.lzs-pillar-card:hover .lzs-pillar-bg-icon,
.lzs-pc-active .lzs-pillar-bg-icon {
    color: rgba(255, 255, 255, 0.05);
}

/* Responsive Profil */
@media (max-width: 900px) {
    .lzs-history-grid {
        grid-template-columns: 1fr;
    }

    .lzs-pillars-grid {
        grid-template-columns: 1fr;
    }

    .lzs-profil-section {
        padding: 32px 24px;
    }
}

@media (max-width: 600px) {
    .lzs-profil-legal-box {
        flex-direction: column;
        gap: 16px;
    }

    .lzs-profil-intro h2 {
        font-size: 26px;
    }

    .lzs-lead-text {
        font-size: 16px;
    }
}

/* Mobile Menu Toggle */
.lzs-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--lzs-navy);
    cursor: pointer;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .lzs-mobile-menu-toggle {
        display: block;
    }

    .lzs-nav-right {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        border: 1px solid var(--lzs-border);
        border-top: none;
        align-items: flex-start;
        z-index: 999;
    }

    .lzs-nav-right.active {
        display: flex;
    }

    .lzs-megamenu-container {
        width: 100%;
    }

    .lzs-nav-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 10px;
    }
}



@media (max-width: 768px) {
    .lzs-navbar-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
    }

    .lzs-logo {
        flex-shrink: 0;
    }

    .lzs-logo-img {
        max-height: 35px;
    }

    .lzs-search-wrapper {
        flex: 1;
        margin: 0;
        position: static;
        /* Dropdown should position relative to navbar */
    }

    .lzs-search {
        width: 100%;
    }

    .lzs-search input {
        width: 100%;
        padding-left: 32px;
        font-size: 13px;
    }

    .lzs-search i {
        left: 10px;
        font-size: 13px;
    }

    .lzs-search-dropdown {
        width: 100%;
        left: 0;
        top: 100%;
        border-radius: 0 0 12px 12px;
        border: none;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .lzs-nav-right {
        top: 100%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .lzs-lbl-terkumpul,
    #lzs-wa-zis-fab,
    #lzs-wa-zis-popup {
        display: none !important;
    }

    .lzs-hero-content {
        text-align: center;
        align-items: center;
    }

    .lzs-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .lzs-search-hero-form {
        padding: 4px;
        gap: 6px;
    }

    .lzs-search-hero-form input {
        font-size: 14px;
        padding: 8px 0;
    }

    .lzs-search-hero-form button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .lzs-search-hero-form i {
        margin-left: 12px !important;
    }
}

.lzs-search-hero-form {
    display: flex;
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--lzs-border);
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    align-items: center;
}

.lzs-search-hero-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    color: var(--lzs-text);
    padding: 10px 0;
    min-width: 0;
}

.lzs-search-hero-form button {
    background: var(--lzs-primary);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}