/* ==================================================
   NEWS DETAIL PAGE — CLEAN EDITORIAL
================================================== */

.news-detail-page{
    background:
            linear-gradient(
                    180deg,
                    #1a0f0a 0%,
                    #2b150e 45%,
                    #120807 100%
            );

    padding:90px 5vw 160px;
    color:#ffffff;
}


/* ==================================================
   HEADER
================================================== */

.news-detail-header{
    max-width:760px;
    margin:0 auto 32px;
    text-align:center;
}

.news-detail-date{
    display:block;
    font-size:11px;
    letter-spacing:.3em;
    color:#c8a46a;
    margin-bottom:12px;
}

.news-detail-title{
    font-size:32px;
    line-height:1.3;
    letter-spacing:.08em;
    color:#efd9b0;
}


/* ==================================================
   HERO IMAGE — SQUARE STYLE
================================================== */

.news-detail-hero{
    width:80%;
    margin:0 auto 50px;
    border-radius:22px;
    overflow:hidden;
    box-shadow: 0 22px 50px rgba(0,0,0,.55);
}

.news-detail-hero img{
    width:100%;
    object-fit:cover;
    display:block;
}


/* ==================================================
   CONTENT — READING FLOW
================================================== */

.news-detail-content{
    max-width:80%;
    margin:0 auto;

    font-size:15px;
    line-height:1.9;
    letter-spacing:.02em;
    color:#f3ede6;
}

.news-detail-content p{
    margin-bottom:26px;
}


/* ==================================================
   DIVIDER
================================================== */

.news-detail-page .news-divider{
    width:100%;
    height:2px;
    margin:90px 0 70px;

    background:linear-gradient(
            90deg,
            transparent,
            #c8a46a,
            transparent
    );
    opacity:.7;
}


/* ==================================================
   RELATED NEWS
================================================== */

.news-detail-page .related-news{
    max-width:1100px;
    margin:0 auto;
}

.related-news-header{
    text-align:center;
    margin-bottom:46px;
}

.related-news-header h3{
    font-size:18px;
    letter-spacing:.35em;
    color:#efd9b0;
    margin-bottom:10px;
}

.related-news-sub{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    font-size:11px;
    letter-spacing:.2em;
    color:#c8a46a;
}

.related-news-sub .dot{
    width:6px;
    height:6px;
    background:#c8a46a;
    border-radius:50%;
}


/* ==================================================
   RELATED GRID
================================================== */

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

.related-news-card{
    background:#120807;
    border-radius:16px;
    overflow:hidden;

    box-shadow:0 14px 30px rgba(0,0,0,.45);
    transition:.35s ease;
}

.related-news-card:hover{
    transform:translateY(-6px);
}

.related-news-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.related-news-content{
    padding:16px 18px 20px;
}

.related-news-content .news-date{
    font-size:10px;
    letter-spacing:.25em;
    color:#c8a46a;
}

.related-news-content h4{
    margin-top:6px;
    font-size:13px;
    line-height:1.45;
    letter-spacing:.08em;
}


/* ==================================================
   MOBILE
================================================== */

@media(max-width:900px){

    .news-detail-hero{
        width:280px;
    }

    .news-detail-title{
        font-size:24px;
    }

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

.news-back{
    max-width:700px;
    margin:40px auto 0;
}

.news-back a{
    font-size:11px;
    letter-spacing:.3em;
    text-transform:uppercase;

    color:#c8a46a;
    text-decoration:none;

    position:relative;
}

.news-back a::after{
    content:"";
    display:block;
    width:0;
    height:1px;
    background:#c8a46a;

    transition:.3s ease;
    margin-top:6px;
}

.news-back a:hover::after{
    width:100%;
}
