.blog-post-card {
    margin: 20px 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #f8f9fa;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}
.blog-post-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.blog-post-card img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}
.blog-post-card .material-icons {
    font-size: 24px;
    color: #546e7a;
    margin-right: 10px;
}
.blog-post-card a {
    color: #263238;
    text-decoration: none;
    font-weight: 500;
}
.blog-post-card a:hover {
    color: #546e7a;
}
h1 {
    font-weight: 600;
    font-size: 1.5rem;
    color: #263238;
}
.blog-material-icons {
    vertical-align: middle;
    margin-right: 10px;
    font-size: 24px;
    color: #546e7a;
}

.blog-nav-link {
    color: #546e7a;
    cursor: pointer;
}

.blog-nav-link:hover {
    color: #263238;
}

.blog-h5 {
    font-weight: 500;
    font-size: 1.25rem;
    color: #263238;
}

.blog-p, .blog-p li {
    font-weight: 400;
    font-size: 1rem;
    color: #666;
}
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.navigation-buttons .btn {
    background-color: #546e7a;
    color: #fff;
    border: none;
}
.navigation-buttons .btn:hover {
    background-color: #263238;
}


/***********************Blog post inner classes ***********************/
       
        .header-space { height: 100px; background: #263238; color: #fff; text-align: center; line-height: 100px; font-size: 1.5rem; }
        .blog-header { text-align: center; margin: 30px 0; }
        .blog-header h1 { font-size: 2rem; font-weight: 600; color: #263238; }
        .blog-header img { width: 100%; height: 300px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }
        .blog-content { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .blog-content h2 { font-size: 1.5rem; font-weight: 600; color: #546e7a; margin-top: 20px; }
        .blog-content p { font-size: 1rem; color: #666; }
        .blog-content img.icon { width: 40px; height: 40px; margin-right: 10px; vertical-align: middle; }
        .cta-button { display: inline-block; margin-top: 20px; padding: 10px 20px; background: #546e7a; color: #fff; text-decoration: none; border-radius: 6px; font-weight: 500; transition: background 0.3s ease; }
        .cta-button:hover { background: #455a64; color: #fff; }
        @media (max-width: 768px) { .blog-header h1 { font-size: 1.5rem; } .blog-header img { height: 200px; } .blog-content { padding: 15px; } }