.spblc-posts {
    margin: 20px 0;
}
.spblc-post {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin-bottom: 10px;
}
.spblc-thumbnail {
    flex: 0 0 300px;
    margin-right: 20px;
}
.spblc-thumbnail img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}
.spblc-content {
    flex: 1;
}
.spblc-content h2 {
    font-size: 1.5em;
    margin: 0 0 10px;
}
.spblc-content p {
    margin: 0 0 10px;
}
.spblc-thumbnail a {
    display: block;
}

/* Mobile layout */
@media (max-width: 900px) {
    .spblc-post {
        flex-direction: column;
        align-items: stretch;
    }
    .spblc-thumbnail {
        flex: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .spblc-thumbnail img {
        width: 100%;
        height: auto;
        max-height: 250px;
    }
    .spblc-content {
        width: 100%;
    }
}