.prod_card{
    position: relative;
    overflow: clip;
    min-height: 331px;
    border-radius: 4px;
    border: 1px solid var(--border_lite, #F0F0F3);
    background: var(--white, #FFF);
}
.prod_card__link{
    position: absolute;
    height: 100%;
    width:100%;
    z-index: 1;
}
.prod_card .prod_card__img_wrap{
    display: flex;
    height: 100px;
    width: 100%;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
}
.prod_card .prod_card__info{
    padding: 21px 20px 17px;
    height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
.prod_card__buttons {
    display: flex;
    gap: 24px;
}
.prod_card__buttons .button, .prod_card__buttons .button_line{
    position: relative;
}
.prod_card__buttons .button:first-child:not(:last-child)::after, .prod_card__buttons .button_line:first-child:not(:last-child)::after {
    content: "";
    height: 100%;
    border-right: 1px solid #d8d8e7;
    position: absolute;
    right: -13px;
}
.prod_card__hovered:hover{
    border-color: var(--accent_blue);
}
@media (max-width: 576px) {
    .prod_card .prod_card__info{
        padding: 21px 18px 17px;
    }
}
@media (max-width: 992px) {
    .prod_card .prod_card__info{
        padding: 21px 16px 17px;
    }
}