.container-custom{
    margin: 0 auto;
    max-width: 1232px;
    padding-left: 16px;
    padding-right: 16px;
}

.buy-together__title{
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 32px;
}

.buy-together__items{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.buy-together__item{
    grid-column: span 4;
    background: #F4F6FB;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    height: 200px;
    transition: all .3s ease;
    text-decoration: none;
}

.buy-together__item-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.buy-together__item-content-top{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.buy-together__item-content_title{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.buy-together__item-content_price{
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #989898;
}

.buy-together__item-content_button{
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.buy-together__item-img{
    position: absolute;
    bottom: 0;
    right: 20px;
    transition: all .3s ease;
}

@media (max-width: 900px){

    .buy-together__item{
        grid-column: span 12;
    }
    
    .buy-together__title{
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    .buy-together__item{
        height: fit-content;
    }

    .buy-together__item-content{
        gap: 14px;
    }

    .buy-together__item-img{
        max-width: 34%;
    }
}

@media (min-width: 767px){
    .buy-together__item:hover{
        cursor: pointer;
    }
    .buy-together__item:hover .buy-together__item-content_button{
        background: #5E00C6;
    }
    .buy-together__item:hover .buy-together__item-content_button i{
        color: white;
    }

    .buy-together__item:hover .buy-together__item-img{
        transform: scale(1.1);
    } 

    .buy-together__item:hover{
        -webkit-box-shadow: 1px 0px 16px -3px rgba(81,  0,  193, 0.56);
        -moz-box-shadow: 1px 0px 16px -3px rgba(81,  0,  193, 0.56);
        box-shadow: 1px 0px 16px -3px rgba(81,  0,  193, 0.56);
    }
}