.dashboard-container{
    background: url(../images/pic.png) repeat;
    padding: 8px 32px 64px;
    border-radius: 64px;
    margin: 60px 32px;
    position: relative;
}

.dashboard-header-logo{
    width: 150px;
}

.dashboard-header-title{
    font-size: 40px;
    color: var(--brown);
    margin-left: 20px;
}


.dashboard-content{
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.project-tab{
    width: 245px;
    gap: 32px;
    justify-content: flex-start;
}
.project-tab-item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 128px;
    border-radius: 20px;
    background: #FFB858;
    box-shadow: 0px -8px 0px 0px #DD8103 inset;
    cursor: pointer;
}

.project-tab-item:hover{
    box-shadow: none;
    border: 4px solid #DD8103;
}
.project-tab-item.active{
    box-shadow: none;
    background: #F59F2B;
    border: 4px solid #DD8103;
}

.project-tab-item-icon{
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.project{
    gap: 88px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 72px;
}

.project-brief{
    gap: 32px;
    display: flex;
    flex-direction: column;
}
.project-brief-logo{
    border: 4px solid #FFFFFF;
    border-radius: 12px;
    margin-right: 20px;
    width: 120px;
    height: 120px;
}
.project-brief-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project-brief-name{
    font-size: 40px;
    color: var(--red);
}
.project-brief-labels{
    display: flex;
    gap: 16px;
    font-size: 28px;
    color: var(--brown);
}
.project-brief-label{
    width: 126px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    background: url(../images/btn-bg1.png) no-repeat center center;
    background-size: 100% 100%;
    color: var(--blank);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.project-brief-label img{
    width: 20px;
    height: 20px;
    margin-right: 3px;
}
.project-brief-content{
    font-size: 20px;
    color: var(--text-brown);
}
.featured-posts{
    display: flex;
    flex-direction: column;
}
.featured-post{
    gap: 16px;
    padding: 32px 0;
}
.featured-post:last-child{
    padding-bottom: 0;
}
.featured-post:not(:last-child){
    border-bottom: 2px solid #FFDFA7;
}
.featured-post-avatar{
    width: 88px;
    height: 88px;
    border-radius: 50%;
}
.featured-post-user{
    display: flex;
    flex-direction: column;
    width: 25%;
    color: var(--text-brown);
}

.featured-post-user-name{
    font-size: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.featured-post-user-account{
    font-size: 20px;
}
.featured-post-content{
    font-size: 20px;
    color: var(--red);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.project-how{
    font-size: 20px;
    color: var(--text-brown);
    white-space: pre-line;
}

.project-how .p32{
    padding: 32px;
}

.project-how .line{
    height: 1px;
    width: 100%;
    background: var(--yellow);
}

.label-container{
    border-radius: 0 20px 20px 20px;
    position: relative;
}
.label-content{
    height: 58px;
    border-radius: 20px 20px 0 0;
    border: 4px solid #fff;
    border-bottom: none;
    background-color: var(--yellow2);
    position: absolute;
    top: -58px;
    left: -4px;
    display: flex;
    justify-content: center;
    padding: 40px 48px 0 32px;
    font-size: 40px;
    color: var(--red);
}
.label-content img{
    width: 54px;
    height: 54px;
    margin-left: 16px;
}

.project-how-container{
    margin-top: 32px;
}

.project-how-tab{
    height: 90px;
    position: absolute;
    top: -90px;
    left: -4px;
    display: flex;
    align-items: flex-end;
}

.project-how-tab .tab-item{
    height: 80px;
    border-radius: 20px 20px 0 0;
    background-color: rgba(250, 236, 211, 0.5);
    border: 4px solid #fff;
    border-bottom: none;
    padding: 0 32px;
    font-size: 40px;
    color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-how-tab .tab-item.active{
    height: 90px;
    background-color: var(--yellow2);
}

.project-how-tab .tab-item:nth-child(2){
    position: relative;
    left: -4px;
}

.project-how-tab .tab-item img{
    width: 54px;
    height: 54px;
    margin-left: 16px;
}


.pagination{
    position: absolute;
    right: 0;
    bottom: 0;
}