.emergency-cards{.wrapper {
        display: flex;
        flex-direction: column;
        gap: clamp(24px,2.223vw,32px);
    }

    .emergency-cards__title {
        font-size: clamp(24px,2.223vw,32px);
        max-width: 850px;
        letter-spacing: 0.04em;
    }
    .emergency-cards__list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;

        @media (max-width: 991px) {
            grid-template-columns: 1fr 1fr;
        }

        @media (max-width: 767px) {
            grid-template-columns: 1fr;
        }
    }

    .emergency-cards__item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        border-radius: 8px;
        background-color: #fff;
        overflow: hidden;

        @media (min-width: 768px) {
            min-height: clamp(200px,15.556vw,224px);
        }
        & h3 {
            font-size: clamp(18px,1.528vw,22px);
        }

        @media  (min-width: 767px) and  (max-width: 991px) {
            &:nth-child(1) {
                order: 1;
            }
            &:nth-child(2) {
                order: 2;
            }
            &:nth-child(3) {
                order: 4;
            }
            &:nth-child(4) {
                order: 3;
            }
            &:nth-child(5) {
                order: 5;
            }
            &:nth-child(6) {
                order: 6;
            }
        }
    }

    .emergency-cards__item--rating_card,
    .emergency-cards__item--text {
        padding: clamp(16px,2.223vw,32px);
    }

    .rating-card__title {
        display: flex;
        gap: 4px;
        align-items: center;
        font-size: clamp(28px,3.334vw,48px);
        font-weight: 600;
    }

    .emergency-cards__item--text {
        background: #BADDF1;
    }

    .emergency-cards__item--image {
        position: relative;
        padding-top: clamp(180px,14.95vw,215px);

        @media (max-width: 767px) {
            aspect-ratio: 5/3;
        }

        & img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}