/*
Theme Name: Astra Child
Description: Styles for Gallery post type (single, archive, and category pages).
*/

/* Add your gallery custom CSS below */
/* アーカイブページのアイキャッチ画像を16:9に統一してトリミング */

body.post-type-archive-gallery .ast-article-post .post-thumb-img-content img,
body.tax-gallery_category .ast-article-post .post-thumb-img-content img{
    width: 100%;
    aspect-ratio: 4 / 3; /* 好みの比率に調整（4/3 など） */
    object-fit: cover;    /* 縦横比が崩れないように中央でクロップ */
}