/* ============================================
   articles2.css — блок-сноска вариант 2 (современный)
   Двери Оптима | /drafts/articles2.css
   ============================================ */

.callout-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: 1px solid rgba(226, 82, 90, 0.4);
    border-radius: 6px;
    padding: 20px 24px;
    margin: 24px 0;
    font-family: Open_Sans_mw, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2e2725;
    width: 100%;
    box-sizing: border-box;
}

.callout-v2::before {
    display: none;
}

.callout-v2__icon {
    display: none;
}

.callout-v2:hover {
    border-color: rgba(226, 82, 90, 0.6);
}

.callout-v2__icon {
    width: 36px;
    height: 36px;
    background: rgba(226, 82, 90, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.callout-v2__icon svg {
    stroke: #e2525a;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.callout-v2__text {
    color: #514341;
}

.callout-v2__text a {
    color: #e2525a;
    text-decoration: none;
    font-weight: 700;
}

.callout-v2__text a:hover {
    text-decoration: underline;
}


/* ============================================
   callout-v2--stories — модификатор для сторис
   Тёмный фон, светлый текст, растянут по высоте видео
   ============================================ */

.callout-v2--stories {
    background: transparent;
    border: none;
    align-items: stretch;
    min-height: 160px;
    font-size: 17px;
}

.callout-v2--stories:hover {
    border: none;
}

.callout-v2--stories .callout-v2__icon {
    background: rgba(226, 82, 90, 0.18);
    align-self: center;
}

.callout-v2--stories .callout-v2__text {
    color: #c0bbb9;
    font-size: 17px;
    display: flex;
    align-items: center;
}

.callout-v2--stories .callout-v2__text a {
    color: #e2525a;
}


/* ============================================
   filter-wrap2 — выравнивание плашки по высоте видео
   ============================================ */

.filter-wrap2 {
    display: flex;
    align-items: stretch;
}

.filter-wrap2-name {
    display: flex;
    align-items: stretch;
    flex: 1;
}

.filter-wrap2-name .callout-v2--stories {
    flex: 1;
    min-height: unset;
    margin: 0;
}

@media (max-width: 767px) {
    .filter-wrap2 {
        flex-direction: column;
    }

    .filter-wrap2-name .callout-v2--stories {
        font-size: 15px;
        padding: 14px 16px;
        justify-content: center;
        text-align: center;
    }

    .filter-wrap2-name .callout-v2--stories .callout-v2__icon {
        display: flex;
    }

    .filter-wrap2-item-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .filter-wrap2-item-wrap .filter-wrap2-item {
        flex: 0 0 auto;
    }

    .filter-wrap2-item-wrap img {
        width: 100px;
        height: auto;
    }
}
