/* =====================================================
   試合詳細ページ スタイル
   single-match.css
   Editorial Sport: refined, sporty, versatile
   ===================================================== */

/* ===== ページ全体 ===== */
.single-match-wrap { padding: 40px 0 80px; }

/* ===== アイキャッチ画像 ===== */
.single-match-thumbnail {
    margin-bottom: 16px;
    border-radius: var(--radius, 8px);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-border, #e5e7eb);
    box-shadow: var(--shadow-card, 0 2px 12px rgba(0,0,0,0.05));
    line-height: 0;
}
.single-match-thumbnail__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================================
 *  スコアボード（横長レイアウト for PC）
 * ============================================================ */
.single-match-hero {
    background: #fff;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: var(--radius, 8px);
    box-shadow: var(--shadow-card, 0 2px 12px rgba(0,0,0,0.08));
    padding: 30px 40px 32px;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
}

.single-match-hero::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--color-primary, #0d2137);
    pointer-events: none;
}

/* 上段: 左に大会名タグ、右に日時 */
.single-match-hero__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.single-match-hero__competition {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius, 8px);
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--color-primary, #0d2137);
    color: #fff;
    line-height: 1.4;
}

.single-match-hero__date {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-text-light, #64748b);
    text-align: right;
}

/* スコアボード本体 */
.single-match-score-board {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 22px;
}

.single-match-team {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.single-match-team--home {
    align-items: flex-end;
    text-align: right;
}

.single-match-team--away {
    align-items: flex-start;
    text-align: left;
}

.single-match-team__label {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-text-light, #94a3b8);
}

.single-match-team__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text, #0f172a);
    line-height: 1.3;
    word-break: break-word;
}

