:root {
    --orange: rgba(255, 106, 60, 1);
}

.post-content{
    margin-top: 84px;
    padding-top: 40px;
}

.post-content .post-back{
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: var(--orange);
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
}

.post-content .post-back::before{
    content: '';
    width: 20px;
    height: 20px;
    background: url("../img/chevron-left.svg") center no-repeat;
    display: inline-block;
    margin-right: 4px;
}

.post-content h1{
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 36px;
    line-height: 110%;
    margin-bottom: 10px;  
}

.post-content .subtitle{
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 15px;
}

.post-thumbnail{
    object-fit: cover;
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.post-content-main{
    margin-top: 15px;
    display: flex;
    flex-direction: column-reverse;
}

.post-content-main p,
.post-content-main li{
    position: relative;
    font-family: "Gilroy";
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}

.post-content-main h2{
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    margin-bottom: 13px;
    margin-top: 20px;
}

.post-content-main h2:first-of-type{
    margin-top: 0;
}

.post-content-main ul li,
.post-content-main ol li{
    list-style-type: inherit;
    list-style-position: inside;
}

.post-content-main h3{
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 10px;
}

.post-content-main img{
    margin-top: 25px;
    margin-bottom: 25px;
}

.sidebar{
    width: 100%;
    position: relative;
}

.entry-meta{
    display: flex;
    flex-direction: column;
}

.entry-content{
    width: 100%;
}

.post-tags{
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.post-tags a{
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--orange);
    padding: 2px 6px;
    border: 1px solid rgba(244, 230, 227, 1);
    border-radius: 6px;
    text-decoration: none;
}

.post-content-main p.post-date{
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 10px;
}

.post-content-main p.sidebar-title{
    font-family: "Gilroy";
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 12px;
}

.post-content-main p.reading_time{
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: rgba(26, 26, 30, 1);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.post-content-main p.reading_time::before{
    content: '';
    display: inline-block;
    background: url("../img/clock.svg") center no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.on_this_page ul{
    list-style: none;
    margin-bottom: 25px;
}
.on_this_page ul li{
    margin-bottom: 11px;
}

.on_this_page a{
    text-decoration: none;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: rgba(26, 26, 30, 1);
}

@media screen and (min-width: 768px){
    .post-content h1{
        font-size: 48px; 
    }

    .post-content .subtitle{
        font-size: 18px;
        margin-bottom: 20px;
    }

    .post-content .post-back{
        margin-bottom: 20px;
    }

    .post-content-main{
        flex-direction: row;
    }
   
    .post-content-main p,
    .post-content-main li{
        font-size: 16px;
    }

    .post-thumbnail{
        height: 500px;
        border-radius: 16px;
    }
    
    .post-content-main h2{
        font-size: 32px;
    }

    .post-content-main h3{
        font-size: 18px;
    }

    .entry-meta{
        position: sticky;
        top: 90px;
        left: 0;
    }
    
    .entry-meta > *{
        width: 100%;
    }

    .sidebar{
        width: 31%;
        position: relative;
        padding-left: 60px;
    }

    .entry-content{
        width: 69%;
        padding-right: 60px;
        border-right: 1px solid rgba(213, 213, 213, 1)
    }

    .post-content-main p.post-date{
        margin-bottom: 40px;
    }

    .post-content-main p.reading_time{
        margin-bottom: 40px;
    }
}