/*
	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.
*/ 

.link-list {
	--font-title: var(--font-museo-900);
	--font-text: var(--font-georgia);
	--font-info: var(--font-museo-700);
	--color-text: var(--off-black);
	--color-text-hover: var(--white);
	--color-accent: var(--grey-6f);
	--color-bg: var(--sandy-brown);
	--color-border: var(--quill-grey);
	
	display: flex;
	gap: var(--space-5);
	padding-top: 0;
}

.link-list .link-list-inner {
	background-color: var(--color-bg);
	padding: 22px 15px;
	flex-basis: 51%;
}

.link-list ul li {
	list-style-type: none;
	border-bottom: 1px solid var(--color-border);
}

.link-list .link-list-link {
	display: inline-block;
	padding: 14px 0;
	margin-bottom: 0;
}

.link-list ul li:last-child .link-list-link {
	padding: 14px 0 0;
}

@media(hover: hover) {
	.link-list .link-list-link:hover {
		text-decoration: none;
	}
}

.link-list ul li:last-child {
	border-bottom: none;
}

.link-list .link-list-title {
	font-family: var(--font-title);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	color: var(--color-text);
	letter-spacing: 2px;
	margin-bottom: 0;
}

.link-list .blog-info {
	color: var(--color-accent);
	font-size: 11px;
	font-family: var(--font-info);
	text-transform: uppercase;
	line-height: 1.2;
	letter-spacing: 1px;
	margin-bottom: var(--space-1);
}

.link-list .slide-title {
	font-family: var(--font-text);
	font-size: 16px;
	line-height: 1.3;
	color: var(--color-text)
}

.link-list .subscribe-wrap {
	align-self: center;
}

.link-list .img-wrap {
	margin-bottom: var(--space-4);
}

.link-list a.read-more {
	padding: 8.5px 18px;
	font-weight: 500;
}

@media(hover: hover) {
	.link-list a.read-more {
		color: var(--color-text-hover);
	}
}

@media (min-width: 40em) {
	.link-list {
		flex-direction: column;
		gap: 0;
		padding-top: 0;
		background: var(--color-bg);
	}

	.link-list .link-list-inner {
		padding: var(--space-12) 38px var(--space-8) 34px;
	}

	.link-list .link-list-title {
		margin-bottom: 0;
		font-size: 16px;
	}

	.link-list .link-list-link {
		padding: var(--space-5) 0;
	}

	.link-list ul li:last-child .link-list-link {
		padding: var(--space-5) 0;
	}

	.link-list .slide-title {
		font-size: 16px;
	}

	.link-list .blog-info {
		display: flex;
		font-size: 13px;
	}

	.link-list .slide-title {
		font-size: 20px;
	}

	.link-list .subscribe-wrap {
		align-self: flex-start;
		padding: 0 34px 48px;
	}
}