﻿.container_SuccessStories {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 50px auto;
    padding: 20px;
    gap: 20px;
    max-width: 100%;
    flex-wrap: wrap;
}
.container_SuccessStories img {
    width: 280px;
    height: 200px;
    object-fit: cover;
}
.content {
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: calc(100% - 300px); /* Adjust based on the image width and gap */
}
    .content .container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    @media (max-width: 768px) {
        .container_SuccessStories {
        flex-direction: column;
        align-items: center;
    }

    .container_SuccessStories img {
        width: 100%;
        height: auto;
    }

    .content {
        max-width: 100%;
        width: 100%;
    }
}
