.custom-memberads {
	display: grid;
	margin: 0 auto;
	gap: 1rem;
	max-width: 90%;
}

.custom-memberads .slide {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.custom-memberads .img-cont {
	flex-shrink: 0;
	position: relative;
}

.custom-memberads .img-cont a {
	position: relative;
	display: inline-block;
}

.custom-memberads .slide-title > a {
	font-size: 1.5rem;
	color: inherit;
	font-family: inherit;
	font-weight: inherit;
}

.custom-memberads .img-cont .sponsored {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--blue);
	color: white;
	text-transform: uppercase;
	font-family: var(--alternate-gothic-atf-font-family);
	padding: 10px 8px 6px 8px;
	font-size: 1rem;
	line-height: 1rem;
	font-weight: normal;
}

@media (min-width: 1024px) {
	.custom-memberads {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.custom-memberads .slide {
		flex-direction: row;
		align-items: start;
	}
}