/**
 * TL;DR Excerpt widget styles
 */

.bl-tldr-excerpt {
	position: relative;
	box-sizing: border-box;
	margin-bottom: 20px;
	padding: 22px 36px 28px 58px;
	border-radius: 10px;
	background-color: #eef7ff;
	box-shadow: 0 1px 8px rgba(14, 53, 84, 0.12);
	color: #252525;
}

.bl-tldr-excerpt *,
.bl-tldr-excerpt *::before,
.bl-tldr-excerpt *::after {
	box-sizing: inherit;
}

.bl-tldr-excerpt::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 8px;
	border-radius: 10px 0 0 10px;
	background-color: #e43d12;
}

.bl-tldr-excerpt h2.bl-tldr-excerpt__title {
	display: inline-block;
	margin: 0 0 24px;
	padding: 7px 13px;
	border-radius: 7px;
	background-color: #fff;
	color: #e43d12 !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.2;
}

.bl-tldr-excerpt__content {
	font-size: 18px;
	line-height: 1.45;
}

.bl-tldr-excerpt__content > *:first-child {
	margin-top: 0;
}

.bl-tldr-excerpt__content > *:last-child {
	margin-bottom: 0;
}

.bl-tldr-excerpt__content p {
	margin: 0 0 1.1em;
}

.bl-tldr-excerpt__content ul,
.bl-tldr-excerpt__content ol {
	margin: 0 0 0 1.25em;
	padding: 0;
}

.bl-tldr-excerpt__content li {
	margin: 0.2em 0;
	padding-left: 0.15em;
}

.bl-tldr-excerpt__content li::marker {
	color: #0065ff;
}

@media (max-width: 768px) {
	.bl-tldr-excerpt {
		padding: 20px 22px 24px 34px;
	}

	.bl-tldr-excerpt h2.bl-tldr-excerpt__title {
		margin-bottom: 18px;
	}

	.bl-tldr-excerpt__content {
		font-size: 18px;
		line-height: 1.5;
	}
}
