#hot_news_bar {
    display: none;
    position: relative;
    z-index: 1200;
    overflow: hidden;
    color: #fff7ef;

    background-color: #7a4a2a;
    background-image: url('../img/plashka.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;

    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(45,22,12,0.35);
    box-shadow:
        0 3px 10px rgba(0,0,0,0.10);
}

#hot_news_bar .hot_news_bar_inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px 28px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 2;
}

#hot_news_bar .hot_news_bar_text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    line-height: 1.35;
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}

#hot_news_bar .hot_news_bar_text strong {
    display: inline-block;
    color: #fff1d7;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1.08em;
}

#hot_news_bar .hot_news_bar_text span {
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
}

#hot_news_bar .hot_news_bar_actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

#hot_news_bar .hot_news_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(0,0,0,0.22);
    color: #fffaf2;
    text-decoration: none;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.30);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 2px 6px rgba(0,0,0,0.10);
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

#hot_news_bar .hot_news_more:hover {
    background: rgba(0,0,0,0.30);
    border-color: rgba(255,255,255,0.30);
}

#hot_news_bar .hot_news_close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(0,0,0,0.22);
    color: #fff7eb;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    text-shadow: 0 1px 1px rgba(0,0,0,0.30);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 2px 6px rgba(0,0,0,0.10);
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

#hot_news_bar .hot_news_close:hover {
    background: rgba(0,0,0,0.30);
    border-color: rgba(255,255,255,0.30);
}

@media (max-width: 1100px) {
    #hot_news_bar .hot_news_bar_inner {
        max-width: none;
        padding: 14px 20px;
        min-height: 70px;
    }

    #hot_news_bar .hot_news_bar_text {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    #hot_news_bar .hot_news_bar_inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 16px;
        min-height: 0;
    }

    #hot_news_bar .hot_news_bar_text {
        font-size: 16px;
    }

    #hot_news_bar .hot_news_bar_actions {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    #hot_news_bar {
        background-position: center center;
        background-size: cover;
    }

    #hot_news_bar .hot_news_more {
        min-height: 40px;
        padding: 0 16px;
        font-size: 14px;
    }

    #hot_news_bar .hot_news_close {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}