/* ==================================================
   combo-item をセル化する（2列×2行）
================================================== */
.combo-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 4px;
}

/* ==================================================
   左セル：damage（2行貫通・完全中央）
================================================== */
.combo-left {
    grid-row: 1 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: bold;
    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==================================================
   右上セル：command
================================================== */
.combo-right-top {
    grid-column: 2;
    grid-row: 1;

    font-size: 13px;
    line-height: 1.4;

    padding: 4px 0;
}

/* ==================================================
   右下セル：damage / white / actual / note / video
================================================== */
.combo-right-bottom {
    position: relative;
top: 4px;
	padding-top: 6px;


    grid-column: 2;
    grid-row: 2;

    font-size: 13px;
    line-height: 1.35;
    text-align: right;
    padding-right: 8px;
    margin-top: 2px;

    border-top: 1px solid rgba(255, 255, 255, 0.03);
}






/* ==================================================
   右下セル内（横並び）
================================================== */
.combo-right-bottom span {
    margin-left: 10px;
    white-space: nowrap;
}

/* note の色を薄い青に */
.detail-note {
    color: #9fd3ff;
}



/* ==================================================
   h3 と combo-item の余白制御
================================================== */
.combo-item + h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ==================================================
   参考動画（spanラッパー）
================================================== */
.detail-video {
    display: inline-flex;
    align-items: center;
    margin-left: 8px; /* note との距離 */
}

/* ================================
 * 参考動画チップ（最終確定）
 * ================================ */
.detail-video-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* ★ 左右を均等に固定 */
    padding: 4px 10px;

    border-radius: 999px;
    border: 1px solid #666;
    background: #1e1e1e;

    color: #eaeaea;
    text-decoration: none;

    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

/* ▶ アイコン（左には一切触らない） */
.detail-video-chip .video-icon {
    display: inline-block;
    line-height: 1;
    margin: 0;               /* ★ 左余白ゼロ保証 */
    padding: 0;
}

/* ▶ と文字の間「だけ」2px */
.detail-video-chip .video-text {
    display: inline-block;
    margin-left: 2px;        /* ★ここだけ */
    line-height: 1;
}

/* hover */
.detail-video-chip:hover {
    background: #2a2a2a;
    border-color: #888;
}


/* ==================================================
   combo-item をカード化（枠・背景・余白・影）
================================================== */
.combo-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 4px;

    /* カード化追加 */
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 10px 12px;
    background: #1a1a1a;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

/* hover時の反応（任意） */
.combo-item:hover {
    background: #222;
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
}

/* ==================================================
   左セル：damage（2行貫通・完全中央）
================================================== */
.combo-left {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;

    font-size: 20px;
    font-weight: bold;
    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 !important;
padding-right: 4px !important

}





/* ==================================================
   右上セル：command
================================================== */
.combo-right-top {
    grid-column: 2;
    grid-row: 1;

    font-size: 13px;
    line-height: 1.4;
    padding: 4px 0;
}



/* ==================================================
   h3 と combo-item の余白制御
================================================== */
.combo-item + h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ==================================================
   参考動画（spanラッパー）
================================================== */
.detail-video {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

/* 動画チップ */
.detail-video-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #666;
    background: #1e1e1e;
    color: #eaeaea;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.detail-video-chip .video-icon {
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.detail-video-chip .video-text {
    display: inline-block;
    margin-left: 2px;
    line-height: 1;
}

.detail-video-chip:hover {
    background: #2a2a2a;
    border-color: #888;
}


.entry-content .combo-item {
    margin-bottom: 6px !important;
}


/* 偶数番目のカード */
.entry-content .combo-item:nth-child(odd) {
    background: #1a1a1a !important; /* 現状の色 */
}

.entry-content .combo-item:nth-child(even) {
    background: #262626 !important; /* しっかり明るい */
}

