/* ==========================================================================
   ブログ記事詳細ページ
   ========================================================================== */

/* 2カラムレイアウト */
.blog-single-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}

/* メインコンテンツ */
.blog-single-main {
    min-width: 0;
}

/* アイキャッチ画像（大きく表示） */
.blog-single-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 32px;
    margin: 40px 0 56px;
}

.blog-single-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ブログ用ヘッダー（カテゴリバッジなし） */
.blog-single .custom-post-header {
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 32px;
}

.blog-single .custom-post-title {
    margin-bottom: 12px;
}

.blog-single .custom-post-meta {
    justify-content: flex-start;
}

/* ==========================================================================
   サイドバー
   ========================================================================== */

   .p-postList.-type-card, .p-postList.-type-thumb {
    display: block;
    margin-left: 0;
    margin-right: 0;
   }

   .-type-card .p-postList__item{
    width: 100%;
   }

   .p-postList .p-postList__title{
    font-weight: 500;
   }
   
   .-type-card .p-postList__title, .-type-list .p-postList__title, .-type-list2 .p-postList__title{
    font-size: 14px;
   }

   .p-pickupBanners__item .c-bannerLink, .p-postList__thumb{
    box-shadow: none;
   }


/* ==========================================================================
   モバイル対応
   ========================================================================== */

@media (max-width: 768px) {
    .blog-single-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-single-thumbnail {
        margin-bottom: 24px;
    }

    .blog-single .custom-post-header {
        text-align: center;
    }

    .blog-single .custom-post-meta {
        justify-content: center;
    }
}
