/* 大会出場実績（開催要項ページと共通の土台） */
.match-result-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.match-result-item {
    margin: 0;
    padding: 16px 18px;
    background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 100%);
    border: 1px solid #fcd34d;
    border-radius: 14px;
}

.match-result-date {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #9a3412;
    margin-bottom: 4px;
}

.match-result-event {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
}

.match-result-class {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #b45309;
}

.match-support-box {
    margin: 0;
    padding: 16px 18px;
    background: #f8fafc;
    border: 1px solid var(--match-border);
    border-radius: 14px;
}

.match-support-box p {
    margin: 0;
    color: #374151;
}

.match-support-box p + p {
    margin-top: 10px;
}
