.newsDetail{
    padding:100px 0;
    background:#f7f7f7;
}

.newsDetail-nav{
    display:flex;
    justify-content:space-between;
    margin-bottom:55px;
    padding-bottom:20px;
    border-bottom:1px solid #ddd;
}

.newsDetail-nav a{
    color:#222;
    font-weight:700;
    transition:.3s;
}

.newsDetail-nav a:hover{
    color:var(--orange);
}

.newsDetail-header{
    max-width:850px;
    margin-bottom:45px;
}

.newsDetail-meta{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.newsDetail-meta span{
    background:#fff;
    border:1px solid #e5e5e5;
    padding:8px 14px;
    font-size:13px;
    font-weight:700;
    border-radius: 20px;
}

.newsDetail-header h2{
    font-size:44px;
    line-height:1.35;
    color:#222;
    margin:0 0 20px;
}

.newsDetail-header p{
    color:#666;
    line-height:2;
}

.newsDetail-cover{
    margin-bottom:50px;
    overflow:hidden;
    aspect-ratio:16/9;
    background:#ddd;
    border-radius: 30px;
}

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

.newsDetail-content{
    background:#fff;
    border:1px solid #e8e8e8;
    padding:50px;
    margin-bottom:60px;
    border-radius: 30px;
}

.newsDetail-content p{
    color:#666;
    line-height:2.1;
    margin-bottom:24px;
}

.newsDetail-content p:last-child{
    margin-bottom:0;
}

.newsDetail-back{
    text-align:center;
}

.newsDetail-back a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:56px;
    background:var(--yellow);
    color:#111;
    font-weight:900;
    transition:.3s;
    border-radius: 20px;
}

.newsDetail-back a:hover{
    background:var(--orange);
    color:#fff;
}

/* RWD */

@media(max-width:768px){

.newsDetail{
    padding:70px 0;
}

.newsDetail-nav{
    flex-direction:column;
    gap:15px;
}

.newsDetail-header h2{
    font-size:32px;
}

.newsDetail-content{
    padding:30px 24px;
}

}

@media(max-width:480px){

.newsDetail-header h2{
    font-size:28px;
}

.newsDetail-meta{
    flex-wrap:wrap;
}

.newsDetail-content{
    padding:24px 20px;
}

.newsDetail-content p{
    font-size:14px;
}

.newsDetail-back a{
    width:100%;
    min-width:0;
}

}