.bfa-review-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.bfa-single-review {
    flex: 0 0 calc(33.333% - 1.4rem); /* Force 3 per row */
    max-width: calc(33.333% - 1.33rem);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    min-height: 100%; /* Equal height for all */
    padding: 2%;
}

.bfa-review-top-img img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 550px;
    margin: 0 auto;
}

.bfa-review-body {
    padding: 1.5rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.bfa-review-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    max-width: 550px;
    text-align: left;
    font-size: 18px;
    line-height: 18px;
}

.bfa-review-content {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    max-width: 550px;
    margin: 0 auto;
}

.bfa-review-content p {
    line-height: 21px !important;
    font-style: italic;
    text-align: left;
}



.bfa-review-bottom-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    box-sizing: border-box;
}

.bfa-review-bottom-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


@media (max-width: 979px) {
    .bfa-single-review {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
