#product-content main{
	display: flex;
    flex-direction: column;
}

/* Related Products */
.related.slider:not(.is-initialized) ul{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 30px;
}

/* Upsells */
.up-sells{
    margin-block: 60px;
}

/* Product CTA */
.product-cta{
    margin-block: 48px;
    background: var(--color-gradient);
    border-radius: var(--border-radius);
    color: #fff;
    padding-right: 24px;
}

.product-cta .product-description__cols{
    align-items: stretch;
}

.product-cta__text{
    max-width: 630px;
    padding-bottom: 32px;
}

.product-cta .section-title{
    margin-bottom: 0;
    margin-top: 48px;
}

.product-cta img{
    display: flex;
    width: 600px;
    height: 100%;
    object-fit: cover;
}

.product-cta .product-cta__text a.button{
    display: inline-flex;
    background: transparent;
    border: 1px solid #fff;
    gap: 32px;
    margin-top: 16px;
}

.product-cta .button:after{
    content: '';
	display: inline-block;
	-webkit-mask-image: url('../../../icons/arrow-right-white.svg');
	mask-image: url('../../../icons/arrow-right-white.svg');
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
	width: 12px;
	height: 12px;
}

.product-cta .product-cta__text a.button:hover{
    background-color: #fff;
    color: var(--color-primary);
}

@media screen and (max-width: 781px){
    .product-cta{
        padding: 0;
    }
    .product-cta__text{
        padding-inline: 24px;
    }
    .product-cta .product-description__cols{
        align-items: center;
    }
    .product-cta .product-description__col:first-child{
        position: relative;
    }
    .product-cta .product-description__col:first-child:after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 55%;
        transform: translateX(-50%);
        height: 3px;
        width: 60%;
        background-color: #fff;
    }
    .product-cta  img{
        justify-self: center;
    }
}

@media screen and (max-width: 480px){
    .product-cta{
        margin-block: 0;
    }
    .up-sells{
        margin-block: 40px;
    }
}