/*
	README

	This file should only be used to style structure of the widget. It should not
	contain fonts or theme styling. Use the shared_theme.css for that purpose.

	If simply theming the CCL, leave this file alone.

	If your design is very customized, edit this file as needed. 
*/

.core-list {
	max-width: var(--width-base);
}

.core-list .widget-header {
	padding: 0;
}

.core-list .widget-header .widget-title {
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.core-list .slide {
	margin-bottom: var(--space-16);
}

.core-list .slide .slide-title {
	margin: 0;
}
.core-list .slide .img-cont {
	position: relative;
	margin-bottom: var(--space-4);
}

.core-list .slide .slide-top {
	display: grid;
	gap: var(--space-2);
}

.core-list .slide .content-section {
	display: grid;
	gap: var(--space-4);
}

.core-list .slide .content-section > .inner {
	display: grid;
	gap: var(--space-3);
}

.core-list .slide .content-section .heading-container {
	display: grid;
	gap: var(--space-1);
}

.core-list .blog-feed-header {
	display: none;
}

.core-list .slide .blog-feed-header-mobile-container .blog-feed-header {
	display: grid;
}

.core-list .widget-view-all {
	color: var(--gray);
	padding: var(--space-3) var(--space-8);
	font-size: 20px;
	background-color: var(--color2-light-2);
	border: 2px solid var(--color2-light-2);
	border-radius: 0;
	font-family: var(--saans-heavy);
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: .05em;
	transition: background-color 0.4s ease;
}

@media (hover: hover) {
	.core-list .widget-view-all:hover {
		background-color: var(--white);
	}
}

.core-list .slide .slide-title {
	font-family: var(--saans-heavy);
	font-weight: normal;
	color: var(--gray-dark);
	text-transform: uppercase;
	letter-spacing: .05em;
}

.core-list .slide .slide-footer a.read-more {
	color: var(--white);
	padding: var(--space-3) var(--space-8);
	font-size: 20px;
	background-color: var(--color1);
	border: 2px solid var(--color1);
	border-radius: 0;
	font-family: var(--saans-heavy);
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: .05em;
	transition: background-color 0.4s ease;
}

@media (hover: hover) {
	.core-list .slide .slide-footer a.read-more:hover {
		background-color: var(--white);
		color: var(--color1);
	}
}

@media (min-width: 40em) {
	.core-list .slide > .inner {
		display: grid;
		grid-template-columns: 2fr 3fr;
	}

	.core-list .slide .img-cont {
		margin-bottom: 0;
	}

	.core-list .slide .content-section {
		padding: 0 var(--space-6);
	}

	.core-list .slide .blog-feed-header-mobile-container {
		display: none;
	}

	.core-list .slide .content-section .blog-feed-header {
		display: grid;
	}
}

@media screen and (min-width: 64em) {
	.core-list .slide > .inner {
		grid-template-columns: 1fr 3fr;
	}
}

.core-list .slide .slide-title {
	margin: 0;
}