/* =============================
   MATCH / RESULT / DETAIL
   ============================= */

.results-list,
.match-page,
.match-detail{
    padding:120px 8%;
}

.result-item{
    display:flex;
    align-items:center;
    gap:40px;
    background:white;
    border-radius:20px;
    padding:30px;
    margin-bottom:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.result-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.result-item img{
    width:360px;
    height:220px;
    object-fit:cover;
    border-radius:15px;
}

.result-info{ flex:1; }

.result-date{
    color:#777;
    margin-bottom:15px;
}

.result-info h2{
    font-size:34px;
    color:#111;
    margin-bottom:15px;
}

.result-info h2 span{
    color:#0d3b2a;
    font-size:42px;
    font-weight:900;
}

.result-info p{ margin-bottom:20px; }

.result-info a{
    color:#0d3b2a;
    text-decoration:none;
    font-weight:bold;
}

.match-tabs{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:60px;
}

.match-tab{
    padding:16px 50px;
    border:2px solid #0d3b2a;
    background:white;
    color:#0d3b2a;
    border-radius:50px;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    transition:.3s;
}

.match-tab.active,
.match-tab:hover{
    background:#0d3b2a;
    color:white;
}

.match-tab-content{ display:none; }
.match-tab-content.active{ display:block; }

.schedule-item{
    display:flex;
    align-items:center;
    gap:40px;
    background:white;
    border-radius:20px;
    padding:35px;
    margin-bottom:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.schedule-date{
    width:120px;
    height:120px;
    background:#0d3b2a;
    color:white;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.schedule-date span{
    font-size:34px;
    font-weight:900;
}

.schedule-date small{
    margin-top:8px;
    letter-spacing:2px;
}

.schedule-info h2{
    font-size:34px;
    margin:12px 0 18px;
}

.schedule-info h2 span{
    color:#0d3b2a;
    font-size:40px;
    font-weight:900;
    margin:0 10px;
}

.schedule-info p{
    color:#666;
    margin-bottom:8px;
}

.match-photo{
    width:100%;
    border-radius:20px;
    margin-bottom:40px;
}

.match-detail h2{
    font-size:48px;
    color:#0d3b2a;
    margin-bottom:20px;
}

.match-info{
    color:#777;
    margin-bottom:40px;
}

.match-detail ul{
    margin:20px 0 40px 25px;
}

.match-detail li{
    margin-bottom:12px;
}

.match-detail p{
    line-height:2;
}

.goal-box{
    margin:70px 0;
}

.goal-box h2{
    color:#0d3b2a;
    font-size:40px;
    margin-bottom:35px;
}

.goal-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.goal-player{
    background:white;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.goal-player:hover{
    transform:translateY(-8px);
}

.goal-player span{
    font-size:45px;
}

.goal-player h3{
    margin:18px 0;
    color:#111;
}

.goal-player strong{
    color:#0d3b2a;
    font-size:22px;
}

.starting-members{
    margin-top:80px;
}

.starting-members h2{
    color:#0d3b2a;
    font-size:38px;
    margin-bottom:40px;
}

.member-group{
    display:flex;
    margin-bottom:25px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.position{
    width:120px;
    background:#0d3b2a;
    color:#fff;
    font-size:24px;
    font-weight:bold;
    display:flex;
    justify-content:center;
    align-items:center;
}

.players{
    flex:1;
    padding:25px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.players span{
    background:#f5f5f5;
    padding:10px 18px;
    border-radius:30px;
    font-weight:bold;
}

@media (max-width:900px){
    .results-list,
    .match-page,
    .match-detail{
        padding:80px 6%;
    }

    .result-item,
    .schedule-item{
        flex-direction:column;
        align-items:stretch;
        gap:25px;
        padding:22px;
    }

    .result-item img{
        width:100%;
        height:auto;
        max-height:260px;
    }

    .result-info h2{
        font-size:26px;
    }

    .result-info h2 span{
        font-size:34px;
    }

    .match-tabs{
        gap:12px;
        margin-bottom:40px;
    }

    .match-tab{
        flex:1;
        padding:14px 10px;
        font-size:14px;
    }

    .schedule-date{
        width:100px;
        height:100px;
    }

    .schedule-date span{ font-size:28px; }

    .schedule-info h2{
        font-size:24px;
        line-height:1.5;
    }

    .schedule-info h2 span{ font-size:28px; }

    .goal-list{
        grid-template-columns:1fr;
    }

    .member-group{
        flex-direction:column;
    }

    .position{
        width:100%;
        padding:14px;
    }
}

@media (max-width:480px){
    .result-info h2{ font-size:22px; }
    .result-info h2 span{ font-size:28px; }
}
.no-photo{
    width:100%;
    height:450px;
    border-radius:20px;
    background:linear-gradient(135deg,#1b1b1b,#3a3a3a);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:40px;
}

.no-photo span{
    color:#fff;
    font-size:42px;
    font-weight:800;
    letter-spacing:8px;
    opacity:.4;
}
.result-item.no-image{
    display:block;
}

.result-item.no-image .result-info{
    width:100%;
    padding:50px;
    text-align:center;
}

.result-item.no-image h2{
    font-size:48px;
}

.result-item.no-image .result-date,
.result-item.no-image p{
    text-align:center;
}
.match-photo img{
    width:100%;
    height:520px;
    object-fit:cover;
    object-position:center 35%;
    border-radius:10px;
    display:block;
}