/*
/*
	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-side-by-side {
	--font-title: var(--font-display);
	--font-desc: var(--font-body);
	--color-display: var(--primary-color-700);
	--color-display-hover: var(--primary-color-800);
	--color-body: var(--gray-700);
	--color-body-alt: var(--gray-100);
	--color-accent: var(--primary-color-800);

	margin-bottom: 25px;
}

@media (min-width: 40em) {
	.core-side-by-side {
		margin-bottom: 133px;
	}
}

.core-side-by-side[data-width="full"] .slides {
	padding: 0 var(--space-4);
}

@media (min-width: 40em) {
	.core-side-by-side[data-width="full"] .slides {
		padding: 0;
	}
}

.core-side-by-side[data-slides-across="2"] .slides {
	display: grid;
	gap: var(--space-16);
	padding: 0 var(--space-5);
	max-width: var(--width-base);
}

@media (min-width: 64em) {
	.core-side-by-side[data-slides-across="2"] .slides {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--space-5);
		margin: 0 auto;
	}
}

.core-side-by-side .slide + .slide {
	margin-top: var(--space-4);
}

@media (min-width: 64em) {
	.core-side-by-side[data-slides-across="2"] .slide + .slide {
		margin-top: 0;
	}
}

.core-side-by-side .slide .slide-top {
	display: grid;
	gap: var(--space-2);
}

.core-side-by-side:not([data-slides-across="2"]) .slide > .inner {
	margin: 0 auto;
	padding: 0 var(--space-5);
	max-width: var(--width-base);
}

.core-side-by-side[data-width="full"] .slide > .inner {
	padding: 0;
	max-width: 100%;
}

@media (min-width: 40em) {
	.core-side-by-side .slide > .inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

.core-side-by-side .slide .content-section {
	display: grid;
	place-items: center;
}

.core-side-by-side .slide .content-section > .inner {
	display: grid;
	gap: var(--space-4);
}

.core-side-by-side .slide .content-section .content-top {
	display: grid;
	gap: var(--space-3);
}

.core-side-by-side .slide .content-section .heading-container {
	display: grid;
	gap: var(--space-1);
}

.core-side-by-side .blog-feed-header {
	--font-size: var(--text-sm);
	--text-color: var(--color-body);
	--accent-color: var(--color-display);
	--font-family-display: var(--font-title);
	--font-family-body: var(--font-desc);

	display: none;
}

.core-side-by-side .slide .blog-feed-header-mobile-container .blog-feed-header {
	display: grid;
}

.core-side-by-side .slide .details {
	--font-family: var(--font-desc);
	--text-color: var(--color-body);
	--icon-color: var(--color-display);
	display: none;
}

.core-side-by-side .slide .content-section > .inner {
	width: 100%;
}

@media (min-width: 40em) {
	.core-side-by-side .slide .content-section > .inner {
		padding-left: var(--space-10);
		width: 100%;
		max-width: var(--width-comfortable);
	}

	.core-side-by-side:not([data-slides-across="2"]) .slide .content-section > .inner {
		padding-right: 40px;
	}

	.core-side-by-side .slide .blog-feed-header-mobile-container {
		display: none;
	}

	.core-side-by-side .slide .content-section .blog-feed-header {
		display: grid;
	}
}

.core-side-by-side .slide .img-cont .mini-date-section {
	--background-color: var(--color-accent);
	--text-color: var(--color-body-alt);
	--font-family: var(--font-title);
}

.core-side-by-side .slide .img-cont {
	position: relative;
	margin-bottom: var(--space-5);
	overflow: hidden;
}

@media (min-width: 40em) {
	.core-side-by-side .slide .img-cont {
		margin-bottom: 0;
	}
}

.core-side-by-side .slide .slide-title {
	margin: 0;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: var(--text-3xl);
	line-height: var(--leading-tight);
	color: var(--color-display);
}

@media (hover: hover) {
	.core-side-by-side .slide .slide-title > a:hover {
		color: var(--color-display-hover);
		text-decoration: none; /*reboot.css override*/
	}
}

.core-side-by-side .slide p {
	font-family: var(--font-desc);
	font-weight: 600;
	font-size: var(--text-base);
	line-height: var(--leading-tight);
	color: var(--color-body);
}

.core-side-by-side .slide .slide-footer {
	--color: var(--gray-700);
	--color-hover: var(--gray-600);
	--font-family: var(--font-desc);
}

.core-side-by-side .slide .slide-footer .qv-btn {
	color: var(--color);
}

@media (hover: hover) {
	.core-side-by-side .slide .slide-footer .qv-btn:hover {
		color: var(--color-hover);
	}
}