
.custom-post-list {
    display: grid;
    gap: 10px;
}
.post-item {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.post-image {
    width: 25%;
    object-fit: cover;
}
.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-content {
    width: 75%;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}
.read-more {
    margin-top: auto;
    color: #0073aa;
    font-weight: bold;
}