.single-match-team--home .single-match-team__name {
    color: var(--color-primary, #0d2137);
}

/* 中央: 結果バッジ + スコア */
.single-match-score-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.match-result-card__badge.single-match-result {
    padding: 4px 18px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.single-match-score-row {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.single-match-score {
    font-size: 84px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text, #0f172a);
    font-family: var(--font-heading, 'Oswald', sans-serif);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.single-match-score--own {
    color: var(--color-primary, #0d2137);
}

.single-match-score-vs {
    font-size: 32px;
    font-weight: 600;
    color: #cbd5e1;
    flex-shrink: 0;
}

.single-match-score-vs--upcoming {
    font-size: 56px;
    color: var(--color-text-light, #94a3b8);
    letter-spacing: 0.02em;
    font-family: var(--font-heading, 'Oswald', sans-serif);
}

.single-match-score-board--upcoming .single-match-score-row {
    margin-top: 4px;
}

.single-match-result-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: var(--radius, 8px);
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.single-match-result-badge.upcoming {
    background: #f1f5f9;
    color: var(--color-text-light, #64748b);
    border: 1px solid var(--color-border, #e5e7eb);
}

/* 会場 */
.single-match-venue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    font-size: 13px;
    color: var(--color-text-light, #64748b);
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .single-match-hero { padding: 26px 24px 28px; }
    .single-match-score-board { gap: 16px; }
    .single-match-score { font-size: 64px; }
    .single-match-team__name { font-size: 15px; }
}

@media (max-width: 600px) {
    .single-match-hero { padding: 22px 18px 24px; }
    .single-match-hero__top { margin-bottom: 18px; }
    .single-match-hero__date { font-size: 12px; }
    .single-match-score-board {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
        margin-bottom: 16px;
    }
    .single-match-team { gap: 4px; }
    .single-match-team--home,
    .single-match-team--away {
        align-items: center;
        text-align: center;
    }
    .single-match-team__name { font-size: 15px; }
    .single-match-score { font-size: 56px; }
    .single-match-score-vs { font-size: 24px; }
    .single-match-score-vs--upcoming { font-size: 36px; }
    .match-result-card__badge.single-match-result {
        padding: 3px 14px;
        font-size: 0.78rem;
    }
}

/* ============================================================
 *  セクションカード共通
 * ============================================================ */
.single-match-meta-card {
    background: #fff;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: var(--radius, 8px);
    box-shadow: var(--shadow-card, 0 2px 12px rgba(0,0,0,0.05));
    padding: 30px 36px;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .single-match-meta-card {
        padding: 22px 20px;
    }
}

/* セクション見出し: JP + EN eyebrow + 短いアクセントバー */
.single-match-meta-card h3,
.single-match-meta-card__heading {
    position: relative;
    margin: 0 0 24px;
    padding: 0 0 14px;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text, #0f172a);
    letter-spacing: 0.04em;
    line-height: 1.35;
    border-bottom: 1px solid var(--color-border, #eef0f2);
    text-transform: none;
}

.single-match-meta-card__heading[data-en]::before {
    content: attr(data-en);
    display: block;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-primary, #0d2137);
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.85;
}

.single-match-meta-card h3::after,
.single-match-meta-card__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 36px;
    height: 2px;
    background: var(--color-primary, #0d2137);
}

@media (max-width: 600px) {
    .single-match-meta-card h3,
    .single-match-meta-card__heading {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* ============================================================
 *  試合情報テーブル
 * ============================================================ */
.single-match-meta-table {
    width: 100%;
    border-collapse: collapse;
}

.single-match-meta-table th,
.single-match-meta-table td {
    padding: 14px 8px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border, #eef0f2);
    vertical-align: middle;
}

.single-match-meta-table tr:last-child th,
.single-match-meta-table tr:last-child td {
    border-bottom: none;
}

.single-match-meta-table th {
    width: 140px;
    min-width: 110px;
    color: var(--color-text-light, #64748b);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: var(--font-heading, 'Oswald', sans-serif);
}

.single-match-meta-table td {
    color: var(--color-text, #0f172a);
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (max-width: 480px) {
    .single-match-meta-table tr {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border, #eef0f2);
    }
    .single-match-meta-table tr:last-child { border-bottom: none; }
    .single-match-meta-table th,
    .single-match-meta-table td {
        display: block;
        width: 100%;
        padding: 2px 0;
        border-bottom: none;
    }
    .single-match-meta-table th {
        font-size: 10px;
        margin-bottom: 4px;
    }
    .single-match-meta-table td {
        font-size: 14px;
    }
}

/* ============================================================
 *  得点者
 * ============================================================ */
.single-match-scorers {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-match-scorers li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 8px;
    margin: 0 -8px;
    border-bottom: 1px solid var(--color-border, #f1f5f9);
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.18s ease;
}

.single-match-scorers li:last-child { border-bottom: none; }
.single-match-scorers li:hover { background: #f8fafc; }

.scorer-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary, #0d2137);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    flex-shrink: 0;
    letter-spacing: 0;
}

.scorer-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text, #0f172a);
}

.scorer-time {
    color: var(--color-primary, #0d2137);
    font-size: 14px;
    margin-left: auto;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

/* ============================================================
 *  試合レポート本文
 * ============================================================ */
.match-report-content {
    font-size: 15px;
    line-height: 1.95;
    color: var(--color-text, #1f2937);
    letter-spacing: 0.012em;
}

.match-report-content p { margin-bottom: 1.4em; }
.match-report-content p:last-child { margin-bottom: 0; }

/* SP時は本文h2/h3を縮小して可読性とバランスを優先 */
@media (max-width: 600px) {
    .match-report-content h2 { font-size: 1.15rem; line-height: 1.5; }
    .match-report-content h3 { font-size: 1.05rem; line-height: 1.5; }
    .match-report-content h4 { font-size: 1rem; line-height: 1.5; }
}

/* ============================================================
 *  タイムライン (refined)
 * ============================================================ */
.match-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: timeline;
}

.match-timeline__item {
    display: grid;
    grid-template-columns: 64px 40px 1fr;
    align-items: center;
    gap: 16px;
    padding: 14px 10px;
    margin: 0 -10px;
    border-bottom: 1px solid var(--color-border, #f1f5f9);
    border-radius: 6px;
    transition: background 0.18s ease, transform 0.18s ease;
    position: relative;
}

.match-timeline__item:last-child { border-bottom: none; }

.match-timeline__item:hover {
    background: #f8fafc;
}

/* イベントタイプごとの左側アクセントバー */
.match-timeline__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 2px;
    background: transparent;
    transition: background 0.2s ease;
}

.match-timeline__item--goal::before         { background: #10b981; }
.match-timeline__item--assist::before       { background: #3b82f6; }
.match-timeline__item--yellow_card::before  { background: #eab308; }
.match-timeline__item--red_card::before     { background: #ef4444; }
.match-timeline__item--substitution::before { background: #06b6d4; }
.match-timeline__item--other::before        { background: #94a3b8; }

/* 時間 */
.match-timeline__time {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    color: var(--color-primary, #0d2137);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.match-timeline__time-num {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.match-timeline__time-unit {
    font-size: 14px;
    font-weight: 600;
    margin-left: 1px;
    opacity: 0.6;
}

/* アイコン丸 */
.match-timeline__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.match-timeline__item:hover .match-timeline__icon {
    transform: scale(1.05);
}

.match-timeline__icon svg {
    width: 18px;
    height: 18px;
}

.match-timeline__icon--goal {
    background: #ecfdf5;
    color: #047857;
}
.match-timeline__icon--assist {
    background: #eff6ff;
    color: #1d4ed8;
}
.match-timeline__icon--yellow_card {
    background: #fef9c3;
    color: #ca8a04;
}
.match-timeline__icon--red_card {
    background: #fee2e2;
    color: #dc2626;
}
.match-timeline__icon--substitution {
    background: #ecfeff;
    color: #0891b2;
}
.match-timeline__icon--other {
    background: #f1f5f9;
    color: #64748b;
}

/* 本体 */
.match-timeline__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.match-timeline__event-type {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--color-text-light, #64748b);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-heading, 'Oswald', sans-serif);
}

.match-timeline__player {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text, #0f172a);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

@media (max-width: 480px) {
    .match-timeline__item {
        grid-template-columns: 50px 34px 1fr;
        gap: 12px;
        padding: 12px 8px;
        margin: 0 -8px;
    }
    .match-timeline__time-num { font-size: 18px; }
    .match-timeline__time-unit { font-size: 12px; }
    .match-timeline__icon {
        width: 32px;
        height: 32px;
    }
    .match-timeline__icon svg {
        width: 15px;
        height: 15px;
    }
    .match-timeline__player { font-size: 14px; }
}

/* ============================================================
 *  出場選手
 * ============================================================ */
.match-lineup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

@media (max-width: 600px) {
    .match-lineup { grid-template-columns: 1fr; gap: 24px; }
}

.match-lineup__group-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary, #0d2137);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border-bottom: 2px solid var(--color-primary, #0d2137);
    padding-bottom: 10px;
    margin-bottom: 14px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
}

.match-lineup__list { list-style: none; margin: 0; padding: 0; }

.match-lineup__player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    border-bottom: 1px solid var(--color-border, #f1f5f9);
    font-size: 14px;
}

.match-lineup__player:last-child { border-bottom: none; }

.match-lineup__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary, #0d2137);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.match-lineup__number--empty {
    background: #f1f5f9;
    color: #94a3b8;
}

.match-lineup__name {
    flex: 1;
    font-weight: 600;
    color: var(--color-text, #0f172a);
    font-size: 14px;
}

.match-lineup__position {
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 3px;
    background: #f1f5f9;
    color: #475569;
    letter-spacing: 0.08em;
    font-family: var(--font-heading, 'Oswald', sans-serif);
}
.match-lineup__position--GK { background: #fef3c7; color: #92400e; }
.match-lineup__position--DF { background: #dbeafe; color: #1e3a8a; }
.match-lineup__position--MF { background: #d1fae5; color: #065f46; }
.match-lineup__position--FW { background: #fee2e2; color: #991b1b; }
.match-lineup__position--SW { background: #ede9fe; color: #5b21b6; }

/* ============================================================
 *  MVP
 * ============================================================ */
.match-mvp-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: var(--radius, 8px);
    padding: 22px 26px;
    position: relative;
    overflow: hidden;
}

.match-mvp-card::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 480px) {
    .match-mvp-card { flex-direction: column; gap: 14px; align-items: flex-start; padding: 20px; }
}

.match-mvp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #d97706;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.25);
    z-index: 1;
}

.match-mvp-icon svg {
    width: 26px;
    height: 26px;
}

.match-mvp-body { flex: 1; min-width: 0; position: relative; z-index: 1; }

.match-mvp-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b45309;
    margin-bottom: 4px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
}

.match-mvp-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text, #0f172a);
    margin-bottom: 6px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.match-mvp-reason {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

/* ============================================================
 *  監督コメント
 * ============================================================ */
.match-coach-quote {
    position: relative;
    padding: 26px 28px 22px 60px;
    background: #f8fafc;
    border-left: 3px solid var(--color-primary, #0d2137);
    border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
    margin: 0;
}

.match-coach-quote::before {
    content: '\201C';
    position: absolute;
    top: 6px;
    left: 20px;
    font-size: 64px;
    line-height: 1;
    color: var(--color-primary, #0d2137);
    opacity: 0.16;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
}

.match-coach-quote__text {
    font-size: 15px;
    line-height: 1.95;
    color: var(--color-text, #1f2937);
    margin: 0;
    letter-spacing: 0.012em;
}

.match-coach-quote__cite {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary, #0d2137);
    font-style: normal;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    letter-spacing: 0.06em;
}
.match-coach-quote__cite::before { content: '— '; opacity: 0.45; }

/* ============================================================
 *  ギャラリー
 * ============================================================ */
.match-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

@media (max-width: 600px) {
    .match-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.match-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    background: #f1f5f9;
}

.match-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.match-gallery-item:hover img { transform: scale(1.05); }

.match-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================================
 *  試合結果一覧へ戻るボタン
 * ============================================================ */
.single-match-back {
    display: flex;
    justify-content: center;
    margin: 44px 0 12px;
}

.single-match-back__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 28px 13px 22px;
    background: var(--color-primary, #0d2137);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid var(--color-primary, #0d2137);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.single-match-back__btn:hover,
.single-match-back__btn:focus-visible {
    background: #fff;
    color: var(--color-primary, #0d2137);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
    outline: none;
}

.single-match-back__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.single-match-back__btn:hover .single-match-back__icon,
.single-match-back__btn:focus-visible .single-match-back__icon {
    background: var(--color-primary, #0d2137);
    color: #fff;
    transform: translateX(-2px);
}

@media (max-width: 480px) {
    .single-match-back {
        margin: 32px 0 8px;
    }
    .single-match-back__btn {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
    }
}

/* ============================================================
 *  前後ナビゲーション
 * ============================================================ */
.single-match-nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 12px;
    margin-top: 36px;
}

.single-match-nav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: var(--radius, 8px);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text, #0f172a);
    text-decoration: none;
    transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    max-width: 46%;
    box-shadow: var(--shadow-card, 0 1px 2px rgba(0,0,0,0.04));
    letter-spacing: 0.02em;
}

.single-match-nav a span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.single-match-nav a svg {
    flex-shrink: 0;
    color: var(--color-primary, #0d2137);
    transition: transform 0.18s ease;
}

.single-match-nav a:hover {
    border-color: var(--color-primary, #0d2137);
    color: var(--color-primary, #0d2137);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.single-match-nav .nav-prev:hover svg { transform: translateX(-2px); }
.single-match-nav .nav-next:hover svg { transform: translateX(2px); }

.single-match-nav .nav-next { margin-left: auto; }

@media (max-width: 480px) {
    .single-match-nav {
        flex-direction: column;
        align-items: stretch;
    }
    .single-match-nav a {
        max-width: 100%;
        justify-content: center;
    }
    .single-match-nav .nav-next { margin-left: 0; }
}
