.blog-list-page {
    padding: 60px 6%;
    background: #f9f9f9;
    width: 100%;
}

.blog-list-page h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #242176;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Thumbnail */
.blog-thumb {
    flex-shrink: 0;
    width: 120px;
    /* Small size */
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Fully visible image */
    display: block;
}

/* Blog content */
.blog-content {
    flex: 1;
}

.blog-content h2 {
    font-size: 22px;
    color: #242176;
    margin: 0 0 8px 0;
}

.blog-content .meta {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

.blog-content p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ee1d24;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .blog-card {
        flex-direction: column;
        /* List view */
        align-items: flex-start;
    }

    .blog-thumb {
        width: 100%;
        /* Full width */
        height: auto;
        /* Adjust height automatically */
        margin-bottom: 15px;
    }

    .blog-thumb img {
        width: 100%;
        height: auto;
        object-fit: contain;
        /* Fully visible */
    }

    .blog-content {
        width: 100%;
    }
}