#custom-post-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-post-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.custom-post-thumb img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.custom-post-content {
    flex: 1;
}

.custom-post-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.custom-post-content .meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}