/* Latest Blog Carousel — styles matching the reference design. */

.lbc-wrap {
	max-width: 1140px;
	margin: 0 auto;
	padding: 40px 20px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #1a1a1a;
}

/* Header row: title left, "read more" link right. */
.lbc-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 48px;
}

.lbc-title {
	font-size: 40px;
	line-height: 1.1;
	font-weight: 800;
	margin: 0;
	color: #000;
}

.lbc-more {
	flex: none;
	font-size: 15px;
	font-weight: 400;
	color: #1a1a1a;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
}

.lbc-more:hover {
	color: #1a56db;
}

/* Cards */
.lbc-slide {
	height: auto;
}

.lbc-card {
	padding: 0 20px 0 0;
	box-sizing: border-box;
}

.lbc-card-title {
	margin: 0 0 14px;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 700;
}

.lbc-card-title a {
	color: #1a56db;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.lbc-card-title a:hover {
	color: #123a9c;
}

.lbc-card-excerpt {
	margin: 0 0 22px;
	font-size: 15px;
	line-height: 1.55;
	color: #2b2b2b;
}

.lbc-card-meta {
	font-size: 13px;
	color: #777;
	letter-spacing: 0.2px;
}

.lbc-card-sep {
	margin: 0 8px;
	color: #ccc;
}

/* Slick tweaks so it matches the clean look with a single side arrow. */
.lbc-carousel.slick-slider {
	margin-bottom: 0;
}

.lbc-carousel .slick-track {
	display: flex;
}

.lbc-carousel .slick-slide {
	height: auto;
}

.lbc-carousel .lbc-next {
	position: absolute;
	top: 50%;
	right: -34px;
	transform: translateY(-50%);
	width: 17px;
	height: 27px;
	z-index: 5;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	line-height: 0;
}

.lbc-carousel .lbc-next:focus {
	outline: none;
}

/* Hide Slick's default font-based arrow glyph on our custom button. */
.lbc-carousel .lbc-next:before {
	display: none;
	content: none;
}

.lbc-carousel .lbc-next svg {
	display: block;
	width: 100%;
	height: 100%;
}

.lbc-carousel .lbc-next svg path {
	transition: fill 0.15s ease;
}

.lbc-carousel .lbc-next:hover svg path {
	fill: #1a56db;
}

/* Dim the arrow when it can't advance (Slick adds .slick-disabled). */
.lbc-carousel .lbc-next.slick-disabled {
	opacity: 0.4;
	cursor: default;
}

.lbc-carousel .slick-dots {
	margin-top: 20px;
	position: static;
}

.lbc-carousel .slick-dots li button:before {
	font-size: 9px;
	color: #ccc;
	opacity: 1;
}

.lbc-carousel .slick-dots li.slick-active button:before {
	color: #1a56db;
}

/* Responsive header */
@media (max-width: 767px) {
	.lbc-title {
		font-size: 30px;
	}

	.lbc-carousel .slick-next.lbc-next {
		right: 0;
	}
}
