.news-article-wrapper{
    max-width:1500px;
    margin:auto;
    padding:60px 20px;
    color:#fff;
}

.news-breadcrumb{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:30px;
    font-size:14px;
    color:#aaa;
}

.news-breadcrumb a{
    color:#ccc;
    text-decoration:none;
}

.news-breadcrumb a:hover{
    color:#facc15;
}

.news-breadcrumb .active{
    color:#facc15;
}

.news-title{
    font-size:42px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:40px;
    text-transform:uppercase;
}

.news-meta-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.news-date{
    display:flex;
    align-items:center;
    gap:10px;
    color:#ccc;
}

.news-date i{
    color:#facc15;
}

.news-social{
    display:flex;
    gap:12px;
}

.news-social a{
    width:40px;
    height:40px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    transition:0.3s;
    text-decoration:none;
}

.news-social a:hover{
    background:#facc15;
    color:#000;
}

.news-feature-image{
    border-radius:28px;
    overflow:hidden;
    margin-bottom:60px;
}

.news-feature-image img{
    width:100%;
    max-height:700px;
    object-fit:cover;
}

.news-content{
    font-size:18px;
    line-height:2;
    color:#ddd;
}

.news-content p{
    margin-bottom:30px;
    text-align:justify;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin-top:60px;
}

.gallery-grid div{
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    border:1px solid rgba(255,255,255,0.1);
}

.gallery-grid img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    transition:0.5s;
}

.gallery-grid img:hover{
    transform:scale(1.08);
}

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.hidden{
    display:none;
}

.lightbox-inner{
    position:relative;
    max-width:90%;
}

.lightbox img{
    max-width:100%;
    max-height:85vh;
    border-radius:20px;
}

.lightbox button{
    position:absolute;
    background:rgba(0,0,0,0.6);
    color:#fff;
    border:none;
    width:50px;
    height:50px;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
}

.lightbox button:hover{
    background:#facc15;
    color:#000;
}

.lightbox-close{
    top:15px;
    right:15px;
}

.lightbox-prev{
    top:50%;
    left:-70px;
    transform:translateY(-50%);
}

.lightbox-next{
    top:50%;
    right:-70px;
    transform:translateY(-50%);
}

.lightbox-counter{
    position:absolute;
    bottom:-35px;
    right:0;
    color:#fff;
}