/*
	README

	Do NOT modify this file directly; a number of widgets depend on this file being as is.
	Use the CSS file that is associated with your widget
	(ie. template: widget_template_custom_my_widget.html, CSS: widget_template_custom_my_widget.css)
	to make any theme-ing or overwrites you need.

	If you need to make significant changes such that overwriting would be complicated
	consider not using a different component from the Core Collection Library or
	not using the Core Component Library altogether.

	If you still feel the need to edit this file, copy/paste this CSS into a different file
	and use that instead.
*/

.core-cards {
	margin-bottom: 48px;
	padding-top: 32px;
	color: #0b467e;
}

.core-cards,
.core-cards * {
	font-family: inherit;
}

.core-cards .slides {
	display: flex;
	flex-wrap: wrap;
}

.core-cards .slides > * {
	margin-bottom: 40px;
	padding: 0 20px;
	width: 100%;
}

@media (min-width: 640px) {
	.core-cards .slides > * {
		width: 50%;
	}
}

@media (min-width: 1024px) {
	.core-cards.slides-across-3 .slides > * {
		width: 33.33333%
	}

	.core-cards.slides-across-4 .slides > * {
		width: 25%;
	}
}

@supports (display: grid) {
	.core-cards .slides {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
		margin: 0 auto;
		padding: 0 15px;
		max-width: 1190px;
	}

	.core-cards .slides > * {
		margin-bottom: 0;
		padding: 0;
		width: 100% !important;
	}

	@media (min-width: 640px) {
		.core-cards .slides {
			gap: 24px 10px;
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (min-width: 1024px) {
		.core-cards.slides-across-3 .slides {
			grid-template-columns: repeat(3, 1fr);
		}

		.core-cards.slides-across-4 .slides {
			grid-template-columns: repeat(4, 1fr);
		}
	}
}

.core-cards .slide .img-cont {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.core-cards .slide .img-cont img {
	display: block;
	width: 100%;
}

.core-cards .slide h4, .core-cards .slide h4 a {
	font: normal normal bold 30px/28px Muli;
	margin-bottom: 20px;
	text-align: center;
	color: #444444;
}

.core-cards .slide p {
	font: normal normal bold 20px/18px Muli;
	text-align: left;
	line-height: 1.2;
	color: #444444;
	font-weight: 400;
}

.core-cards .slide .inner {
	position: relative;
}

.core-cards .slide .content-section {
	padding: 0 30px;
	position: relative;
	margin-bottom: 30px;
}

.core-cards .slide .cta {
	/* position: absolute; */
	/* left: 50%; */
	/* bottom: 30px; */
	/* transform: translateX(-50%); */
	text-align: center;
	clear: both;
}

.core-cards .slide .ctaLink {
	font: normal normal bold 16px/14px Muli;
	background: #BC0523 0% 0% no-repeat padding-box;
	text-align: center;
	text-transform: uppercase;
    padding: 10px 20px;
	color: #FFFFFF;
	display: inline-block;
}

.core-cards .slide .inner {
	background: #F3F3F3 0% 0% no-repeat padding-box;
	min-height: 500px;
	padding-bottom: 10px;
}