.fcg-container-e2e1cfff {
    width: 100%;
    font-family: inherit;
    box-sizing: border-box;
}

/* Filter Bar styles */
.fcg-filter-bar-e2e1cfff {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.fcg-filter-btn-e2e1cfff {
    border: none;
    outline: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Cards Grid Layout */
.fcg-grid-e2e1cfff {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .fcg-grid-e2e1cfff {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .fcg-grid-e2e1cfff {
        grid-template-columns: 1fr;
    }
}

/* Card layout & animation */
.fcg-card-e2e1cfff {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
}

.fcg-card-e2e1cfff.fcg-hide-e2e1cfff {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

.fcg-card-img-wrapper-e2e1cfff {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fcg-card-img-wrapper-e2e1cfff img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fcg-card-body-e2e1cfff {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fcg-card-title-e2e1cfff {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
}

.fcg-card-desc-e2e1cfff {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Card Button styles */
.fcg-card-btn-e2e1cfff {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: filter 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.fcg-card-btn-e2e1cfff:hover {
    filter: brightness(0.9);
}
