/*
Theme Name: Cream Magazine Child
Theme URI: https://tokentopnews.com/
Description: Child theme of Cream Magazine. Adds a right sidebar to the homepage hero (top news) area.
Author: TokenTopNews
Template: cream-magazine
Version: 1.0.1
Text Domain: cream-magazine-child
*/

/* Hero (top news) + right sidebar layout */
.top-news-with-sidebar {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.top-news-with-sidebar .top-news-main {
    flex: 1 1 auto;
    min-width: 0;
}
.top-news-with-sidebar .top-news-sidebar {
    width: 300px;
    flex: 0 0 300px;
}
.top-news-with-sidebar .top-news-sidebar .widget {
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .top-news-with-sidebar {
        flex-direction: column;
    }
    .top-news-with-sidebar .top-news-sidebar {
        width: 100%;
        flex-basis: auto;
    }
}

/* Middle news area: no sidebar on homepage, force full width */
.middle-news-area .middle-news-fullwidth {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}
