.ses-product {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.ses-product-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    background: #f8f8f8;
}

.ses-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ses-product-title {
    margin: 16px 16px 8px;
}

.ses-product-hub {
    margin: 0 16px 8px;
}

.ses-product-size {
    margin: 0 16px 16px;
}

.ses-product-card__cta {
    margin: 0 16px 16px;
}

.ses-product-card__cta a {
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 767px) {

    .ses-product {
        width: 100%;
    }

    .ses-product-image {
        height: 200px;
    }

    .ses-product-title {
        font-size: 18px;
        line-height: 1.6;
    }

    .ses-product-card__cta a {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

.ses-products {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.ses-products .ses-product {
    flex: 0 0 calc(33.333% - 16px);
    box-sizing: border-box;
}

@media (max-width: 1023px) {

    .ses-products .ses-product {
        flex: 0 0 calc(50% - 10px);
    }

}

@media (max-width: 767px) {

    .ses-products .ses-product {
        flex: 0 0 100%;
    }

}

.ses-product {
    min-height: 100%;
}

.ses-product-title {
    margin: 16px 16px 8px;
    line-height: 1.5;
}

.ses-product-hub {
    margin: 0 16px 8px;
    line-height: 1.6;
}

.ses-product-size {
    margin: 0 16px 16px;
    line-height: 1.6;
}

.ses-product-card__cta {
    margin: auto 16px 16px;
}

.ses-product-card__cta a {
    display: inline-block;
    box-sizing: border-box;
}