/* Endorsement Grid Styles */
#et-boc #et_builder_outer_content #content .endorsement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 80px;
    margin: 30px 0;
}

#et-boc #et_builder_outer_content #content .endorsement-item {
    display: flex;
    flex-direction: column;
}

#et-boc #et_builder_outer_content #content .endorsement-content {
    margin-bottom: 20px;
    background: radial-gradient(89.6% 86.31% at 24.05% 21.77%, #E3EEF6 0%, #FFFFFF 61%, #CDE3F3 94.11%);
    padding: 30px;
    padding-bottom: 60px;
    border-radius:40px;
    box-shadow: 1px 7px 19.5px 0px #ACBFCDCC;
    color: #30315A;
    font-weight: 500;
}

#et-boc #et_builder_outer_content #content .endorsement-footer {
    text-align: center;
    margin-top: -3rem;
}

#et-boc #et_builder_outer_content #content .endorsement-image {
    margin-bottom: 10px;
}

#et-boc #et_builder_outer_content #content .endorsement-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

#et-boc #et_builder_outer_content #content .endorsement-name {
    margin: 10px 0 0px;
    position: relative;
    padding-bottom: 0px;
    color: #30315A;
    font-weight: 900;

}

#et-boc #et_builder_outer_content #content .endorsement-title {
    color: #464782 !important;
    font-weight: 900;
    max-width: 450px;
    margin: 0 auto;
}

#et-boc #et_builder_outer_content #content .endorsement-pagination {
    text-align: center;
    margin-top: 20px;
}

#et-boc #et_builder_outer_content #content .endorsement-pagination .page-numbers {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}

#et-boc #et_builder_outer_content #content .endorsement-pagination .page-numbers.current {
    background-color: #333;
    color: #fff;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    #et-boc #et_builder_outer_content #content .endorsement-grid {
        grid-template-columns: 1fr;
    }
}