/* =========================================
   SUBNAV DARK (JIKA TANPA HERO)
========================================= */
body.no-hero .subnav{
    position:relative;
    top:0;

    background:#0f172a;
    border-bottom:1px solid rgba(255,255,255,0.1);
    backdrop-filter:none;
}

body.no-hero .subnav a{
    color:#e5e7eb;
}

body.no-hero .subnav a::after{
    background:#dc2626;
}

body.no-hero .subnav-search input{
    background:#1e293b;
    color:#fff;
}


/* =========================================
   PAGE WRAPPER
========================================= */
.page{
    max-width:1000px;
    margin:auto;
}


/* =========================================
   BREADCRUMB
========================================= */
.breadcrumb{
    font-size:13px;
    margin-bottom:12px;
    color:#6b7280;

    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.breadcrumb a{
    color:#6b7280;
    text-decoration:none;
}

.breadcrumb a:hover{
    color:#dc2626;
}

.breadcrumb .active{
    color:#111;
    font-weight:500;
}


/* =========================================
   TITLE
========================================= */
.page-title{
    font-size:30px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:20px;
    position:relative;
}

.page-title::after{
    content:'';
    display:block;
    width:80px;
    height:3px;
    margin-top:10px;
    background:#dc2626;
}


/* =========================================
   POST DETAIL
========================================= */
.post-detail{
    max-width:800px;
    margin:auto;
}

/* META */
.post-meta{
    font-size:13px;
    color:#6b7280;
    margin-bottom:18px;
}

/* IMAGE */
.post-image img{
    width:100%;
    border-radius:14px;
    margin-bottom:20px;
}

/* CONTENT */
.post-content{
    font-size:15.5px;
    line-height:1.8;
    color:#111827;
}

.post-content p{
    margin-bottom:16px;
}

/* heading dalam artikel */
.post-content h2{
    font-size:20px;
    margin:22px 0 10px;
}

.post-content h3{
    font-size:18px;
    margin:18px 0 8px;
}

/* gambar di isi */
.post-content img{
    width:100%;
    border-radius:10px;
    margin:18px 0;
}


/* =========================================
   SHARE BUTTON
========================================= */
.post-share{
    margin-top:28px;
    display:flex;
    align-items:center;
    gap:10px;
}

.post-share span{
    font-size:13px;
    color:#6b7280;
}

.post-share a{
    width:34px;
    height:34px;
    border-radius:50%;

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

    background:#f3f4f6;
    color:#111;

    text-decoration:none;
    transition:.2s;
}

.post-share a:hover{
    transform:scale(1.1);
}

/* warna brand */
.post-share a:nth-child(2):hover{
    background:#25D366;
    color:#fff;
}

.post-share a:nth-child(3):hover{
    background:#1877f2;
    color:#fff;
}


/* =========================================
   RELATED NEWS
========================================= */
.related-title{
    margin-top:40px;
    margin-bottom:16px;
    font-size:18px;
    font-weight:600;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.related-card{
    display:flex;
    gap:10px;
    text-decoration:none;
    color:#111;
}

.related-card img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

.related-card h4{
    font-size:13px;
    margin-bottom:4px;
}

.related-card span{
    font-size:11px;
    color:#6b7280;
}

.related-card:hover{
    opacity:0.8;
}


/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:768px){

    .page-title{
        font-size:22px;
    }

    .post-detail{
        max-width:100%;
    }

    .related-grid{
        grid-template-columns:1fr;
    }

}
/* ===== LAYOUT FULL ===== */
.page-full{
    display:grid;
    grid-template-columns: 1fr 320px;
    gap:40px;

    max-width:1200px;
    margin:30px auto;
    padding:0 20px;
}

/* ===== CONTENT ===== */
.page-content{
    max-width:760px;
}

/* ===== SIDEBAR ===== */
.page-sidebar{
    position:sticky;
    top:100px;
    height:fit-content;
}

/* ===== SIDEBAR TITLE ===== */
.sidebar-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:14px;
}

/* ===== ITEM ===== */
.sidebar-item{
    display:flex;
    gap:10px;
    margin-bottom:12px;
    text-decoration:none;
    color:#111;
}

.sidebar-item img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

.sidebar-item h4{
    font-size:13px;
    margin-bottom:4px;
}

.sidebar-item span{
    font-size:11px;
    color:#6b7280;
}

.sidebar-item:hover{
    opacity:0.8;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .page-full{
        grid-template-columns:1fr;
    }

    .page-sidebar{
        position:relative;
        top:0;
    }
}
.page-full{
    display:grid;
    grid-template-columns: 1fr 300px;
    gap:40px;

    max-width:1200px;
    margin:30px auto;
    padding:0 20px;
}

.page-sidebar{
    position:sticky;
    top:100px;
    height:fit-content;
}

.sidebar-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:14px;
}

.sidebar-item{
    display:flex;
    gap:10px;
    margin-bottom:12px;
    text-decoration:none;
    color:#111;
}

.sidebar-item img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

.sidebar-item h4{
    font-size:13px;
}

.sidebar-item span{
    font-size:11px;
    color:#6b7280;
}

.sidebar-item:hover{
    opacity:0.8;
}

.map-box{
    margin-top:20px;
    border-radius:14px;
    overflow:hidden;
}

@media(max-width:900px){
    .page-full{
        grid-template-columns:1fr;
    }

    .page-sidebar{
        position:relative;
        top:0;
    }
}
.stadium-coord{
    font-size:13px;
    color:#6b7280;
    margin-top:6px;
}

.map-link{
    margin-left:10px;
    font-size:12px;
    color:#dc2626;
    text-decoration:none;
}

.map-link:hover{
    text-decoration:underline;
}
/* =============================
TEAM PARTICIPANTS
============================= */

.tp-wrapper{
    max-width:1200px;
    margin:auto;
    padding:30px 15px;
}

.tp-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
}

.tp-grid{
    display: grid;
    gap: 20px;

    /* auto responsive */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));

    /* batas max lebar container biar ga lebih dari 5 kolom */
    max-width: 1100px;
    margin: 0 auto;
}

.tp-card{
    background:#fff;
    border-radius:14px;
    padding:18px 12px;
    text-align:center;
    text-decoration:none;
    color:#111;
    transition:.2s;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
}

.tp-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.tp-logo{
    width:98px;
    height:98px;
    margin:0 auto 12px;
    border-radius:50%;
    overflow:hidden;
    background:#fff;
    border:1px solid #eee;
    display:flex;
    align-items:center;
    justify-content:center;
}

.tp-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.tp-name{
    font-size:14px;
    font-weight:600;
    line-height:1.35;
}

.tp-empty{
    margin-top:20px;
    color:#777;
}

/* MOBILE */
@media(max-width:768px){

    .tp-title{
        font-size:22px;
        margin-bottom:18px;
    }

    .tp-grid{
        grid-template-columns:repeat(3,1fr);
        gap:14px;
    }

    .tp-card{
        padding:14px 8px;
    }

    .tp-logo{
        width:64px;
        height:64px;
        margin-bottom:10px;
    }

    .tp-name{
        font-size:12px;
    }
}