/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the List 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-list .slide {
	margin-bottom: 10px;
}

.core-list button[data-quickview-button] {
	display: none;
}

.core-list .widget-header-inner {
	flex-direction: column;
}

.core-list .widget-title {
    font-family: var(--font-display-3);
    font-size: var(--text-5xl);
    font-weight: 700;
    text-transform: lowercase;
    line-height: normal;
}

.core-list .widget-header-inner {
	margin-bottom: 20px;
}

.core-list .button-default {
	width: max-content;
}

.core-list .slide .content-section {
	padding-top: 0;
}

.core-list .slide .slide-footer a {
    color: var(--btn-text-color);
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    font-weight: 500;
    text-decoration: none;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
}

.core-list .slide .slide-footer a i {
    margin-left: 8px;
}

.core-list .slide .slide-footer a:hover {
	background-color: transparent;
}

.core-list .slide .slide-footer a {
	border: none;
}

@media screen and (min-width: 40em) {
	.core-list .widget-header-inner {
		flex-direction: row;
	}
}