/* 共通ブロック枠 */
.champion-block {
    width: 80%;
    max-width: 800px;
    background: #fff9ef;
    padding: 30px;
    margin: 50px auto;
    border-radius: 8px;
}

/* タイトルバー（赤帯） */
.champion-title {
    background-color: #e60012;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 0 4px 4px 0;
    margin-bottom: 20px;
}

/* 上段：選手画像横並び */
.champion-img-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-direction: row;
}

.champion-img-row img {
    width: 50%;
    max-width: 200px;
    height: auto;
    display: block;
}

/* 中央：選手名（アイコン＋名前） */
.champion-name {
    font-size: 18px;
    font-weight: bold;
    color: #e60012;
    margin-bottom: 10px;
}

.champion-name .icon {
    margin-right: 6px;
}

/* 水平線 */
.champion-divider {
    border: none;
    border-top: 1px solid #e6b48c;
    margin: 10px 0 20px;
}

/* 下段：左テキスト / 右試合画像 */
.champion-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* 試合情報テキスト（左） */
.champion-details {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;
    color: #222;
    min-width: 260px;
}

/* VS 行のみ強調 */
.opponent {
    color: #e60012;
    font-weight: bold;
    margin: 10px 0;
}

/* 試合画像（右） */
.champion-match-img {
    width: 300px;
}

.champion-match-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 戻るリンク */
.back-to-player {
    text-align: center;
    margin-top: 40px;
}

.back-to-player a {
    color: #e60012;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}
