/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Cards family. This enables the ability to
	a family of widgets in a single update without touching the structure of the widget and without needing
	to duplicate efforts across several widget-specific CSS files.
*/

.core-cards .slides {
	gap: 30px;
}

.core-cards .slide .slide-top {
	display: block;
}

.core-cards .slide .img-cont {
	margin-bottom: var(--space-4);
}

.core-cards .slide .sponsored-text {
	margin-bottom: 5px;
}

.core-cards .slide .content-section > .inner {
	gap: 10px;
}

.core-cards .slide .blog-feed-header {
	display: none;
}

.core-cards .slide .slide-title {
	color: var(--black);
	font-weight: var(--font-weight-bold);
	font-size: var(--text-lg);
	line-height: 1.11;
	text-transform: uppercase;
}

.core-cards .slide .slide-title > a {
	color: inherit !important;
	text-decoration: none !important;
}

.core-cards .slide p {
	font-weight: var(--font-weight-book);
	font-size: var(--text-base);
	line-height: 1.375;
}

.core-cards .slide .slide-footer {
	margin: 0;
}

.core-cards .slide .slide-footer > * {
	margin: 0;
}

@media (min-width: 64em) {
	.core-cards .slide .img-cont {
		margin-bottom: var(--space-3);
	}

	.core-cards .slide .content-section {
		gap: 18px;
	}

	.core-cards .slide .slide-title {
		font-size: var(--text-xl);
		line-height: 1.1;
	}

	.core-cards .slide p {
		font-size: 1.0625rem;
		line-height: 1.53;
	}
}

/* Meetings Theme */
.meetings .core-cards {
	background-color: var(--meetings-seaweed);
}

/* Groups Theme */
.groups .core-cards {
	background-color: var(--seaweed);
}

/* Meeting & Groups Theme - Shared */
.meetings .core-cards,
.groups .core-cards {
	padding-top: 80px;
	padding-bottom: 60px;
}

.meetings .core-cards .slide .slide-title,
.meetings .core-cards .slide p,
.groups .core-cards .slide .slide-title,
.groups .core-cards .slide p {
	color: var(--white);
}

@media (min-width: 64em) {
	.meetings .core-cards,
	.groups .core-cards {
		padding-top: 80px;
		padding-bottom: 60px;
	}
}