/* 監修者表示専用CSS - .entry-contentからの完全分離 */

/* 監修者セクション全体の分離 */
.article-supervisors {
    /* コンテナリセット */
    all: initial;
    display: block;
    font-family: inherit;
    
    /* 基本スタイル */
    margin: 30px 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* 監修者タイトル */
.article-supervisors .supervisors-title {
    all: initial;
    display: block;
    font-family: inherit;
    
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
}

/* グリッドレイアウト */
.article-supervisors .experts-grid {
    all: initial;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

