.stock {
    background: #fff;
    padding-bottom: 3.5rem;
}

.stock + .footer {
    margin-top: 0;
}

.stock-list {
    padding: .5rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stock-item {
    width: calc(33.3333% - 1rem);
    color: #4E4E4E;
    transition: .2s all;
    position: relative;
}

.stock-item:hover {
    color: #1F4B9A;
}

.stock-item__img {
    height: 13rem;
    margin-bottom: 1rem;
    border-radius: .25rem;
    overflow: hidden;
}

.stock-item__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.stock-item__title {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.stock-item__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stock-single__img {
    width: 19.3rem;
    margin-bottom: 1rem;
}

.stock-single__img img {
    width: 100%;
    display: block;
    border-radius: .25rem;
}

.stock-single__title {
    line-height: 1.2;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4E4E4E;
    margin-bottom: 1rem;
}

.stock-single__info {
    margin-bottom: 2rem;
}

.stock-single__info li {
    margin-bottom: 1rem;
    font-weight: 400;
}

.stock-single__info li span {
    font-weight: 700;
}

.stock .basket-item {
    border-color: #dcdcdc;
}



@media (max-width: 767.98px),
(max-width: 1080px) and (orientation: portrait) {

    .stock .page-title {
        background: #fff;
        padding-top: 0.5rem;
    }

    .stock-list {
        padding-top: 2rem;
    }

    .stock-item {
        width: calc(50% - .75rem);
    }

    .stock-item__img {
        height: 11rem;
    }

}


@media (max-width: 767.98px) {
    
    .stock {
        padding-bottom: 2rem;
    }

    .stock .page-title span {
       display: block;
       margin-left: 0;
       margin-top: 0.3rem;
    }

    .stock-list {
        padding-top: 1rem;
    }

    .stock-item {
        width: 100%;
    }

    .stock-item__img {
        height: calc(69vw - 2rem);
    }

    .stock-single {
        padding-top: 1.5rem;
    }

    .stock-single__title {
        font-size: 1.1rem;
    }

    .stock-single__img {
        width: 100%;
    }

}