* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #111;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ================= HEADER ================= */

.site-header {
    width: 100%;
    padding: 10px 0;
    z-index: 10;
}

/* Basic styling for the navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;    
}

/* Style the logo */
.logo a {
    color: #000;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

/* Style the navigation links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}


.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Style the burger menu icon for small screens */

.mobile_icon{
    display: flex;
    gap: 15px;
    align-items: center;
}


.nav-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #ff5c1a;
    padding: 5px 12px;
    border-radius: 40px;
    
}
.nav-btn a{
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
.nav-btn span{
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    font-size: 0;
}
.nav-btn span svg{
    width: 20px;
    height: 20px;
    stroke: #ff5c1a;
    font-size: 0;
    
}
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
}

/* Media query for small screens */
@media screen and (max-width: 768px) {
    .site-header{
        padding: 5px 0;
    }
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav-active {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 56px;
        right: 2%;
        width: auto;
        min-width: 200px;
        padding: 10px;
        gap: 10px;   
        border-radius: 5px;     
        
    }

    .nav-active a {
        color: #000;
    }

    .nav-active li {        
        margin: 0;
        
    }
    .nav-active li:not(:last-child){
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .nav-btn {
        padding: 3px 10px;
    }
    .nav-btn a{
        font-size: 16px;
        font-weight: 600;
    }
}
/* Media query for small screens */


.post_loop{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.post_loop .post-thumbnail img{
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* Single Post */


.post_layout{
    display: grid;
    grid-template-columns: 2.9fr 1.1fr;
    gap: 20px;
    margin-top: 20px;
}

.entry_content p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;     
}