/* === КОД1. Общий блок (скругление + отступы только на десктопе) === */
@media screen and (min-width: 980px) {
    .uc-bloks-round {
        margin-left: 30px;
        margin-right: 30px;
        border-radius: 30px;
        overflow: hidden;
    }
}

/* === На мобилке убираем отступы === */
@media screen and (max-width: 979px) {
    .uc-bloks-round {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
}

/* === КОД2. Карточки блока доходов === */
.uc-split-card .t1050__col .t-heading {
    background-color: #fff0da;
    padding: 16px 20px;
    border-radius: 30px 30px 0 0;
    margin-bottom: 0;
    box-sizing: border-box;
}

.uc-split-card .t1050__col .t-descr {
    background-color: #343134;
    border-radius: 0 0 30px 30px;
    padding: 20px 20px 24px;
    margin-top: 0;
    box-sizing: border-box;
}

.uc-split-card .t1050__col {
    overflow: hidden;
}

/* === КОД3. Для кого этот курс? === */
.uc-shadow .t-container {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 30px;
    box-sizing: border-box;
}

@media screen and (max-width: 640px) {
    .uc-shadow .t-container {
        padding: 20px;
        border-radius: 20px;
    }

    .uc-shadow {
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
}

/* === КОД4. Облако тегов === */
.uc-cloud_meta ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    padding: 0;
    max-width: 1160px;
}

.uc-cloud_meta ul > li {
    list-style: none;
    margin: 0 !important;
    padding: 10px 18px;
    border-radius: 999px;
    background: #F3ECE7;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    max-width: 100%;
}

.uc-cloud_meta ul > li:before {
    content: none !important;
    display: none !important;
}

.uc-cloud_meta ul > li a {
    color: inherit;
    text-decoration: none;
}

.uc-cloud_meta .cloud-wrapper {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.uc-cloud_meta .cloud-toggle {
    display: block;
    width: fit-content;
    margin: 16px auto 0;
    cursor: pointer;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 30px;
    background: #F3ECE7;
}

@media (max-width: 640px) {
    .uc-cloud_meta ul {
        gap: 8px;
        padding: 0 10px;
    }

    .uc-cloud_meta ul > li {
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* === КОД5. Карточки тарифов: одинаковая высота, тень, hover, внутренние отступы === */
#rec2168676871 .t776__col {
    display: flex;
}

#rec2168676871 .t776__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#rec2168676871 .t776__content > a {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    color: inherit;
    text-decoration: none;
}

#rec2168676871 .t776__textwrapper {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 20px 25px 25px;
}

#rec2168676871 .t776__imgwrapper {
    margin-bottom: 15px;
}

#rec2168676871 .t776__btn-wrapper {
    margin-top: auto;
    padding: 0 25px 25px;
}

#rec2168676871 .t776__btn-wrapper .t776__btn {
    margin-top: 20px;
}

@media (hover: hover) {
    #rec2168676871 .t776__content:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    }
}

/* === КОД6. Скрытие кнопки === */
#rec2173903031 .t-form__submit {
    display: none !important;
}