

/* Start:/dispanserizatsiya/style.css?17742692502134*/
.screening-cards {
    --screening-cards-gap: 22px;
    --screening-cards-card-bg: #eef1f5;
    --screening-cards-badge-bg: #1f2d5f;
    --screening-cards-title-color: #ef3e33;
    margin: 28px 0 36px;
}

.screening-cards__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: var(--screening-cards-gap);
}

.screening-cards__item {
    min-height: 166px;
    padding: 20px 20px 28px;
    background: var(--screening-cards-card-bg);
    border-radius: 22px;
    box-shadow: 0 6px 16px rgba(31, 45, 95, 0.18);
}

.screening-cards__item--single {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - (var(--screening-cards-gap) / 2));
}

.screening-cards__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.screening-cards__badge {
    flex: 0 0 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--screening-cards-badge-bg);
    color: #fff;
    font-size: 42px;
    line-height: 1;
    font-weight: 500;
}

.screening-cards__title {
    margin: 0;
    color: var(--screening-cards-title-color);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.screening-cards__text {
    margin: 0;
    color: #11213f;
    font-size: 18px;
    line-height: 1.45;
}

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

    .screening-cards__item,
    .screening-cards__item--single {
        width: 100%;
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .screening-cards {
        --screening-cards-gap: 16px;
        margin: 24px 0 28px;
    }

    .screening-cards__item {
        padding: 18px 16px 22px;
        border-radius: 18px;
    }

    .screening-cards__header {
        gap: 14px;
        margin-bottom: 14px;
    }

    .screening-cards__badge {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        font-size: 34px;
    }

    .screening-cards__title,
    .screening-cards__text {
        font-size: 16px;
    }
}

/* End */
/* /dispanserizatsiya/style.css?17742692502134 */
