/* 最新の投稿ウィジェット（ブロック）のスタイル */
.widget_recent_entries .wp-block-latest-posts__list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    /* 画像とタイトルの間隔 */
}

/* アイキャッチ画像 */
.widget_recent_entries .wp-block-latest-posts__featured-image {
    flex-shrink: 0;
    width: 100px;
    /* 1.3remのタイトルに対して適切な画像サイズ */
    margin: 0;
}

.widget_recent_entries .wp-block-latest-posts__featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    /* 正方形にトリミング */
    display: block;
}

/* 投稿タイトル */
.widget_recent_entries .wp-block-latest-posts__post-title {
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
}