

/* Start:/local/templates/main/components/bitrix/news/system-uai/bitrix/news.detail/.default/style.css?17871119887981*/
    /* ===== ОБЩИЕ СТИЛИ БЛОКА ===== */
    .advantages-section {
        padding: 60px 20px 70px;
        background: rgba(48, 40, 97, 0.04); /* 4% прозрачности фиолетового */
        font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    }

    .advantages-section .section-title {
        text-align: center;
        margin-bottom: 12px;
        font-size: clamp(18px,5vw, 32px);
    }

    .advantages-section .section-subtitle {
        text-align: center;
        font-size: 17px;
        margin-bottom: 45px;
        font-weight: 400;
    }

    /* ===== СЕТКА — 3 КОЛОНКИ ===== */
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        align-items: stretch;
        margin-bottom: 45px;
    }

    /* ===== КАРТОЧКА ===== */
    .advantage-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px 26px 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.35s ease;
        border: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-direction: column;
        height: 100%;
        cursor: default;
        position: relative;
        overflow: hidden;
    }

    .advantage-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary, #ef7f1b);
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: center;
    }

    .advantage-card:hover::before {
        transform: scaleX(1);
    }

    .advantage-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
        border-color: rgba(239, 127, 27, 0.3);
    }

    /* ===== ИКОНКА ===== */
    .advantage-card .icon-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 30px;
        color: var(--secondary, #302861);
        background: rgba(48, 40, 97, 0.08);
        border-radius: 14px;
        margin-bottom: 18px;
        transition: all 0.35s ease;
    }

    .advantage-card:hover .icon-wrapper {
        background: var(--primary, #ef7f1b);
        color: #ffffff;
        transform: scale(1.05) rotate(-2deg);
    }

    /* ===== ЗАГОЛОВОК ===== */
    .advantage-card h3 {
        font-size: 19px;
        font-weight: 700;
        color: var(--secondary, #302861);
        margin: 0 0 12px 0;
        line-height: 1.3;
    }

    /* ===== ТЕКСТ ===== */
    .advantage-card .card-content {
        font-size: 14px;
        line-height: 1.7;
        color: #4a5a6e;
        flex: 1;
    }

    .advantage-card .card-content p {
        margin: 0 0 10px 0;
    }

    .advantage-card .card-content p:last-child {
        margin-bottom: 0;
    }

    .advantage-card .card-content ul {
        margin: 8px 0 0 0;
        padding-left: 0;
        list-style: none;
    }

    .advantage-card .card-content ul li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
        font-size: 13.5px;
        line-height: 1.55;
        color: #4a5a6e;
    }

    .advantage-card .card-content ul li::before {
        content: '▸';
        position: absolute;
        left: 0;
        color: var(--primary, #ef7f1b);
        font-weight: 700;
    }

    .advantage-card .card-content b {
        color: var(--secondary, #302861);
        font-weight: 600;
    }

    /* ===== СПЕЦИАЛЬНЫЙ СТИЛЬ ДЛЯ ХАРАКТЕРИСТИК ===== */
    .advantage-card .spec-item {
        background: rgba(48, 40, 97, 0.05);
        border-radius: 8px;
        padding: 10px 14px;
        margin-bottom: 10px;
        font-size: 13.5px;
        line-height: 1.5;
        border-left: 3px solid var(--primary, #ef7f1b);
    }

    .advantage-card .spec-item:last-child {
        margin-bottom: 0;
    }

    .advantage-card .spec-item b {
        color: var(--secondary, #302861);
        display: block;
        margin-bottom: 2px;
    }

    .advantage-card .protocols {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
    }

    .advantage-card .protocols span {
        background: rgba(239, 127, 27, 0.08);
        color: var(--primary, #ef7f1b);
        font-weight: 600;
        font-size: 12px;
        padding: 3px 14px;
        border-radius: 20px;
        border: 1px solid rgba(239, 127, 27, 0.12);
    }

    /* ===== БЛОК С КНОПКАМИ ===== */
    .advantages-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .advantages-actions .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 36px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.35s ease;
        cursor: pointer;
        border: none;
        font-family: inherit;
        line-height: 1.2;
    }

    .advantages-actions .btn i {
        font-size: 18px;
    }

    /* ===== ОБЕ КНОПКИ — SECONDARY (ПО УМОЛЧАНИЮ) ===== */
    .advantages-actions .btn {
        background: var(--secondary, #302861);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(48, 40, 97, 0.3);
    }

    /* ===== ОБЕ КНОПКИ — PRIMARY (ПРИ НАВЕДЕНИИ) ===== */
    .advantages-actions .btn:hover {
        background: var(--primary, #ef7f1b);
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(239, 127, 27, 0.35);
    }

    /* ===== АДАПТИВНОСТЬ ===== */
    @media (max-width: 992px) {
        .advantages-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .advantages-section {
            padding: 40px 0 50px;
        }
        .advantages-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 35px;
        }
        .advantage-card {
            padding: 22px 18px 20px;
        }
        .advantage-card .icon-wrapper {
            width: 52px;
            height: 52px;
            min-width: 52px;
            font-size: 24px;
            border-radius: 12px;
        }
        .advantage-card h3 {
            font-size: 16px;
        }
        .advantage-card .card-content {
            font-size: 13px;
        }
        .advantage-card .card-content ul li {
            font-size: 12.5px;
        }

        .advantages-actions {
            flex-direction: column;
            gap: 14px;
        }

        .advantages-actions .btn {
            width: 100%;
            max-width: 320px;
            justify-content: center;
            padding: 13px 28px;
            font-size: 15px;
        }
    }

    @media (max-width: 650px) {
        .advantages-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .advantage-card {
            max-width: 480px;
            margin: 0 auto;
            width: 100%;
            padding: 24px 20px 22px;
        }
        .advantage-card .icon-wrapper {
            width: 56px;
            height: 56px;
            min-width: 56px;
            font-size: 26px;
        }
        .advantage-card h3 {
            font-size: 17px;
        }
        .advantage-card .card-content {
            font-size: 14px;
        }
        .advantage-card .card-content ul li {
            font-size: 13.5px;
        }

        .advantages-actions .btn {
            max-width: 100%;
        }
    }

    @media (max-width: 400px) {
        .advantage-card {
            max-width: 100%;
            padding: 20px 16px 18px;
        }
    }
/* End */
/* /local/templates/main/components/bitrix/news/system-uai/bitrix/news.detail/.default/style.css?17871119887981 */
