.product_card2 {
    display: flex;
    align-items: center;
    padding: 2.5em 0;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(71, 84, 103, 0.40);
    background-color: #ffffff;
    line-height: 1.5;
}
.product_card2:first-child {
    padding-top: 0;
}
.product_card2_info_wrap {
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.product_card2_info {
    padding: 0 2.5em;
    box-sizing: border-box;
    width: calc(100% - 20.25em);
    flex-grow: 1;
}
.product_card2_title {
    font-weight: 600;
    margin: 0 0 0.4em;
    font-size: 1.25em;
    font-family: Inter, sans-serif;
}
.product_card2_title:last-child {
    margin-bottom: 0;
}
.product_card2_excerpt {
    color: #475467;
    margin: 0 0 0.5em;
}
.product_card2_excerpt:last-child {
    margin-bottom: 0;
}
.product_card2_thumb_wrap {
    width: 13.125em;
    position: relative;
}
.product_card2_thumb_wrap:before {
    content: '';
    display: block;
    padding: 42.86% 0;
}
.product_card2_thumb_wrap img {
    width: auto;
    height: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}
.product_card2_price {
    font-size: 1.125em;
    font-weight: 600;
    font-family: Inter, sans-serif;
    color: #111827;
}
@media(max-width: 1199px) {
    .product_card2 {
        padding: 2em 0;
    }
    .product_card2_thumb_wrap {
        width: 10em;
    }
    .product_card2_info {
        width: calc(100% - 17em);
        padding: 0 2em;
    }
    .product_card2_title {
        font-size: 1.125em;
    }
    .product_card2_excerpt {
        font-size: 0.875em;
    }
    .product_card2_price {
        font-size: 1em;
    }
}
@media(max-width: 767px) {
    .product_card2,
    .product_card2:first-child {
        display: block;
        padding: 1em;
    }
    .product_card2_info_wrap {
        display: block;
    }
    .product_card2_thumb_wrap {
        width: 100%;
        height: auto;
    }
    .product_card2_thumb_wrap .wp-post-image {
        position: static;
        transform: none;
        margin: 0 auto 1.25em;
    }
    .product_card2_info {
        padding: 0;
        width: 100%;
        margin: 0 0 1.25em;
    }
    .product_card2 .butt {
        width: 100%;
    }
}