/* ── Post list thumbnail (고정 비율, 원본 이미지 크기와 무관하게 통일된 카드 높이) ── */
.blog-posts .post-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f4f4;
}
.blog-posts .post-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
