:root{
    --ebaw-blue:#1d6df7;
    --ebaw-grey:#f1f3f5;
    --ebaw-text:#1a1a1a;
}

.ebaw-wrapper{
    font-family:Inter,Helvetica,Arial,sans-serif;
}

/* Top bar */
.ebaw-top-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    margin-bottom:1rem;
}
.ebaw-search{
    flex:1 1 auto;
    max-width:60%;
    padding:0.6rem 0.9rem;
    border:1px solid var(--ebaw-grey);
    border-radius:6px;
}
.ebaw-category-select label{
    margin-right:0.5rem;
    font-weight:500;
}
.ebaw-select{
    padding:0.6rem 2.2rem 0.6rem 0.9rem;
    border:1px solid var(--ebaw-grey);
    border-radius:6px;
    background:#fff;
}

/* Category pills */
.ebaw-category-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:0.5rem;
    margin-bottom:1.5rem;
}
.ebaw-cat-button{
    background:var(--ebaw-grey);
    color:var(--ebaw-text);
    border:none;
    padding:0.35rem 1rem;
    border-radius:9999px;
    font-size:0.85rem;
    cursor:pointer;
    transition:all 0.2s ease;
}
.ebaw-cat-button.active,
.ebaw-cat-button:hover{
    background:var(--ebaw-blue);
    color:#fff;
}

/* Grid */
.ebaw-post-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:1.5rem;
}
.ebaw-post-card{
    background:#fff;
    border:1px solid var(--ebaw-grey);
    border-radius:8px;
    padding:1rem;
    display:flex;
    flex-direction:column;
    height:100%;
}
.ebaw-thumb img{
    width:100%;
    height:auto;
    border-radius:6px;
    margin-bottom:0.75rem;
}
.ebaw-post-title{
    font-size:1.125rem;
    margin:0 0 0.4rem 0;
    line-height:1.3;
}
.ebaw-meta{
    font-size:0.75rem;
    color:#6c757d;
    margin-bottom:0.5rem;
}
.ebaw-excerpt{
    flex-grow:1;
}
.ebaw-read-more {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    background: var(--ebaw-blue);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}


/* Buttons */
.ebaw-load-more,
.ebaw-clear-filters {
    display: inline-block;
    margin: 2rem auto 0;
    background: var(--ebaw-blue);
    color: #fff;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 6px;
    cursor: pointer;
}



/* No results */
.ebaw-no-results{
    text-align:center;
    padding:3rem 0;
    color:#6c757d;
}
.ebaw-no-results h2{
    margin:1rem 0 0.4rem;
    font-size:1.3rem;
    color:var(--ebaw-text);
}
.ebaw-icon{
    stroke:#6c757d;
}


/* Wrapper to center the Load More button */
.ebaw-load-more-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
}

