    .indra-product-image-sliders {
        display: flex;
        gap: 24px;
        justify-content: center;
    }

    .indra-product-image-sliders.contained {
        max-width: 1120px;
        margin: 0 auto;
        padding: 24px;
        box-sizing: border-box;
    }

    .indra-product-image-sliders__item {
        background-color: white;
        padding: 3rem;
        border-radius: 10px;
        width: 100%;
        max-width: 620px;
    }

    .indra-product-image-sliders__excerpt {
        min-height: 90px;
    }


    .indra-product-image-sliders__title {
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .indra-product-image-sliders__button-wrapper {
        text-align: center;
        margin-top: 1rem;
    }

    .indra-product-image-sliders__button {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background-color: rgb(23, 220, 242);
        color: rgb(8, 52, 84);
        text-decoration: none;
        border-radius: 30px;
        font-size: 1.2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-2rem)
    }

    @media (max-width: 600px) {
        .indra-product-image-sliders.contained {
            width: 100%;
            padding: 0;
            max-width: none;
        }

        .indra-product-image-sliders {
            flex-direction: column;
            gap: 16px;
        }

        .indra-product-image-sliders.contained .indra-product-image-sliders__item {
            padding: 0;
            border-radius: 0;
            max-width: none;
        }

        .indra-product-image-sliders.contained .indra-product-image-sliders__title,
        .indra-product-image-sliders.contained .indra-product-image-sliders__excerpt,
        .indra-product-image-sliders.contained .indra-product-image-sliders__button-wrapper {
            padding-left: 16px;
            padding-right: 16px;
        }

        .indra-product-image-sliders__title {
            font-size: 24px;
            margin-bottom: 1rem;
        }
    }