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

.modern-blog-card-1968aa9d {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modern-blog-card-1968aa9d.list-layout {
    flex-direction: row;
}

.modern-blog-card-1968aa9d:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modern-blog-image-1968aa9d {
    position: relative;
    width: 300px;
    min-height: 200px;
    max-height: 250px;
    flex-shrink: 0;
    overflow: hidden;
}

.modern-blog-image-1968aa9d img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-blog-card-1968aa9d:hover .modern-blog-image-1968aa9d img {
    transform: scale(1.05);
}

.modern-blog-placeholder-1968aa9d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

.modern-blog-content-1968aa9d {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.modern-blog-meta-1968aa9d {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.modern-blog-title-1968aa9d {
    margin: 0 0 12px 0;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.modern-blog-title-1968aa9d a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.modern-blog-title-1968aa9d a:hover {
    color: #4a90e2;
}

.modern-blog-excerpt-1968aa9d {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.modern-blog-readmore-1968aa9d {
    margin-top: auto;
}

.modern-blog-readmore-1968aa9d a {
    display: inline-block;
    color: #4a90e2;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
    font-family: 'Poppins', sans-serif;
}

.modern-blog-readmore-1968aa9d a:hover {
    color: #222;
}

.modern-blog-load-more-container-1968aa9d {
    text-align: center;
    margin-top: 40px;
}

.modern-blog-load-more-1968aa9d {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s, opacity 0.3s;
}

.modern-blog-load-more-1968aa9d:hover {
    opacity: 0.8;
}

.modern-blog-load-more-1968aa9d:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .modern-blog-card-1968aa9d.list-layout {
        flex-direction: column;
    }
    
    .modern-blog-image-1968aa9d {
        width: 100%;
        height: auto;
        padding-top: 60%;
        max-height: none;
    }
}