.lpt-latest-posts-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    margin: 20px 0;
}

.lpt-post-thumbnail-item {
    flex: 1;
    text-align: center;
}

.lpt-post-thumbnail {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.lpt-post-thumbnail:hover {
    transform: scale(1.05);
}

.lpt-post-content {
    margin-top: 10px;
}

.lpt-post-title {
    font-size: 18px;
    margin: 0 0 8px;
    text-decoration: none;
    color: #333;
}

.lpt-post-title a {
    text-decoration: none;
    color: #333;
}

.lpt-post-title a:hover {
    text-decoration: underline;
}

.lpt-post-date {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px;
}

.lpt-post-excerpt {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .lpt-latest-posts-row {
        flex-wrap: wrap;
    }
    .lpt-post-thumbnail-item {
        flex: 0 0 48%;
        margin-bottom: 20px;
    }
    .lpt-post-thumbnail {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .lpt-post-thumbnail-item {
        flex: 0 0 100%;
    }
}