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