/* Hero */
    .heroic {
      background:#111; color:#fff;
      padding:4rem 1rem; text-align:center;
    }
    .heroic h1 {font-size:2.5rem; font-weight:700;}
    .heroic .highlight {color:#FFA500;}
    .heroic p {margin-top:1rem; color:#ddd;}

    /* Search + Filter */
    .search-filter {padding:2rem 0; background:#f9f9f9;}
    .search-box {text-align:center; margin-bottom:1.2rem;}
    .search-box input {
      width:100%; max-width:400px; padding:0.7rem 1rem;
      border:1px solid #ccc; border-radius:6px;
    }
    .filters {text-align:center;}
    .filter-btn {
      display:inline-block; margin:0.3rem; padding:0.5rem 1rem;
      border:1px solid #FFA500; border-radius:20px;
      background:#fff; color:#111; cursor:pointer; font-size:0.9rem;
      transition:all 0.3s;
    }
    .filter-btn.active, .filter-btn:hover {
      background:#FFA500; color:#fff;
    }

    /* Blog Grid */
    .blog-section {padding:3rem 0;}
    .blog-grid {
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
      gap:1.5rem;
    }
    .blog-card {
      border:1px solid #eee; border-radius:10px;
      overflow:hidden; background:#fafafa;
      cursor:pointer; transition:transform 0.2s;
    }
    .blog-card:hover {transform:translateY(-5px);}
    .blog-card img {
      width:100%; height:180px; object-fit:cover;
    }
    .blog-card .content {padding:1rem;}
    .blog-card h3 {font-size:1.2rem; margin-bottom:0.5rem; font-weight:600;}
    .blog-card p {font-size:0.9rem; color:#555; margin-bottom:0.8rem;}
    .blog-card .meta {font-size:0.8rem; color:#777;}

    .no-results {
      display:none;
      text-align:center;
      margin-top:2rem;
      font-weight:600;
      color:#555;
    }

    /* Newsletter */
    .newsletters {
      background:#111; color:#fff;
      padding:3rem 1rem; text-align:center;
    }
    .newsletters h2 {font-size:1.8rem; margin-bottom:1rem;}
    .newsletters p {margin-bottom:1.5rem; color:#ccc;}
    .newsletters-form input {
      padding:0.7rem 1rem; border:none; border-radius:6px 0 0 6px;
      width:250px; max-width:80%;
    }
    .newsletters-form button {
      padding:0.7rem 1.5rem; border:none;
      background:#FFA500; color:#fff; cursor:pointer;
      border-radius:0 6px 6px 0; font-weight:600;
    }
    .newsletters-form button:hover {background:#e69500;}

    /* Sidebar Styles for Mobile */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Mobile - Sidebar */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 4rem 2rem;
        gap: 1.5rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.show {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        z-index: 1000;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }
}
