.product-showcase-block {
    --color-default-bg: #5BA2AC;
    --border-radius: 30.87px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1053px;
    margin: 0 auto;
}
.product-showcase-block *,
.product-showcase-block *::before,
.product-showcase-block *::after {
    box-sizing: border-box;
}
.product-showcase__container {
    position: relative;
    width: 100%;
    min-height: 355px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-showcase__image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-showcase__image img {
    max-width: 100%;
    height: auto;
    display: block;
}
.product-showcase__img-mobile {
    display: none;
}
.product-showcase__img-desktop {
    display: block;
}
.product-showcase__placeholder {
    width: 100%;
    height: 355px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
@media (max-width: 768px) {
    .product-showcase-block {
        --border-radius: 20px;
    }
    .product-showcase__container {
        min-height: 200px;
    }
    .product-showcase__img-mobile {
        display: block;
    }
    .product-showcase__img-desktop {
        display: none;
    }
    .product-showcase__placeholder {
        height: 200px;
        font-size: 16px;
    }
}
@media (min-width: 769px) and (max-width: 1053px) {
    .product-showcase-block {
        max-width: 100%;
        padding: 0 15px;
    }
    .product-showcase__container {
        min-height: 280px;
    }
}
.product-showcase-block.alignwide {
    max-width: 1200px;
}
.product-showcase-block.alignfull {
    max-width: none;
}
.product-showcase-block.alignfull .product-showcase__container {
    border-radius: 0;
}
.editor-styles-wrapper .product-showcase-block {
    max-width: 100%;
}
.product-showcase-block + .product-showcase-block {
    margin-top: 30px;
}
