/*Main container*/
.main_container{
    padding: 2rem 7rem 2rem 1rem;
    display: grid;
    grid-template-columns: min-content 3fr 1fr;
    height: 100dvh;
}

/* Main content */
.main_content{
    display: flex;
    flex-direction: column;
    padding-left: 10rem;
    overflow: hidden;
    margin-right: 2rem;
}
/* Stories */
.main_content .stories{
    display: flex;
    gap: 1rem;
    margin: 0 auto;
}
/* Story */
.main_content .stories .story{
    flex-direction: column;
    display: flex;
    align-items: center;
}
/* Account picture */
.main_content .stories .story img{
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--clr-pink);
    padding: 2px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
/* Account name */
.main_content .stories .story p{
    margin-top: 0.5rem;
    font-size: 0.8rem;
}
/* Posts */
.posts{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 0 3rem;
    gap: 1rem;
}
/* Post */
.posts .post{
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--clr-dark-gray);
    padding-bottom: 1rem;
}
/* Top */
.posts .post .top .account_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.posts .post .top .account_info .left{
    display: flex;
    align-items: center;
}
.posts .post .top .account_info .left img{
    width: 3rem;
    margin-right: 0.5rem;
    border: 2px solid var(--clr-pink);
    padding: 1px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.posts .post .top .account_info .left p{
    font-size: 0.8rem;
}
/* Post content */
.posts .post .post_content{
    margin-top: 1rem;
}
.posts .post .post_content video,
.posts .post .post_content img{
    width: 100%;
}
/* Post information */
.posts .post .post_info .post_icons{
    margin-top: 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.posts .post .post_info .post_icons .left svg{
    margin-right: 0.5rem;
}
/* Account texts */
.posts .post .account_text{
    margin-top: 1rem;
    line-height: 1.6rem;
}
/* Messages */
.messages{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
/*Profiles*/
.messages .profile{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.messages .profile img{
    margin-right: 1rem;
    width: 3.5rem;
    border: 2px solid var(--clr-pink);
    padding: 2px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.messages .profile p{
    font-size: 0.8rem;
}
.messages .profile>p{
    font-size: 0.8rem;
    color: var(--clr-blue);
}
.messages .profile .left{
    display: flex;
    align-items: center;
    line-height: 1.2rem;
}
.messages .profile .left .texts p:nth-child(2){
    color: var(--clr-dark-gray);
}
/* Top texts  */
.messages .top_texts{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
.messages .top_texts p:first-child{
    color: var(--clr-dark-gray);
}

/* Mobile design */
.container{
    margin: 1rem 1.5rem;
    display: none;
}
.container .header .top_header a{
    color: var(--clr-black);
}