*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#111;
}

a{
    text-decoration:none;
}

.container{
    width:95%;
    max-width:1350px;
    margin:auto;
}

.top-bar{
    padding:15px 0;
    font-size:13px;
    color:#777;
    background:#F5F5F5;
}

.header{
    padding-bottom:20px;
}

.logo a{
    font-size:42px;
    font-weight:700;
    color:#009688;
}

.tagline{
    margin-top:5px;
    color:#666;
    font-size:13px;
}

.navbar{
    background:#120306;
}

.navbar ul{
    display:flex;
    flex-wrap:wrap;
    list-style:none;
    gap:30px;
    padding:16px 0;
}

.navbar ul li a{
    color:#fff;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    transition:0.3s;
}

.navbar ul li a:hover{
    color:#00bfa5;
}

.main-layout{
    display:flex;
    gap:40px;
    padding:40px 0;
}

.content{
    width:70%;
}

.sidebar{
    width:30%;
}

.posts-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.post-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    border-radius:4px;
}

.category a{
    margin:12px 0;
    font-size:11px;
    font-weight:700;
    color:#009688;
    text-transform:uppercase;
}

.post-card h2{
    font-size:24px;
    line-height:1.4;
    margin-bottom:12px;
}

.post-card h2 a{
    color:#111;
}

.post-card p{
    color:#666;
    line-height:1.7;
    font-size:14px;
    margin-bottom:15px;
}

.read-btn{
    display:inline-block;
    background:#009688;
    color:#fff;
    padding:10px 18px;
    border-radius:4px;
    font-size:12px;
    font-weight:600;
}

.sidebar-box{
    margin-bottom:40px;
}

.sidebar-box h3{
    font-size:28px;
    margin-bottom:20px;
}

.recent-post{
    margin-bottom:15px;
}

.recent-post a{
    color:#444;
    font-size:16px;
    line-height:1.6;
}

.single-post img{
    width:100%;
    margin-bottom:20px;
    border-radius:5px;
}

.single-post h1{
    font-size:38px;
    margin-bottom:15px;
}

.date{
    color:#777;
    margin-bottom:25px;
    font-size:14px;
}

.post-content{
    line-height:2;
    font-size:16px;
    color:#444;
}

.page-title{
    margin-bottom:30px;
    font-size:38px;
}

.footer{
    background:#111;
    color:#fff;
    padding:25px 0;
    margin-top:50px;
    text-align:center;
}

@media(max-width:1000px){

    .main-layout{
        flex-direction:column;
    }

    .content{
        width:100%;
    }

    .sidebar{
        width:100%;
    }

    .posts-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .logo a{
        font-size:32px;
    }

    .post-card h2{
        font-size:22px;
    }

    .single-post h1{
        font-size:28px;
    }

}

/* NEXT ARTICLE */

.next-article{
    margin-top:20px;
    padding-top:10px;
    /*border-bottom:1px solid #eee;*/
}

.next-article span{
    color:#009688;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
}

.next-article h2{
    margin-top:10px;
    margin-bottom:20px;
    font-size:30px;
    line-height:1.5;
}

.next-article h2 a{
    color:#111;
}

/* ARTICLE NAVIGATION */

.article-navigation{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:50px;
    margin-bottom:20px;
}

.nav-btn{
    background:#009688;
    color:#fff;
    padding:12px 22px;
    border-radius:4px;
    font-size:13px;
    font-weight:600;
    transition:0.3s;
}

.nav-btn:hover{
    background:#00796b;
}

/* RELATED POSTS */

.related-posts{
    margin-top:60px;
}

.related-title{
    font-size:34px;
    margin-bottom:30px;
}

.related-posts .post-card h2{
    font-size:20px;
}

@media(max-width:768px){

    .article-navigation{
        flex-direction:column;
    }

    .next-article h2{
        font-size:24px;
    }

}