/* =========================================================
   Synthira — лента обновлений The Sims 4
========================================================= */

.sxup-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;

    width: 100%;
    min-width: 0;

    color: var(--sx-text, #c9c9c9);
    font-family: var(--sx-font, "Source Sans 3", Arial, sans-serif);
}

/* ===============================
   Шапка ленты
================================ */

.sxup-feed-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 17px 18px;

    border-radius: var(--sx-radius, 9px);
    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(185, 179, 132, 0.11),
            transparent 36%
        ),
        linear-gradient(
            180deg,
            #242424 0%,
            #202020 100%
        );

    border: 1px solid var(--sx-border, #303030);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 8px 20px rgba(0, 0, 0, 0.16);
}

.sxup-feed-head-main {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.sxup-feed-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;
    flex: 0 0 43px;

    border-radius: 12px;
    background: rgba(185, 179, 132, 0.11);
    border: 1px solid rgba(185, 179, 132, 0.16);

    color: var(--sx-gold, #d2cc97);
    font-size: 24px;
    line-height: 1;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 0 14px rgba(185, 179, 132, 0.055);
}

.sxup-feed-kicker {
    margin-bottom: 3px;

    color: var(--sx-gold-2, #b9b384);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    line-height: 1.2;
    text-transform: uppercase;
}

.sxup-feed-title {
    margin: 0;

    color: #e0e0e0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.sxup-feed-description {
    max-width: 670px;
    margin: 5px 0 0;

    color: var(--sx-text-soft, #a9a9a9);
    font-size: 13px;
    line-height: 1.4;
}

.sxup-feed-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 108px;
    padding: 9px 12px;

    border-radius: 9px;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.05);

    text-align: center;
}

.sxup-feed-counter span {
    color: var(--sx-muted, #858585);
    font-size: 11px;
    line-height: 1.2;
}

.sxup-feed-counter strong {
    margin-top: 3px;

    color: var(--sx-gold, #d2cc97);
    font-size: 18px;
    line-height: 1;
}

/* ===============================
   Актуальный патч — стиль The Sims 4
================================ */

.sxup-current-patch {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 10px 16px;

    border-radius: 14px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(0, 255, 170, 0.10),
            transparent 34%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(72, 196, 255, 0.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            rgba(0, 255, 170, 0.07) 0%,
            rgba(72, 196, 255, 0.06) 52%,
            rgba(0, 0, 0, 0.10) 100%
        ),
        var(--sx-panel, #202020);

    border: 1px solid rgba(72, 196, 255, 0.18);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.16),
        0 0 18px rgba(0, 255, 170, 0.05);
}

.sxup-current-patch::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 4px;

    border-radius: 14px 0 0 14px;

    background: linear-gradient(
        180deg,
        rgba(0, 255, 170, 0.95) 0%,
        rgba(72, 196, 255, 0.95) 100%
    );

    box-shadow:
        0 0 14px rgba(0, 255, 170, 0.18);
}

.sxup-current-patch-main {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 0;
}

.sxup-current-patch-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    flex: 0 0 46px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 255, 170, 0.16) 0%,
            rgba(72, 196, 255, 0.16) 100%
        );

    border: 1px solid rgba(72, 196, 255, 0.18);

    color: #7fe8ff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 16px rgba(72, 196, 255, 0.08);
}

.sxup-current-patch-label {
    display: block;

    color: #89dff0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.sxup-current-patch-version {
    display: block;

    margin-top: 4px;

    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;

    text-shadow:
        0 0 16px rgba(72, 196, 255, 0.08);
}

.sxup-current-patch-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 0 14px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);

    color: #b8dbe3;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

/* Адаптация */

