.vp-live-news-popup {
    position: fixed;
    z-index: 999999;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    width: min(390px, calc(100vw - 24px));
    min-height: 96px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.vp-live-news-popup.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vp-live-news-popup.is-hiding {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.vp-live-news-popup__image-wrap {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
}

.vp-live-news-popup__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-live-news-popup__image--empty {
    background: #e9e9e9;
}

.vp-live-news-popup__content {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
}

.vp-live-news-popup__title {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

@media (max-width: 480px) {
    .vp-live-news-popup {
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .vp-live-news-popup__image-wrap {
        flex-basis: 82px;
        width: 82px;
        height: 82px;
    }

    .vp-live-news-popup__content {
        padding: 12px 14px;
    }

    .vp-live-news-popup__title {
        font-size: 15px;
    }
}
