*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#050505;
    color:#f5e8d0;
    font-family:
    "Yu Mincho",
    serif;
    overflow-x:hidden;
}



/* HERO */

.news-hero{

    position:relative;

    height:55vh;

    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.75)
    ),
    url("news-bg.jpg");

    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
}

.hero-nav{

    position:absolute;

    top:40px;
    right:80px;

    display:flex;

    gap:40px;

    z-index:10;
}

.hero-nav a{

    color:#f5e8d0;

    text-decoration:none;

    letter-spacing:3px;

    font-size:14px;

    transition:.3s;
}

.hero-nav a:hover{

    color:#d7b27a;
}

.hero-content{

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    text-align:center;
}

.hero-sub{

    color:#d7b27a;

    letter-spacing:4px;

    margin-bottom:15px;
}

.hero-content h1{

    font-size:90px;

    color:#d7b27a;

    font-weight:300;
}

.hero-line{

    width:220px;

    height:1px;

    background:#d7b27a;

    margin:25px auto;
}



/* ARTICLE */

.article-section{

    padding:120px 20px;
}

.article-container{

    max-width:900px;

    margin:auto;
}

.article-date{

    color:#d7b27a;

    font-size:15px;

    letter-spacing:2px;

    margin-bottom:25px;
}

.article-container h2{

    font-size:52px;

    font-weight:400;

    line-height:1.5;

    margin-bottom:40px;
}

.article-divider{

    width:100%;

    height:1px;

    background:
    rgba(215,178,122,.2);

    margin-bottom:60px;
}

.article-body p{

    color:#ddd;

    font-size:18px;

    line-height:2.8;

    margin-bottom:35px;
}



/* BACK BUTTON */

.back-btn{

    display:inline-block;

    margin-top:50px;

    padding:18px 40px;

    border:1px solid #d7b27a;

    color:#d7b27a;

    text-decoration:none;

    transition:.4s;
}

.back-btn:hover{

    background:#d7b27a;

    color:#050505;
}



/* FOOTER */

footer{

    text-align:center;

    padding:100px 20px;

    border-top:
    1px solid rgba(215,178,122,.2);
}

footer p{

    color:#d7b27a;

    margin-bottom:20px;
}

footer h2{

    color:#d7b27a;

    font-size:50px;

    font-weight:400;
}



/* MOBILE */

@media(max-width:900px){

.hero-overlay{
    pointer-events:none;
}

.hero-nav{
    position:static;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px 20px;
    width:90%;
    margin:20px auto 0;
    z-index:100;
}

.hero-nav a{
    display:block;
    text-align:center;
    font-size:13px;
    letter-spacing:2px;
}

.hero-content h1{
    font-size:48px;
    line-height:1.2;
    white-space:nowrap;
}

.hero-sub{
    font-size:15px;
}

.news-hero{
    height:280px;
}

.article-section{
    padding:70px 20px;
}

.article-container h2{
    font-size:30px;
    line-height:1.5;
}

.article-date{
    font-size:14px;
}

.article-body p{
    font-size:15px;
    line-height:2.2;
}

.back-btn{
    width:100%;
    text-align:center;
    padding:16px;
}

footer h2{

    font-size:34px;
}

.hero-content h1{

    font-size:60px;
}

.article-container h2{

    font-size:34px;
}

.article-body p{

    font-size:16px;

    line-height:2.4;
}

}