.cards {
    margin: 100px auto;
}

.cards__container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.cards__container .swiper-wrapper {
    align-items: stretch;
}

.cards__container .swiper-slide {
    height: auto;
}

.cards__pagination {
    position: relative;
    margin-top: 24px;
}

.cards__item {
    height: 110px;
    min-width: 180px;
    padding: 16px 19px;
    background-color: #E2E8E2;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cards__item span {
    color: #0A360A;
font-family: "e-Ukraine", sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 52.036px; 
letter-spacing: -0.4px;
text-transform: lowercase;
}

.cards__item p {
    color: rgba(18, 18, 18, 0.90);
font-family: "Inter", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 18px;
letter-spacing: -0.14px;
text-transform: lowercase;
}

@media (min-width: 769px) {
    .cards__container {
        overflow: visible;
        max-width: 900px;
    }

    .cards__container .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }

    .cards__container .swiper-slide {
        width: auto !important;
    }

    .cards__pagination {
        display: none;
    }
}

@media (max-width: 768px) {
    .cards {
        margin-bottom: 60px;
    }
}