#post{
    display: flex;
    justify-content: center;
}
#post .inner-container{
    width: 1300px;
    display: flex;
    padding: 30px 20px;
    gap: 20px;
}


/*******************************
col1
*******************************/
#post .col1{
    width: 60%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#post .col1 .row1{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    background-color: var(--main-color);
    padding: 5px 10px 5px 5px;
    border-radius: 15px;
}
#post .col1 .row1 .breadcrumb,
#post .col1 .row1 .breadcrumb a,
#post .col1 .row1 .breadcrumb span{
    font-size: 15px;
    font-family: var(--font-medium);
    font-weight: 500;
    color: white;
    text-decoration: none;
}
#post .col1 .row1 .share{
    padding: 15px;
    background-color: white;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
#post .col1 .row1 .share svg{
    width: 25px;
    height: 25px;
    aspect-ratio: 1;
    fill: var(--main-color);
}


/*******************************
row2
*******************************/
#post .col1 .row2 img{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .35);
}


/*******************************
row3
*******************************/
#post .col1 .row3 h1{
    font-family: var(--font-bold);
    font-weight: 900;
    font-size: 30px;
    color: black;
}


/*******************************
row4
*******************************/
#post .col1 .row4 ul{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 15px;
    background-color: var(--acent-color);
}
#post .col1 .row4 ul li{
    font-size: 15px;
    font-family: var(--font-medium);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
#post .col1 .row4 ul li svg{
    width: 20px;
    height: 20px;
    aspect-ratio: 1;
}
#post .col1 .row4 ul li svg path,
#post .col1 .row4 ul li svg rect{
    fill: var(--main-color);
}


/*******************************
row5
*******************************/
#post .col1 .row5{
    margin-top: 30px;
}
#post .col1 .row5 .post-content-list h4{
    font-family: var(--font-bold);
    font-weight: 900;
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 10px;
}
#post .col1 .row5 .post-content-list ul{
    padding-right: 30px;
}
#post .col1 .row5 .post-content-list ul li{
    margin: 10px 0;
    font-size: 15px;
    font-family: var(--font-medium);
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}
#post .col1 .row5 .post-content-list ul li a{
    display: flex;
    align-items: center;
    gap: 10px; 
    transition: all 0.3s ease;
}
#post .col1 .row5 .post-content-list ul li a span{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    padding: 7px;
    border-radius: 10px;
    font-family: var(--font-medium);
}
#post .col1 .row5 .post-content-list ul li a span svg{
    width: 20px;
    height: 20px;
    aspect-ratio: 1;
    fill: white;
}
#post .col1 .row5 .post-content-list ul li span svg path{
    fill: white;
}
#post .col1 .row5 .post-content-list ul li a:hover{
    transform: translateX(-10px);
}

#post .col1 .row5 .post-content{
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    background-color: var(--acent-color);
}
#post .col1 .row5 .post-content p{
    font-size: 15px;
    font-family: var(--font-medium);
    font-weight: 500;
    color: var(--text-color);
    text-align: justify;
    word-spacing: 0;
}
#post .col1 .row5 .post-content p img{
    width: 100%;
    border-radius: 15px;
}
#post .col1 .row5 .post-content h2{
    font-family: var(--font-bold);
    font-weight: 900;
    font-size: 20px;
    color: black;
    margin-bottom: 20px;
}







/*******************************
col2
*******************************/
#post .col2{
    width: calc(25% - 20px);
    position: sticky;
    top: 20px;
    height: fit-content;
}
#post .col2 .title{
    font-family: var(--font-bold);
    font-weight: 900;
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 20px;
    text-align: center;
}

#post .col2 .latest-posts .post-card{
    display: flex;
    gap: 10px;
    padding: 5px;
    align-items: center;
    margin: 5px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
    border-radius: 10px;
}
#post .col2 .latest-posts .post-card img{
    width: 70px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}
#post .col2 .latest-posts .post-card .post-meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
#post .col2 .latest-posts .post-card .card-content{
    flex-grow: 1;
}
#post .col2 .latest-posts .post-card .post-meta span{
    font-size: 13px;
}












/*****************************
responsive
*****************************/
@media screen and (max-width: 770px) {
    #post .inner-container{
        flex-direction: column;
    }
    #post .col1{
        width: 100%;
    }
    #post .col2{
        width: 100%;
        margin-top: 20px;
    }
}
@media(max-width: 460px){
    #post .inner-container{
        padding: 20px 10px;
    }
    #post .col1 .row4 ul{
        flex-direction: column;
        align-items: stretch;
    }
    #post .col1 .row5 .post-content{
        padding: 20px 10px
    }
}