/* Art Description Section */
.art{
    margin-top: 3rem;
    display: flex;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(153, 153, 153, 0.5);
    width: 80vw;
    margin: 2rem auto;
    position: relative;
}
.art  > .back_icon >  i{
    color: black;
    position: absolute;
    left: -7%;
    top: 0%;
    font-size: 1.7rem;
    cursor: pointer;
}
.art_img{
    width: 50%;
    max-height: 40rem;
    padding: 2rem;
    position: relative;
}
.art_img > i{
    position: absolute;
    bottom: 10%;
    left: 10%;
    transform: translate(-10%,-10%);
    font-size: 1.5rem;
    border-radius: 20%;
    background: rgba(250, 250, 250, 0.7);
    padding: 0.8rem;
    cursor: pointer;
}
.art_content{
    width: 50%;
    padding: 2rem;
}
.art_img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
}
.art_icon{
    display: flex;
    justify-content: space-between;
}
.art_share{
    display: flex;
    align-items: center;
}
.art_save{
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border-radius: 30px;
    color: white;
    background: #e74c3c;
    border: none;
    outline: none;
}
.art_heading{
    font-size: 2.2rem;
    margin: 1rem 0 0.7rem 0;
}
.art_para{
    width: 85%;
    font-size: 1.2rem;
    color: #3d3d3d;
}
.art_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.art_info-content{
    margin-top: 2rem;
    display: flex;
    align-items: center;
}
.art_info-content > img{
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1.2rem;
}
.art_info-content > span{
    font-size: 1.3rem;
    font-weight: bold;
}
.art_info-content > span > small{
    color: #3d3d3d;
    font-weight: lighter;
    font-size: 1.2rem;
}

.art_follow{
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}


/* Tab Section */

.container--tabs {
    margin: 2rem;
  }
  .container--tabs .nav-tabs {
    float: left;
    width: 100%;
    margin: 0;
    list-style-type: none;
    border-bottom: 1px solid #ddd;
  }
  .container--tabs .nav-tabs > li {
    float: left;
    margin-bottom: -1px;
  }
  .container--tabs .nav-tabs > li > a {
    font-size: 1.2rem;
    text-decoration: none;
    color: #3d3d3d;
    float: left;
    margin-right: 2px;
    line-height: 1.42857143;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
  }
  .container--tabs .nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd;
  }
  .container--tabs .nav-tabs > li.active > a,
  .container--tabs .nav-tabs > li.active > a:hover,
  .container--tabs .nav-tabs > li.active > a:focus {
    text-decoration: none;
    cursor: default;
    background-color: #fff;
    border-bottom-color: transparent;
    border-bottom: 2px solid #3d3d3d;
  }
  .container--tabs .tab-content {
      margin-top: 2rem;
    float: left;
    width: 100%;
  }
  .container--tabs .tab-content > .tab-pane {
    display: none;
  }
  .container--tabs .tab-content > .tab-pane.active {
    display: grid;
  }
  .container--tabs .tab-content > .active {
    display: grid;
  }

.tab-pane-1{
      display: grid;
      grid-gap: 0.6rem;
        grid-template-columns: repeat(3, 25%);
        grid-template-rows: repeat(2, 5rem);
}
.tab-pane-1 > img{
      width: 100%;
      height: 100%;
      border-radius: 5px;
      object-fit: cover;
}

.comment{
    display: flex;
    margin-bottom: 0.5rem;
}

.comment > img{
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 2rem;
}
.comment > span{
    position: relative;
    padding: 0.6rem;
    width: 90%;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid rgba(153, 153, 153,0.4);
}
.comment > span > small{
    color: #3d3d3d;
    font-weight: 100;
    font-size: 1.2rem;
}
.comment > span > p {
    font-weight: initial;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
    color: black;
}
.user_comment{
    display: flex;
    margin-top: 3rem;
}
.user_comment > img{
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 2rem;
}

.user_comment > input{
    width: 90%;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 30px;
    padding: 1rem 0 1rem 1rem;
    border: 1px solid #999;
    outline: none;
}

.post_heading{
    text-align: center;
    margin-top: 5rem;
}


/* Posts Section */
.posts{
    margin: 4rem 4rem 0rem 5rem;
}
.posts-container{
    column-count: 4;
    column-gap: 1rem;
}
.post-card{
    display: inline-block;
    width: 20vw;
    position: relative;
    margin-bottom: 1rem;
    transition: all 0.2s;
}
.post-card:hover .post_like-icon{
    display: block;
}
.post-card:hover .post-card > img{
    transform: scale(1.2);
}
.post-card > img{
    width: 100%;
    min-height: 12rem;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}
.post_like-icon{
    display: none;
    position: absolute;
    top: 4%;
    right: 5%;
    transform: translate(-5%,-4%);
    font-size: 1.5rem;
    border-radius: 50%;
    background: rgba(250, 250, 250, 0.7);
    padding: 0.6rem;
}

.post_picture-icon{
    position: absolute;
    top: 4%;
    left: 5%;
    transform: translate(-5%,-4%);
    font-size: 1.5rem;
    border-radius: 20%;
    background: rgba(250, 250, 250, 0.7);
    padding: 0.6rem;
}
.post-date{
    display: block;
    margin-left: 1rem;
    margin-top: -3.7rem; 
}
.post-date > span{
    color: white;
    font-size: 1.03rem;
    font-weight: 600;
}
.post_calender-icon{
    font-size: 1.5rem;
    border-radius: 20%;
    background: rgba(250, 250, 250, 0.7);
    padding: 0.6rem;
    margin-right: 0.6rem;
}
.post-heading{
    margin-top: 2rem;
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #3d3d3d;
    text-align: center;
}
.post-info{
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
}
.post-info > img{
    width: 3rem;
    border-radius: 50%;
    margin-right: 0.6rem;
}
.post-info-name{
    font-size: 0.9rem;
    color: #3d3d3d;
    font-weight: 600;
}
/* Post Media queries */
@media(max-width: 1020px){
    .posts-container{
        column-count: 3;
    }
}
@media(max-width: 800px){
    .posts{
        margin: 1rem;
    }
}
@media(max-width: 700px){
    .posts-container{
        column-count: 2;
    }
}
@media(max-width: 560px){
    .posts-container{
        display: flex;
        flex-direction: column;
    }
    .post-card{
        display: block;
        margin: 1rem auto;
        width: 60%;
    }
}


/* Share Button */

/* Remove Reset for integration */
* {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: none;
    box-shadow: none;
    color: black;
  }
  /* End Reset */
  .share-menu {
    display: flex;
    position: relative;
  }
  .share-menu-toggle {
    position: relative;
    height: 50px;
    cursor: pointer;
    background: transparent;
  }
  .share-menu-toggle:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .share-logo {
    font-size: 1.2rem;
    margin-left: 2rem;
  }
  .share-items {
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    top: -20px;
    transition: all 200ms ease-in-out;
    position: absolute;
    left: 60px;
    padding: 0.7rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .open .share-items {
    opacity: 1;
    visibility: visible;
    top: 0;
  }
  .share-item {
    margin-right: 10px;
    font-size: 2rem;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  