@media (max-width: 720px) {
    .sxup-current-patch {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .sxup-current-patch-date {
        white-space: normal;
    }
}

@media (max-width: 520px) {
    .sxup-current-patch {
        padding: 14px 14px 14px 16px;
    }

    .sxup-current-patch-main {
        gap: 11px;
    }

    .sxup-current-patch-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;

        font-size: 16px;
    }

    .sxup-current-patch-label {
        font-size: 11px;
    }

    .sxup-current-patch-version {
        font-size: 24px;
    }

    .sxup-current-patch-date {
        font-size: 12px;
        min-height: 34px;
        padding: 0 12px;
    }
}
/* ===============================
   Информационное сообщение
================================ */

.sxup-notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 19px;
    height: 19px;
    flex: 0 0 19px;

    margin-top: 1px;

    border-radius: 50%;
    background: rgba(185, 179, 132, 0.13);

    color: var(--sx-gold, #d2cc97);
    font-size: 12px;
    font-weight: 700;
}

/* ===============================
   Список
================================ */

.sxup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===============================
   Одна запись
================================ */

.sxup-item {
    position: relative;

    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 12px;

    padding: 13px 14px;

    border-radius: var(--sx-radius, 9px);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018),
            transparent 46%
        ),
        var(--sx-panel, #202020);

    border: 1px solid var(--sx-border, #303030);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 5px 14px rgba(0, 0, 0, 0.1);

    overflow: hidden;

    transition:
        background 0.17s ease,
        border-color 0.17s ease,
        transform 0.17s ease;
}

.sxup-item::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 2px;

    background: var(--sxup-status-color, #b9b384);
    opacity: 0.78;
}

.sxup-item:hover {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.024),
            transparent 48%
        ),
        #222222;

    border-color: rgba(185, 179, 132, 0.14);
}

.sxup-item-fixed {
    border-color: rgba(185, 179, 132, 0.18);

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(185, 179, 132, 0.065),
            transparent 28%
        ),
        var(--sx-panel, #202020);
}

/* Цвета статусов */

