/** Shopify CDN: Minification failed

Line 68:15 Expected ":"
Line 68:17 Expected identifier but found "1px"

**/
.content-showcase {
    padding-top: 20px;
}
.content-showcase img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover
}
.content-showcase__title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: normal;
    margin: 0 0 30px;
    letter-spacing: 0;
}
.content-showcase__video-embed {
    width: 100%;
    height: 100%;
}
.content-showcase__video-embed video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 3px;
}
.content-showcase__product {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: var(--product-card-corner-radius);
    border-width: var(--product-card-border-width);
    border: 1px solid rgba(51,11,11,0.1);
    color: rgba(var(--color-foreground), .75);
    font: normal 400 16px/28.8px "FranklinGothicSGBook", sans-serif;
    position: relative;
    text-decoration: none solid rgba(51,11,11,0.75);
    --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
    --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
    --shadow-blur-radius: var(--product-card-shadow-blur-radius);
    --shadow-opacity: var(--product-card-shadow-opacity);
    --shadow-visible: var(--product-card-shadow-visible);
    --image-padding: var(--product-card-image-padding);
    overflow: hidden;
}
.content-showcase__product:not(:last-child) {
    margin-bottom: 16px;
}
.content-showcase__product-image {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    /*aspect-ratio: 1;*/
}
.content-showcase__product-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #faf6f4;
    border-left; 1px solid #f5f1ef;
    padding: 15px;
    height: 120px;
}
.content-showcase__description {
    margin-bottom: 30px;
}
.content-showcase__description p {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0;
}
.content-showcase__col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.content-showcase__product-title {
    margin-bottom: 10px;
    line-height: 1;
    flex: 1;
}
.content-showcase__product-title a {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    text-decoration: none;
    font-weight: 500;
    color: #330b0b;
}
.content-showcase__product-price {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.content-showcase__compare--price {
    text-decoration: line-through;
    opacity: 0.6;
    display: none;
}
.content-showcase .quick-add__submit {
    padding: 8px 24px;
    width: fit-content;
    min-width: 100%;
    height: auto;
    min-height: auto;
    color: #fff;
    background-color: #80291c;
    border-color: #80291c !important;
}

@media screen and (min-width: 750px) {
    .content-showcase__wrapper {
        display: flex;
        margin: 0 -15px;
    }
    .content-showcase__beta,
    .content-showcase__alpha {
        max-width: 50%;
        flex: 50%;
        padding-inline: 15px;
    }
    .content-showcase__alpha {
        position: sticky;
        top: 0;
        height: fit-content;
    }

    .content-showcase__description {
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 991px) {
    .content-showcase__wrapper {
        display: flex;
        margin: 0 -20px;
    }
    .content-showcase__beta,
    .content-showcase__alpha {
        padding-inline: 20px;
    }

    .content-showcase__product-image {
        width: 150px;
        height: 150px;
    }

    .content-showcase__product-meta {
        height: 150px;
    }

    .content-showcase__description {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 749px) {
    .content-showcase {
        padding-top: 10px;
    }
    .content-showcase__wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .content-showcase__alpha {
        order: 1;
    }
    .content-showcase__video-embed {
        /*aspect-ratio: 1 / 1.1;*/
    }
    .content-showcase__product-meta {
        padding: 15px;
        height: 100px;
    }
    .content-showcase__product-image {
        width: 100px;
        height: 100px;
    }
    .content-showcase__title {
        font-size: 24px;
        margin: 0 0 24px;
    }
    .content-showcase__description {
        margin-bottom: 20px;
    }
    .content-showcase__description p {
        font-size: 16px;
    }
    .content-showcase__product-title {
        margin-bottom: 6px;
    }
    .content-showcase__product-title a {
        font-size: 14px;
    }
    .content-showcase .quick-add__submit {
        padding: 6px 16px;
    }
    .content-showcase__product-price {
        font-size: 14px;
    }
}