.main__page{
    background-color:#F2F2F2 ;

}

.main__page .container__layout {
    padding: 120px 70px;
    display: flex;
    gap: 40px;
}

.left__side {
    min-width: 200px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.left__side .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
}

.left__side .list__category>span,
.left__side .list__insdustry>span {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #858C94;
    margin-bottom: 12px;
    display: block;
}

.left__side .list__category .list__category--item,
.left__side .list__insdustry .list__insdustry--item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.left__side .list__category .list__category--item>p,
.left__side .list__insdustry .list__insdustry--item>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.right__side {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}


.right__side .search{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    background: var(--white-color);
    border-radius: 16px;
    min-height: 60px;
}

.right__side .search .title{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.right__side .search .search__box{
    min-height: 36px;
    min-width: 200px;
    background: #F2F2F2;
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 12px;
}

.right__side .search .search__box:last-child{
    width: 100%;
}

.right__side .search .search__box .search__box--selected .item__selected{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: var(--light-black-color);

}

.right__side .search .search__box .search__box--selected {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.right__side .list__product .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 24px ;
}

.right__side .list__product .list__item {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}


.right__side .list__product .list__item .item {
    width: calc(100% / 3 - 16px);
    height: auto;
    border-radius: 16px;
    display: block;
    overflow: hidden;
    border: 1px solid transparent;
}

.right__side .list__product .list__item .item .item__img {
    max-height: 200px;
}

.right__side .list__product .list__item .item .item__img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.right__side .list__product .list__item .item .item__content {
    padding: 40px;
    background-color: var(--white-color);
    width: 100%;
}
.right__side .list__product .list__item .item:hover {
    border: 2px solid var(--primary-color);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .15);
    border-radius: 16px;
}


.right__side .list__product .list__item .item .item__content .post__type{
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #858C94;
    margin-bottom: 12px;
}


.right__side .list__product .list__item .item .item__content .post__title{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    min-height: 48px;
    max-height: 48px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-inline-box;
}


.right__side .list__product .list__item .item .item__content .post_time{
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #858C94;
    margin-top: 24px;
}

/* ITEM SINGLE  */
.right__side .list__product .list__item .item.single{
    width: 100%;
    display: flex;
}

.right__side .list__product .list__item .item.single .item__img{
    max-height: 250px;
}


.right__side .list__product .list__item .item.single .item__img img{
    height: 250px;
    width: 450px;
    object-fit: cover;
}


.right__side .list__product .list__item .item.single .item__content .post__title{
    font-size: 28px ;
    line-height: 40px;
    min-height: 80px;
    max-height: 80px;
}


/* ITEM DOUBLE  */
.right__side .list__product .list__item .item.double{
    width: calc(50% - 12px);
}

.right__side .list__product .list__item .item.double .item__img{
    max-height: 250px;
}


.right__side .list__product .list__item .item.double .item__img img{
    height: 250px;
    width: 100%;
    object-fit: cover;
}


.right__side .list__product .list__item .item.double .item__content .post__title{
    font-size: 24px ;
    line-height: 30px;
    min-height: 60px;
    max-height: 60px;
}