.products-section {
    padding-top: 60px;
    padding-bottom: 70px;
}

.products-section-header {
    padding-top: 40px;
    padding-bottom: 30px;
}

.products-section-header h4 {
    margin-bottom: 10px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.25s ease;
}

.product-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.product-card__img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-card__body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.product-card__title a {
    color: inherit;
    text-decoration: none;
}

.product-card__title a:hover {
    color: #E31E24;
}

.product-card__desc {
    color: #666;
    font-size: 14px;
    line-height: 1.55;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.products-list {
    margin-bottom: 40px;
}

.products-list .product-card {
    margin-bottom: 40px;
}

.products-list .product-card:last-child {
    margin-bottom: 0;
}

.products-sidebar {
    padding-top: 10px;
}
