@charset "UTF-8";
/* --- サムネイルの上下切れを直す安全な設定 --- */

/* 1. 画像の表示方法を「全体表示」に強制上書き */
.card-img-box,
.entry-list-img-box,
.article-thumb-box {
    background-size: contain !important; /* 切らずに全体を表示 */
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #ffffff !important; /* 隙間を白で埋める */
}

/* 2. 背景画像以外の「重なり」を消してスッキリさせる */
.card-img-box img,
.entry-list-img-box img,
.article-thumb-box img {
    display: none !important; /* 余計な重なりを消去 */
}