/**
 * Blanky Beauty — Archive / Blog List
 *
 * @package blanky-beauty
 */

/* アイキャッチ：画像なしでも高さを確保（figure/div両対応） */
:where(.wp-block-post-template) .beauty-post-thumb.wp-block-post-featured-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background-color: var(--wp--preset--color--surface, #f5f5f5);
    margin-bottom: 1rem;
}

.beauty-post-thumb.wp-block-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* タイトル：2行固定（1行でも2行分の高さを確保） */
.beauty-post-title.wp-block-post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2lh;
}

/* 説明文：3行でクランプ */
.beauty-post-excerpt.wp-block-post-excerpt .wp-block-post-excerpt__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ページネーション：ボタン間の余白 */
.wp-block-query-pagination {
    gap: 8px;
}