.widget-spotlight-restyle {
	padding: 4rem 1rem;
	background-color: var(--navy);
	position: relative;
}

.widget-spotlight-restyle::before,
.widget-spotlight-restyle::after {
	display: block;
	content: "";
	width: 100%;
	border-bottom: 6px dotted #fff;
	margin: 1rem 0;
	position: absolute;
	left: 0;
	top: 1rem;
}

.widget-spotlight-restyle::after {
	top: unset;
	bottom: 1rem;
}

.widget-spotlight-restyle .slides-cont {
	display: grid;
	gap: 4rem 1rem;
}

.widget-spotlight-restyle .slide {
	position: relative;
	background-color: white;
	margin: 0 1rem;
}

.widget-spotlight-restyle .sponsored {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--darkteal);
	color: white;
	padding: 0.5rem 0.75rem;
	font-size: 12px;
	font-weight: normal;
}

.widget-spotlight-restyle .img-cont {
	flex: 0;
}

.widget-spotlight-restyle .content {
	padding: 1rem;
}

.widget-spotlight-restyle .content .title {
	color: var(--darkteal);
	font-size: 30px;
}

.widget-spotlight-restyle .content .read-more {
    color: var(--orange);
    cursor: pointer;
    display: inline-block;
    font-family: 'Aroma 2 LT W05 Extra Bold';
    font-size: 21px;
    letter-spacing: 1px;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
	margin-bottom: 1rem;
}

@media (min-width: 641px) {	
	.widget-spotlight-restyle .slides-cont {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem 2rem;
		max-width: 90vw;
		margin: 0 auto;
	}
	
	.widget-spotlight-restyle .slide {
		margin: 0;
	}
	
	.widget-spotlight-restyle .slide > .inner {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	
	.widget-spotlight-restyle .content {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: start;
		padding: 1.5rem;
	}
	
	.widget-spotlight-restyle .content .title {
		font-size: 25px;
	}
}

@media (min-width: 1201px) {
	.widget-spotlight-restyle .slides-cont {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	
	.widget-spotlight-restyle .slide {
		max-width: 100%;
	}
}

@media (min-width: 1401px) {
	.widget-spotlight-restyle .content .title {
		font-size: 30px;
	}
}