.testimonial {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: var(--container-max-width);
    box-sizing: border-box;
    margin: 0 auto;
}
.testimonial-item-internal {
    background: #E8E3DD;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.testimonial-content {
    background: #E8E3DD;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px; 
}
.testimonial-image {
    width: 156px;
}
.decoration {
    display: none;
}

@media (min-width: 641px) {
    .testimonial-item-internal {
        flex-direction: row;
    }
    .testimonial-content {
        order: 1;
    }
    .testimonial-picture {
        order: 2;
    }

}
@media (min-width: 1024px) {
    .testimonial {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    .decoration {
        display: block;
        height: 2px;
        border: none; /* Remove default border */
        border-radius: 2px 0 0 2px; /* Rounded left edge */
        background: #DBD9D6;
    }

    .decoration-orange {
        background: linear-gradient(to right, #F47120 25%, #DBD9D6 25%);
    }



    .testimonial-item {
        flex: 1; /* Ensures both testimonial items share space equally */
        display: flex;
        flex-direction: column;
        min-width: 0; /* Prevents content overflow */
    }

    .testimonial-item-internal {
        flex-grow: 1; /* Ensures equal height */
        display: flex;
        flex-direction: row;
        justify-content: space-between; /* Balances content spacing */
    }
}
