/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    background-color: #fff;
    margin: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
}
.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}
.logo span {
    color: #e60000;
}
.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-top: 1px solid #f5f5f5;
    gap: 25px;
}
.nav-menu a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.nav-menu a:hover {
    color: #e60000;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-socials {
    display: flex;
    gap: 15px;
}
.header-socials a {
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}
.header-socials a:hover {
    color: #e60000;
}
.btn-subscribe {
    background-color: #e60000;
    color: #fff !important;
    padding: 8px 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: none;
    letter-spacing: 1px;
}

/* ==========================================================================
   Editorial Grid & Main Layout
   ========================================================================== */
.editorial-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.main-story {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url('babeboo_2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #fff;
}
.main-story-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}
.badge-tag {
    color: #fff;
    background: #e60000;
    display: inline-block;
    padding: 2px 8px;
    margin-bottom: 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ==========================================================================
   Side Stories (Sidebar)
   ========================================================================== */
.side-stories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.side-card {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.side-card:last-child {
    border-bottom: none;
}
.category-tag {
    color: #e60000;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}
.side-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

/* ==========================================================================
   Trending Feed
   ========================================================================== */
.trending-section {
    padding: 60px 0;
    border-top: 1px solid #eee;
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.thumb-placeholder {
    height: 220px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 30px 0;
    margin-top: 60px;
    font-size: 0.85rem;
}
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
    margin-bottom: 30px;
}
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #fff;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-col ul a:hover {
    color: #e60000;
}
.footer-col ul i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}
.footer-bottom {
    color: #666;
    line-height: 1.6;
}
.footer-bottom a {
    color: #888;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #fff;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 768px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }
}