/* ========================================
   Сайдбар: Спецпредложения + Запись
   ======================================== */

.dent-sidebar-promos {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --- Карточка спецпредложения --- */
.dent-promo-card {
    background: linear-gradient(79.1deg, #e6f2ff, #faf1ed 47.82%, #faf1ed);
    border-radius: 16px;
    padding: 32px;
}

.dent-promo-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin: 0 0 12px;
}

.dent-promo-card__desc {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 16px;
}

.dent-promo-card__prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.dent-promo-card__price {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.dent-promo-card__old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

/* --- Карточка записи на консультацию --- */
.dent-contact-card {
    background: linear-gradient(79.1deg, #e6f2ff, #faf1ed 47.82%, #faf1ed);
    border-radius: 16px;
    padding: 32px;
    overflow: hidden;
}

.dent-contact-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin: 0 0 12px;
}

.dent-contact-card__desc {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0px !important;
}

.dent-contact-card__phone {
    font-size: 16px;
    color: #555;
    margin: 0 0 20px;
}

.dent-contact-card__phone a {
    color: #1a7cfa;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 124, 250, 0.3);
    transition: border-color 0.2s;
}

.dent-contact-card__phone a:hover {
    border-color: #04bf68;
    color: #04bf68;
}

.dent-contact-card__form-col {
    max-width: 100%;
}

/* Форма */
.dent-contact-card__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.dent-contact-card__input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.dent-contact-card__input:focus {
    border-color: #1a7cfa !important;
}

.dent-contact-card__btn {
    padding: 14px 24px;
    background: #1a7cfa;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.dent-contact-card__btn:hover {
    background: #04bf68;
}

.dent-contact-card__consent {
    font-size: 13px;
    color: #999;
    line-height: 1.4;
    margin: 0;
}

.dent-contact-card__consent a {
    color: #1a7cfa;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 124, 250, 0.3);
    transition: border-color 0.2s;
}

.dent-contact-card__consent a:hover {
    border-color: #04bf68;
    color: #04bf68;
}

/* =========================
   Адаптив
   ========================= */
@media (max-width: 1024px) {
    .dent-contact-card {
        display: none;
    }

    .dent-promo-card {
        padding: 24px;
    }

    .dent-promo-card__title {
        font-size: 20px;
    }

    .dent-promo-card__price {
        font-size: 24px;
    }
}
