.patl-slider {
	position: relative;
	margin: 0  0 40px 0;
	overflow: hidden;
	border: solid 1px #999; 
	border-radius: 12px;
	
}

.patl-overlay {
	background-color: rgba(0,0,0,.8);
}

/* Make the Splide structure fill one visual frame */
.patl-slider .splide__track,
.patl-slider .splide__list,
.patl-slider .splide__slide {
	height: 100%;
}

/*--------------------------------------------------------------
# Slide Card
--------------------------------------------------------------*/

.patl-card {
	position: relative;
	min-height: 300px;
	height: fit-content;
	overflow: hidden;

	background-color: #27313a;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/*--------------------------------------------------------------
# Overlay
--------------------------------------------------------------*/

.patl-card-overlay {
	position: absolute;
	inset: 0;

	display: flex;
	align-items: flex-end;

	padding: 48px 80px 54px;
}

.patl-card-content {
	width: 100%;
	max-width: 720px;
	color: #fff;
}

.patl-card-title {
	margin: 0 0 14px;

	color: inherit;
	font-size: 22px;
	line-height: 30px;
}

.patl-card-excerpt {
	margin-bottom: 24px;

	font-size: 1.05rem;
	line-height: 1.6;
}

.patl-card-button {
	display: inline-block;

	padding: 11px 20px;

	border: 2px solid #fff;
	border-radius: 5px;

	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;

	transition:
		background-color .2s ease,
		color .2s ease;
}

.patl-card-button:hover,
.patl-card-button:focus {
	background-color: #fff;
	color: #222;
}

/*--------------------------------------------------------------
# Splide Arrows
--------------------------------------------------------------*/

.patl-slider .splide__arrows {
	position: absolute;
	inset: 0;
	z-index: 20;

	pointer-events: none;
}

.patl-slider .splide__arrow {
	position: absolute;
	top: 50%;

	width: 42px;
	height: 42px;

	margin: 0;
	padding: 0;

	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 50%;

	background: rgba(0, 0, 0, .42);
	opacity: 1;

	transform: translateY(-50%);
	transition:
		background-color .2s ease,
		border-color .2s ease;

	pointer-events: auto;
	z-index: 21;
}

.patl-slider .splide__arrow svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

.patl-slider .splide__arrow:hover,
.patl-slider .splide__arrow:focus {
	background: rgba(0, 0, 0, .68);
	border-color: rgba(255, 255, 255, .9);
}

.patl-slider .splide__arrow--prev {
	left: 18px;
}

.patl-slider .splide__arrow--next {
	right: 18px;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.patl-slider .splide__pagination {
	bottom: 15px;
	z-index: 20;
}

.patl-slider .splide__pagination__page {
	width: 9px;
	height: 9px;

	margin: 4px;

	background: #fff;
	opacity: .65;
}

.patl-slider .splide__pagination__page.is-active {
	opacity: 1;
	transform: scale(1.25);
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 768px) {

	.patl-slider {
		margin: 40px 0 40px 0;
	}


	.patl-card {
		min-height: 450px;
	}

	.patl-card-overlay {
		padding: 32px 62px 52px;
	}

	.patl-card-title {
		font-size: 2rem;
	}

	.patl-card-excerpt {
		font-size: 1rem;
	}

	.patl-slider .splide__arrow {
		width: 36px;
		height: 36px;
	}

	.patl-slider .splide__arrow--prev {
		left: 12px;
	}

	.patl-slider .splide__arrow--next {
		right: 12px;
	}

}

@media (max-width: 520px) {

	.patl-card-overlay {
		padding: 28px 48px 50px;
	}

	.patl-card-title {
		font-size: 1.65rem;
	}

	.patl-card-excerpt {
		line-height: 1.5;
	}

}
