.adb-container-e9acb4ed {
    display: grid;
    grid-template-columns: var(--sidebar-width, 280px) 1fr;
    gap: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    color: #333;
}

/* Sizing and Alignment of real-time search */
.adb-search-wrap-e9acb4ed {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.adb-search-input-e9acb4ed {
    width: 100%;
    padding: 14px 20px 14px 45px;
    font-size: 15px;
    border: 1px solid rgba(122, 122, 122, 0.2);
    border-radius: 4px;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: border-color 0.25s ease;
}

.adb-search-input-e9acb4ed:focus {
    border-color: #02806A;
}

.adb-search-icon-e9acb4ed {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #888;
}

/* Sidebar Filters */
.adb-sidebar-e9acb4ed {
    display: grid;
    gap: 10px;
    align-content: start;
}

.adb-sidebar-e9acb4ed.adb-cols-1 {
    grid-template-columns: 1fr;
}

.adb-sidebar-e9acb4ed.adb-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.adb-drawer-header-e9acb4ed {
    display: none;
}

.adb-filter-btn-e9acb4ed {
    width: 100%;
    border: none;
    padding: 12px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.adb-filter-btn-e9acb4ed:hover {
    background-color: #8DBF41 !important; /* L Green */
    color: #ffffff !important;
}

/* Multi-select styling */
.adb-multi-hint-e9acb4ed {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
}

/* Mobile Dropdown fallback */
.adb-mobile-filter-container-e9acb4ed {
    display: none;
    margin-bottom: 20px;
}

.adb-filter-select-e9acb4ed {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(122, 122, 122, 0.2);
    border-radius: 4px;
    text-transform: uppercase;
    color: #333333;
    outline: none;
}

.adb-burger-trigger-e9acb4ed {
    display: none;
}

/* No Categories Mode */
.adb-container-e9acb4ed.no-categories-e9acb4ed {
    grid-template-columns: 1fr !important;
}

.adb-container-e9acb4ed.no-categories-e9acb4ed .adb-sidebar-e9acb4ed {
    display: none !important;
}

/* Articles Content Grid */
.adb-content-e9acb4ed {
    width: 100%;
}

.adb-grid-e9acb4ed {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 2), 1fr);
    gap: 30px;
}

/* Article Card */
.adb-card-e9acb4ed {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
    border: 1px solid rgba(122, 122, 122, 0.1);
    position: relative;
}

.adb-card-e9acb4ed:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(2, 128, 106, 0.1);
}

/* Pinned featured styling overrides */
.adb-card-pinned-e9acb4ed {
    box-shadow: 0 6px 20px rgba(2, 128, 106, 0.12);
}

.adb-card-pinned-badge-e9acb4ed {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.adb-card-image-wrap-e9acb4ed {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    background: #f0f0f0;
}

.adb-card-img-e9acb4ed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.adb-card-e9acb4ed:hover .adb-card-img-e9acb4ed {
    transform: scale(1.05);
}

.adb-card-overlay-e9acb4ed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 128, 106, 0.88) 0%, rgba(20, 20, 20, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.adb-card-overlay-title-e9acb4ed {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.adb-card-e9acb4ed:hover .adb-card-overlay-e9acb4ed {
    opacity: 1;
}



.adb-card-info-e9acb4ed {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.adb-card-author-e9acb4ed {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.adb-card-title-e9acb4ed {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.adb-card-title-e9acb4ed a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.adb-card-excerpt-e9acb4ed {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.adb-card-readmore-e9acb4ed {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
    margin-top: auto;
}

/* Loading Spinner */
.adb-loading-spinner-e9acb4ed {
    text-align: center;
    padding: 30px 0;
    width: 100%;
}

.adb-spinner-e9acb4ed {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0,0,0,.1);
    border-radius: 50%;
    border-top-color: #02806A;
    animation: adb-spin-e9acb4ed 0.8s ease-in-out infinite;
}

@keyframes adb-spin-e9acb4ed {
    to { transform: rotate(360deg); }
}

/* RESPONSIVE / TABLET & MOBILE */
@media (max-width: 991px) {
    .adb-container-e9acb4ed {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .mobile-buttons-e9acb4ed .adb-sidebar-e9acb4ed {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
        display: grid !important;
    }

    .mobile-dropdown-e9acb4ed .adb-sidebar-e9acb4ed {
        display: none !important;
    }
    .mobile-dropdown-e9acb4ed .adb-mobile-filter-container-e9acb4ed {
        display: block !important;
    }

    /* BURGER filter drawer mechanism */
    .mobile-burger-e9acb4ed .adb-burger-trigger-e9acb4ed {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 18px;
        border: none;
        border-radius: 4px;
        font-weight: 700;
        cursor: pointer;
        font-size: 13px;
        letter-spacing: 0.5px;
        transition: all 0.2s ease;
    }

    .mobile-burger-e9acb4ed .adb-sidebar-e9acb4ed {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        z-index: 99999;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        padding: 30px 20px;
        transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        gap: 12px;
        overflow-y: auto;
    }

    .mobile-burger-e9acb4ed .adb-sidebar-e9acb4ed.adb-drawer-open-e9acb4ed {
        right: 0 !important;
    }

    .mobile-burger-e9acb4ed .adb-drawer-header-e9acb4ed {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(122, 122, 122, 0.2);
        padding-bottom: 15px;
        margin-bottom: 10px;
    }

    .mobile-burger-e9acb4ed .adb-drawer-header-e9acb4ed h3 {
        margin: 0;
        font-size: 16px;
        color: #02806A;
    }

    .mobile-burger-e9acb4ed .adb-drawer-close-e9acb4ed {
        background: none;
        border: none;
        font-size: 26px;
        cursor: pointer;
        line-height: 1;
        color: #333;
    }

    .mobile-burger-e9acb4ed .adb-burger-overlay-e9acb4ed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 99998;
        display: none;
    }

    .mobile-burger-e9acb4ed .adb-burger-overlay-e9acb4ed.adb-overlay-open-e9acb4ed {
        display: block !important;
    }
}

@media (max-width: 600px) {
    .adb-grid-e9acb4ed {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}