.sxup-status-updated {
    --sxup-status-color: var(--sx-blue, #68b7d8);
    --sxup-status-bg: rgba(104, 183, 216, 0.11);
}

.sxup-status-compatible {
    --sxup-status-color: var(--sx-green, #74c878);
    --sxup-status-bg: rgba(116, 200, 120, 0.1);
}

.sxup-status-broken {
    --sxup-status-color: var(--sx-red, #e66a6a);
    --sxup-status-bg: rgba(230, 106, 106, 0.1);
}

.sxup-status-partial {
    --sxup-status-color: #d2b675;
    --sxup-status-bg: rgba(210, 182, 117, 0.1);
}

.sxup-status-info {
    --sxup-status-color: var(--sx-gold-2, #b9b384);
    --sxup-status-bg: rgba(185, 179, 132, 0.1);
}

/* Иконка статуса */

.sxup-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 10px;
    background: var(--sxup-status-bg);
    border: 1px solid color-mix(
        in srgb,
        var(--sxup-status-color) 24%,
        transparent
    );

    color: var(--sxup-status-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

/* Контент записи */

.sxup-item-content {
    min-width: 0;
}

.sxup-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.sxup-item-heading {
    min-width: 0;
}

.sxup-item-labels {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;

    margin-bottom: 5px;
}

.sxup-status-label,
.sxup-pinned,
.sxup-meta-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 20px;
    padding: 0 7px;

    border-radius: 6px;

    font-size: 10px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.sxup-status-label {
    background: var(--sxup-status-bg);
    border: 1px solid rgba(255, 255, 255, 0.045);

    color: var(--sxup-status-color);
}

.sxup-pinned {
    background: rgba(185, 179, 132, 0.09);
    border: 1px solid rgba(185, 179, 132, 0.12);

    color: var(--sx-gold, #d2cc97);
}

.sxup-item-title {
    margin: 0;

    color: #dedede;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;

    overflow-wrap: anywhere;
}

.sxup-date {
    flex: 0 0 auto;

    padding-top: 2px;

    color: var(--sx-muted, #858585);
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
}

.sxup-description {
    margin-top: 8px;

    color: var(--sx-text-soft, #a9a9a9);
    font-size: 13px;
    line-height: 1.48;

    overflow-wrap: anywhere;
}

.sxup-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-top: 10px;
    padding-top: 9px;

    border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.sxup-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.sxup-meta-chip {
    min-height: 22px;

    background: rgba(255, 255, 255, 0.032);
    border: 1px solid rgba(255, 255, 255, 0.05);

    color: #9e9e9e;
    font-size: 10px;
    line-height: 22px;
}
.sxup-open-link,
.sxup-open-link:link,
.sxup-open-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    min-height: 28px !important;
    padding: 0 10px 0 9px !important;
    border-radius: 7px !important;
    background: #232323 !important;
    border: 1px solid #333333 !important;
    color: #d2cc97 !important;
    font-size: 13px !important;
}

.sxup-open-link:hover {
    color: var(--sx-gold-hover, #e3eaa9);background: #2b2b2b !important
}

/* ===============================
   Пустая лента
================================ */

.sxup-empty {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 17px;

    border-radius: var(--sx-radius, 9px);
    background: var(--sx-panel, #202020);
    border: 1px solid var(--sx-border, #303030);
}

.sxup-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;
    flex: 0 0 32px;

    border-radius: 9px;
    background: rgba(185, 179, 132, 0.1);

    color: var(--sx-gold, #d2cc97);
    font-weight: 700;
}

.sxup-empty strong {
    color: #d5d5d5;
}

.sxup-empty p {
    margin: 4px 0 0;

    color: var(--sx-muted, #858585);
    font-size: 12px;
}

/* ===============================
   Пагинация
================================ */

.sxup-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;

    padding: 10px;

    border-radius: var(--sx-radius, 9px);
    background: var(--sx-panel, #202020);
    border: 1px solid var(--sx-border, #303030);
}

.sxup-page,
.sxup-page:link,
.sxup-page:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 32px;
    height: 32px;
    padding: 0 9px;

    border-radius: 7px;
    background: var(--sx-panel-2, #252525);
    border: 1px solid rgba(255, 255, 255, 0.05);

    color: var(--sx-text-soft, #a9a9a9);
    font-size: 12px;
    line-height: 30px;
}

.sxup-page:hover {
    background: rgba(185, 179, 132, 0.09);
    border-color: rgba(185, 179, 132, 0.15);

    color: var(--sx-gold-hover, #e3eaa9);
}

.sxup-page-current {
    background: rgba(185, 179, 132, 0.13);
    border-color: rgba(185, 179, 132, 0.2);

    color: var(--sx-gold-hover, #e3eaa9);
    font-weight: 700;
}

.sxup-page-nav {
    min-width: 80px;
}

.sxup-page-disabled {
    opacity: 0.4;
    cursor: default;
}

.sxup-page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 32px;
    padding: 0 3px;

    color: var(--sx-muted, #858585);
}
.sxup-page-form {
    display: inline-flex;

    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;
}

.sxup-page-form button.sxup-page {
    margin: 0;

    font-family: inherit;
    font-weight: 400;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}

/* ===============================
   Системное сообщение
================================ */

.sxup-system-message {
    padding: 12px;

    border-radius: var(--sx-radius, 9px);
    background: var(--sx-panel, #202020);
    border: 1px solid var(--sx-border, #303030);

    color: var(--sx-text-soft, #a9a9a9);
}

/* ===============================
   Адаптация
================================ */

@media (max-width: 720px) {
    .sxup-feed-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .sxup-feed-counter {
        align-items: flex-start;

        width: 100%;

        text-align: left;
    }

    .sxup-item-top {
        flex-direction: column;
        gap: 5px;
    }

    .sxup-date {
        padding-top: 0;
    }
}

@media (max-width: 520px) {
    .sxup-feed-head {
        padding: 14px;
    }

    .sxup-feed-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;

        font-size: 20px;
    }

    .sxup-feed-title {
        font-size: 18px;
    }

    .sxup-item {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 9px;

        padding: 11px;
    }

    .sxup-status-icon {
        width: 30px;
        height: 30px;

        border-radius: 8px;
        font-size: 17px;
    }

    .sxup-item-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .sxup-open-link {
        white-space: normal;
    }

    .sxup-pagination {
        justify-content: flex-start;
    }

    .sxup-page-nav {
        min-width: 70px;
    }
}
/* =========================================================
   AJAX-кнопка «Показать ещё»
========================================================= */

/*
 * При работающем JavaScript скрываем обычные номера страниц
 * и оставляем только кнопку загрузки следующей части ленты.
 */

.sxup-feed.sxup-js .sxup-pagination > * {
    display: none;
}

.sxup-feed.sxup-js
.sxup-pagination
.sxup-load-more-form {
    display: inline-flex;
}

.sxup-feed.sxup-js .sxup-pagination {
    justify-content: center;
}

.sxup-load-more-button {
    min-width: 180px;
    padding-left: 18px;
    padding-right: 18px;

    font-family: inherit;
    font-weight: 600;

    cursor: pointer;
}

.sxup-load-more-button:disabled {
    opacity: 0.62;
    cursor: wait;
}

.sxup-feed.sxup-js .sxup-pagination-finished {
    display: none;
}
/* ===============================
   Строка текущего патча
================================ */

.sxup-patch-row {
    display: grid;
    grid-template-columns: minmax(350px, 430px) minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;

    width: 100%;
    min-width: 0;
}

/*
 * Левая карточка занимает всю высоту строки.
 */
.sxup-patch-row .sxup-current-patch {
    height: 100%;
    min-height: 104px;
    margin: 0;
}

/*
 * Информационный блок справа.
 */
.sxup-patch-row .sxup-notice {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    min-width: 0;
    min-height: 104px;
    margin: 0;
    padding: 17px 20px;

    border-radius: 14px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(0, 255, 170, 0.045),
            transparent 34%
        ),
        rgba(185, 179, 132, 0.035);

    border: 1px solid rgba(185, 179, 132, 0.11);

    color: #c6c69f;
    font-size: 14px;
    line-height: 1.55;

    box-sizing: border-box;
}

.sxup-patch-row .sxup-notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;
    flex: 0 0 25px;

    margin: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(0, 255, 170, 0.12),
            rgba(72, 196, 255, 0.12)
        );

    border: 1px solid rgba(72, 196, 255, 0.13);

    color: #8de9da;
    font-size: 13px;
    font-weight: 700;
}

.sxup-notice-text {
    min-width: 0;
    max-width: 760px;
}

/* Планшеты и телефоны */

@media (max-width: 760px) {
    .sxup-patch-row {
        grid-template-columns: 1fr;
    }

    .sxup-patch-row .sxup-current-patch,
    .sxup-patch-row .sxup-notice {
        min-height: auto;
    }

    .sxup-patch-row .sxup-notice {
        padding: 13px 15px;
        font-size: 13px;
    }
}
/* =========================================================
   Фильтры ленты обновлений
========================================================= */

.sxup-filters {
    display: flex;
    align-items: center;
    gap: 6px;

    width: 100%;
    min-width: 0;

    padding: 8px;

    border-radius: var(--sx-radius, 9px);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018),
            transparent
        ),
        var(--sx-panel, #202020);

    border: 1px solid var(--sx-border, #303030);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: thin;
}

.sxup-filter-form {
    display: inline-flex;
    flex: 0 0 auto;

    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;
}

.sxup-filter {
    --sxup-filter-color: var(--sx-gold-2, #b9b384);
    --sxup-filter-bg: rgba(185, 179, 132, 0.07);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 34px;
    padding: 0 10px;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);

    color: #a9a9a9;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 32px;

    white-space: nowrap;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    transition:
        color 0.16s ease,
        background 0.16s ease,
        border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.sxup-filter:hover {
    background: var(--sxup-filter-bg);
    border-color: rgba(255, 255, 255, 0.08);

    color: var(--sxup-filter-color);
}

.sxup-filter-active {
    background: var(--sxup-filter-bg);
    border-color: var(--sxup-filter-color);

    color: var(--sxup-filter-color);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 0 11px rgba(0, 0, 0, 0.08);
}

.sxup-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 21px;
    height: 20px;
    padding: 0 6px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.045);

    color: inherit;
    font-size: 10px;
    font-weight: 700;
    line-height: 20px;
}

/* Цвета отдельных фильтров */

.sxup-filter-all {
    --sxup-filter-color: var(--sx-gold, #d2cc97);
    --sxup-filter-bg: rgba(185, 179, 132, 0.10);
}

.sxup-filter-updated {
    --sxup-filter-color: var(--sx-blue, #68b7d8);
    --sxup-filter-bg: rgba(104, 183, 216, 0.10);
}

.sxup-filter-compatible {
    --sxup-filter-color: var(--sx-green, #74c878);
    --sxup-filter-bg: rgba(116, 200, 120, 0.10);
}

.sxup-filter-broken {
    --sxup-filter-color: var(--sx-red, #e66a6a);
    --sxup-filter-bg: rgba(230, 106, 106, 0.10);
}

.sxup-filter-partial {
    --sxup-filter-color: #d2b675;
    --sxup-filter-bg: rgba(210, 182, 117, 0.10);
}

.sxup-filter-info {
    --sxup-filter-color: var(--sx-gold-2, #b9b384);
    --sxup-filter-bg: rgba(185, 179, 132, 0.10);
}

@media (max-width: 620px) {
    .sxup-filters {
        padding: 7px;
    }

    .sxup-filter {
        min-height: 32px;
        padding: 0 9px;

        font-size: 11px;
        line-height: 30px;
    }
}
/* =========================================================
   Предупреждение о вредоносных модах
========================================================= */

.sxup-malware {
    position: relative;

    width: 100%;
    min-width: 0;

    border-radius: 12px;

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(230, 74, 74, 0.075),
            transparent 35%
        ),
        var(--sx-panel, #202020);

    border: 1px solid rgba(230, 106, 106, 0.20);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 7px 18px rgba(0, 0, 0, 0.13);

    overflow: hidden;
}

/* Убираем стандартный маркер details */

.sxup-malware > summary {
    list-style: none;
}

.sxup-malware > summary::-webkit-details-marker {
    display: none;
}

/* Заголовок спойлера */

.sxup-malware-summary {
    position: relative;

    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 58px;
    padding: 10px 13px;

    background:
        linear-gradient(
            90deg,
            rgba(181, 43, 43, 0.30),
            rgba(230, 74, 74, 0.07) 45%,
            transparent
        );

    color: #d5d5d5;
    cursor: pointer;

    transition:
        background 0.18s ease,
        color 0.18s ease;
}

.sxup-malware-summary:hover {
    background:
        linear-gradient(
            90deg,
            rgba(181, 43, 43, 0.38),
            rgba(230, 74, 74, 0.10) 48%,
            transparent
        );
}

.sxup-malware-summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    flex: 0 0 34px;

    border-radius: 9px;

    background: rgba(230, 74, 74, 0.14);
    border: 1px solid rgba(230, 106, 106, 0.23);

    color: #ff8888;
    font-size: 17px;
    font-weight: 800;

    box-shadow:
        0 0 13px rgba(230, 74, 74, 0.07);
}

.sxup-malware-summary-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 3px;

    min-width: 0;
}

.sxup-malware-summary-title {
    color: #f0b0b0;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
}

.sxup-malware-summary-date {
    color: #998989;
    font-size: 11px;
    line-height: 1.3;
}

.sxup-malware-summary-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    flex: 0 0 auto;

    color: #d89191;
    font-size: 11px;
    font-weight: 650;
    white-space: nowrap;
}

.sxup-malware-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    border-radius: 7px;
    background: rgba(230, 74, 74, 0.08);
    border: 1px solid rgba(230, 106, 106, 0.13);

    font-family: Arial, sans-serif;
    font-size: 19px;
    line-height: 1;

    transform: rotate(90deg);

    transition: transform 0.18s ease;
}

.sxup-malware-close-text {
    display: none;
}

.sxup-malware[open] .sxup-malware-open-text {
    display: none;
}

.sxup-malware[open] .sxup-malware-close-text {
    display: inline;
}

.sxup-malware[open] .sxup-malware-chevron {
    transform: rotate(-90deg);
}

/* Содержимое */

.sxup-malware-body {
    padding: 17px 18px 18px;

    border-top: 1px solid rgba(230, 106, 106, 0.13);

    color: #c4c4c4;
    font-size: 13px;
    line-height: 1.55;
}

.sxup-malware-intro {
    padding: 12px 14px;

    border-radius: 9px;
    background: rgba(230, 74, 74, 0.055);
    border: 1px solid rgba(230, 106, 106, 0.10);
}

.sxup-malware-intro strong {
    color: #efb0b0;
    font-size: 14px;
}

.sxup-malware-intro p {
    margin: 6px 0 0;
    color: #aaa0a0;
}

/* Список */

.sxup-malware-list {
    margin: 15px 0 0 21px;
    padding: 0;
}

.sxup-malware-list li {
    margin: 7px 0;
    padding-left: 2px;

    color: #c8c8c8;
}

.sxup-malware-list li::marker {
    color: #df7777;
}

.sxup-malware-list strong,
.sxup-malware-list b {
    color: #ff789e;
}

.sxup-malware-added {
    color: #49d8a3;
    font-size: 11px;
    white-space: nowrap;
}

.sxup-malware-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 19px;
    padding: 0 6px;
    margin-right: 3px;

    border-radius: 5px;

    background: rgba(0, 215, 151, 0.10);
    border: 1px solid rgba(0, 215, 151, 0.16);

    color: #50e3af;
    font-size: 9px;
    font-weight: 800;
    line-height: 17px;
    text-transform: uppercase;
}

.sxup-malware-reminder {
    margin: 6px 0 2px 12px;
    padding-left: 9px;

    border-left: 2px solid rgba(230, 106, 106, 0.35);

    color: #d99090;
    font-size: 12px;
}

/* Рекомендации */

.sxup-malware-recommendation {
    margin-top: 15px;
    padding: 13px 14px;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.045);
}

.sxup-malware-recommendation strong {
    color: #e0b4b4;
    font-size: 14px;
}

.sxup-malware-recommendation p {
    margin: 6px 0 0;
    color: #aaa5a5;
}

.sxup-malware-recommendation p + p {
    margin-top: 8px;
}

.sxup-malware-recommendation p strong {
    color: #d2cc97;
    font-size: inherit;
}

/* Критическое предупреждение */

.sxup-malware-critical {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-top: 12px;
    padding: 13px 14px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            rgba(181, 43, 43, 0.16),
            rgba(230, 74, 74, 0.045)
        );

    border: 1px solid rgba(230, 106, 106, 0.17);
}

.sxup-malware-critical-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;
    flex: 0 0 26px;

    border-radius: 7px;

    background: rgba(230, 74, 74, 0.16);

    color: #ff8585;
    font-size: 14px;
    font-weight: 800;
}

.sxup-malware-critical strong {
    color: #efabab;
    font-size: 13px;
}

.sxup-malware-critical p {
    margin: 5px 0 0;
    color: #b8aaaa;
}

/* Источник */

.sxup-malware-source {
    margin: 13px 0 0;
    padding-top: 11px;

    border-top: 1px solid rgba(255, 255, 255, 0.045);

    color: #777070;
    font-size: 10px;
    line-height: 1.45;
}

/* Телефоны */

@media (max-width: 620px) {
    .sxup-malware-summary {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .sxup-malware-summary-content {
        width: calc(100% - 48px);
    }

    .sxup-malware-summary-action {
        width: 100%;
        padding-left: 45px;
    }

    .sxup-malware-body {
        padding: 14px;
    }

    .sxup-malware-list {
        margin-left: 18px;
    }

    .sxup-malware-added {
        display: block;
        margin-top: 2px;
    }
}