
/*
Theme Name: Genesis Newspaper Child
Theme URI: https://dodrai.in/
Description: Lightweight Genesis child theme with floating header, menu, flexbox layout and newspaper-style homepage
Author: Dodrai
Author URI: https://dodrai.in/
Template: genesis
Version: 1.1
*/

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f4f4f4;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 15px;
}

.site-title a {
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
}

.nav-primary ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-primary a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
}

.nav-primary a:hover {
    color: #0073aa;
}

.home-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.home-news {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.home-news article {
    background: #fff;
    padding: 15px;
    flex: 1 1 calc(33.333% - 20px);
}

.home-news h2 {
    font-size: 20px;
}

.site-footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media(max-width: 900px) {
    .home-news article {
        flex: 1 1 100%;
    }
    .nav-primary ul {
        flex-direction: column;
        gap: 10px;
    }
}
