.slider-buttons-container {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
	margin-right: 20px;

    .slider-button {
        background: #e0eeef;
        border: none;
        min-width: 40px;
        min-height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1d915d;
        font-size: 20px;
        transition: background 0.3s;
        flex-shrink: 0;
    }

    .slider-button:hover {
        background: #d0dede;
    }

    .slider-container {
        flex: 1 1 auto;
        max-width: 1140px;
        overflow: hidden;
    }

    .slider-wrapper-outer {
        width: 100%;
    }

    .slider-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .slider-card {
        min-width: 50%;
        box-sizing: border-box;
        padding: 0 10px;
    }

    .slider-card:first-child {
        padding-left: 0;
    }

    .slider-card:last-child {
        padding-right: 0;
    }

    .card-content {
        background-color: #e0eeef;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .card-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .card-text {
        padding: 20px 20px 5px 20px;
        background-color: #e0eeef;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .card-title {
        font-size: 22px!important;
        font-weight: 600!important;
        color: black!important;
        margin-bottom: 0;
    }

    .card-subtitle {
        font-size: 16px;
        color: black!important;
        margin: 0 0 55px 0;
        line-height: 140%;
    }

    .discover-button {
        display: inline-block;
        text-decoration: none;
        background-color: #003478;
        color: white;
        border-radius: 5px;
        padding: 10px 20px;
        cursor: pointer;
        font-size: 16px;
        margin-top: auto;
        align-self: center;
        margin-bottom: 20px;
    }

    .discover-button:hover {
        opacity: 0.9;
        color: white !important;
    }

    @media (max-width: 992px) {
        .slider-card {
            min-width: 50%;
        }
    }

    @media (max-width: 768px) {
        .slider-card {
            min-width: 100%;
        }
        .card-image {
            height: 200px;
        }
    }

    @media (max-width: 480px) {
        .card-image {
            height: 180px;
        }
    }
 }