    .top-bar {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 15px;
        background: #111;
    }
    
    .home-btn {
        background: #e91e63;
        color: #fff;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .home-btn:hover {
        opacity: .9;
    }
    
    .page-header {
        text-align: center;
        padding: 30px 15px;
    }
    
    .page-header h1 {
        margin-bottom: 10px;
    }
    
    .page-header p {
        color: #777;
        max-width: 700px;
        margin: auto;
    }
    
    .blog-home {
        padding: 20px;
    }
    /* HEADER */
    
    .blog-header {
        margin-bottom: 30px;
    }
    
    .blog-header h1 {
        color: var(--navy);
        font-size: 32px;
    }
    /* GRID */
    
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    /* CARD */
    
    .blog-card {
        background: white;
        border-radius: 18px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }
    
    .blog-card:hover {
        transform: translateY(-4px);
    }
    /* IMAGE */
    
    .blog-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }
    /* BODY */
    
    .blog-body {
        padding: 18px;
    }
    /* CATEGORY */
    
    .blog-category {
        display: inline-block;
        margin-bottom: 10px;
        background: rgba(251, 191, 36, 0.15);
        color: var(--navy);
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
    }
    /* TITLE */
    
    .blog-body h2 {
        margin-top: 0;
        color: var(--navy);
        line-height: 1.4;
    }
    /* TEXT */
    
    .blog-body p {
        color: var(--muted);
        line-height: 1.7;
    }
    /* META */
    
    .blog-meta {
        margin-top: 14px;
        display: flex;
        justify-content: space-between;
        color: var(--muted);
        font-size: 14px;
    }
    /* DESKTOP */
    
    @media(min-width:768px) {
        .blog-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }