.testimonial-single{
    padding: 1.5rem 2rem;
    border-radius: var(--standard-border-radius);
    background-color: #F4F4F5;
}
.testimonial-single .testimonial-title{
    margin-top: 0;
    margin-bottom: 0;
}
.testimonial-single .header-testimonial{
    display: flex;
    align-items: center;
    margin-bottom: 0.625rem;
}
.testimonial-single .testimonial-icon{
    display: flex;
    align-items: center;
    margin-left: 0.625rem;
}
.testimonial-single .testimonial-description p{
    margin-top: 0;
    margin-bottom: 0;
}
.inner-tab-panel {
    display: grid;
    grid-template-columns: minmax(0, 522px) 51.6%;
    gap: 32px;
}
.inner-tab-panel > .column:nth-child(1){
    padding-bottom: 1.5rem;
}
.tab-panel .tab-image{
    width: 100vw;
    max-width: 900px;
    max-height: 560px;
    overflow: hidden;
}
.tab-panel .tab-image img{
    object-fit: cover;
}

@media (max-width: 919px) {
    .inner-tab-panel{
        grid-template-columns: repeat(1, minmax(auto, 1fr));
        padding: 0;
    }
    .inner-tab-panel > .column:nth-child(1){
        padding: 1rem;
    }
    .tab-panel {
        background-color: var(--wp--preset--color--white);
        border-radius: 10px;
        box-shadow: 0 0 10px 0 rgba(52, 64, 84, 0.10);
        margin-bottom: 0.75rem;
    }
    .tab-panel .tab-image img{
        max-width: 100%;
        display: block;
    }
    .tab-panel .wp-block-buttons .wp-block-button{
        display: block;
        width: 100%;
    }
    .tab-panel .tab-image{
        width: calc(100vw - 2rem);
        padding: 16px;
    }
}