.efg-wrapper-a9d1ae61 {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Filter Bar Top Row */
.efg-filter-topbar-a9d1ae61 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.efg-categories-a9d1ae61 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.efg-cat-btn-a9d1ae61 {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.efg-cat-btn-a9d1ae61.efg-active-a9d1ae61,
.efg-cat-btn-a9d1ae61:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.efg-dropdown-a9d1ae61 {
    min-width: 250px;
}

.efg-post-select-a9d1ae61 {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    line-height: 1.5;
    min-height: 42px;
}

/* Grid layout */
.efg-grid-container-a9d1ae61 {
    transition: opacity 0.3s ease;
}

.efg-grid-container-a9d1ae61.efg-loading-a9d1ae61 {
    opacity: 0.5;
    pointer-events: none;
}

.efg-grid-a9d1ae61 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.efg-card-a9d1ae61 {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.efg-card-image-a9d1ae61 {
    width: 100%;
    padding-top: 100%; /* Square aspect ratio placeholder to match design */
    background-color: #e6e4e1;
    position: relative;
    flex-shrink: 0;
}
.efg-card-image-a9d1ae61 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.efg-card-content-a9d1ae61 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
    padding: 24px;
}

.efg-card-title-a9d1ae61 {
    margin: 0;
    font-family: "Georgia", serif; 
    font-size: 22px;
    color: #000;
}

.efg-card-excerpt-a9d1ae61 {
    flex-grow: 1;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.efg-card-button-a9d1ae61 {
    display: block;
    width: 100%;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.efg-card-button-a9d1ae61:hover {
    background: #000;
    color: #fff;
}

.efg-no-results-a9d1ae61 {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
}

@media (max-width: 1024px) {
    .efg-grid-a9d1ae61 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .efg-grid-a9d1ae61 {
        grid-template-columns: 1fr !important;
    }
    .efg-filter-topbar-a9d1ae61 {
        flex-direction: column;
        align-items: stretch;
    }
    .efg-dropdown-a9d1ae61 {
        width: 100%;
    }
}