    /* ===== Блок "Совет врача" ===== */
    .doctor-advice-block {
        max-width: 900px;
        width: 100%;
        background: hsl(var(--secondary-h), 40%, 92%);
        border-radius: 15px;
        padding: 40px 50px;
        position: relative;
        overflow: hidden;
        box-shadow: 0px 0px 10px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.2);
        transition: 0.5s;
        border-left: 5px solid var(--brand-secondary);
    }


    .doctor-advice-block:hover {
        box-shadow: 0px 0px 40px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.3);
    }


    .advice-header {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
    }


    .advice-icon {
        width: 50px;
        height: 50px;
        background: var(--brand-secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
        box-shadow: 0px 0px 10px hsla(var(--secondary-h), var(--secondary-s), var(--secondary-l), 0.3);
    }


    .advice-icon svg {
        width: 28px;
        height: 28px;
        fill: white;
    }


    .advice-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gray-0);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0;
    }


    .advice-title span {
        color: var(--gray-0);
    }


    .advice-content {
        position: relative;
        z-index: 1;
        margin-bottom: 30px;
        padding-left: 20px;
        border-left: 3px solid var(--brand-secondary);
    }


    .advice-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--gray-2);
        font-style: italic;
        margin: 0;
    }


    /* Плашка врача — стиль как у карточек врачей на сайте (card-custom-bg) */
    .doctor-info {
        display: flex;
        align-items: center;
        gap: 20px;
        position: relative;
        z-index: 1;
        padding: .5rem;
        background-color: var(--gray-9);
        border-radius: .5rem;
        border: none;
    }


    .doctor-photo {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid var(--brand-secondary);
        box-shadow: 0px 0px 10px hsla(var(--secondary-h), var(--secondary-s), var(--secondary-l), 0.3);
        flex-shrink: 0;
    }


    .doctor-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .doctor-details {
        flex: 1;
    }


    .doctor-name {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--gray-2);
        margin: 0 0 5px 0;
    }


    .doctor-position {
        font-size: 1rem;
        color: var(--brand-secondary);
        font-weight: 600;
        margin: 0;
    }


    /* Адаптивность */
    @media (max-width: 768px) {
        .doctor-advice-block {
            padding: 30px 25px;
        }


        .advice-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }


        .advice-icon {
            width: 40px;
            height: 40px;
        }


        .advice-icon svg {
            width: 22px;
            height: 22px;
        }


        .advice-title {
            font-size: 1.2rem;
        }


        .advice-text {
            font-size: 1rem;
        }


        .doctor-info {
            flex-direction: column;
            text-align: center;
        }


        .doctor-photo {
            width: 80px;
            height: 80px;
        }
    }


    @media (max-width: 480px) {
        .doctor-advice-block {
            padding: 25px 20px;
        }


        .advice-title {
            font-size: 1rem;
        }


        .doctor-name {
            font-size: 1rem;
        }


        .doctor-position {
            font-size: 0.9rem;
        }
    }
