div[data-title="Carousel"]{
	margin: 1em 0;
	padding: 0;
	background-color: transparent;
	width: 100%;
    border-radius: 0;
	color: #000000;
}

@media (min-width: 1024px){
	div[data-title="Carousel"]{
		width: 150%;
		max-width: 150%!important;
		left: -25%;
	}
}

.wp-block-genesis-custom-blocks-carousel{
	background-color: #f9f9f9;
	border: 1px solid #f9f9f9;
	border-radius: 0;
}

.wp-block-carousel__container{
	margin-bottom: 24px;
}

.wp-block-carousel__item{
    margin: 0 auto;
    width: 100%;
    max-width: calc(100% - 48px);
}

.wp-block-carousel__item:not(:first-of-type){
    display: none;
}

.wp-block-carousel__asset{
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	position: relative;
	overflow: hidden;
}

.wp-block-carousel__asset--img{
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}