.pgr-carousel {
	background: #fff;
	color: #242b37;
	overflow: hidden;
	padding: clamp(4.5rem, 7.05vw, 8.8125rem) 0 clamp(4.5rem, 6vw, 5.5rem);
}

.pgr-carousel__inner {
	margin: 0 auto;
	max-width: 2000px;
	padding: 0 clamp(4.4rem, 6.15vw, 7.6875rem);
}

.pgr-carousel__title {
	font-size: clamp(2.65rem, 3.075vw, 3.84rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 auto clamp(5rem, 6.3vw, 7.875rem);
	max-width: 1500px;
	text-align: center;
}

.pgr-carousel__stage {
	position: relative;
}

.pgr-carousel__track {
	--pgr-carousel-gap: clamp(1.625rem, 1.7vw, 2.125rem);

	display: grid;
	gap: var(--pgr-carousel-gap);
	grid-auto-columns: minmax(15rem, 1fr);
	grid-auto-flow: column;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: clamp(3.25rem, 3.75vw, 4.6875rem) 0 .25rem;
	scroll-snap-type: inline mandatory;
	scrollbar-width: none;
}

.pgr-carousel__track::-webkit-scrollbar {
	display: none;
}

.pgr-carousel__item {
	background: #deedf5;
	border-radius: .65rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 0;
	min-width: 0;
	padding: 0 8.37% 6.07%;
	scroll-snap-align: start;
	text-align: center;
}

.pgr-carousel__item img {
	aspect-ratio: 344 / 313;
	clip-path: polygon(4% 0, 96% 0, 100% 4.5%, 100% 95.5%, 96% 100%, 4% 100%, 0 95.5%, 0 4.5%);
	display: block;
	filter: drop-shadow(0 14px 12px rgb(33 40 50 / 35%));
	flex-shrink: 0;
	height: auto;
	margin-top: -21.8%;
	object-fit: cover;
	width: 100%;
}

.pgr-carousel__item p {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3;
	margin: 5.25% 0 0;
}

.pgr-carousel__arrow {
	align-items: center;
	background: #287bc1;
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	height: clamp(2.5rem, 3.05vw, 3.8125rem);
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color .2s ease, color .2s ease;
	width: clamp(2.5rem, 3.05vw, 3.8125rem);
	z-index: 2;
}

.pgr-carousel__arrow:hover,
.pgr-carousel__arrow:focus-visible {
	background: #008bc8;
	border-color: #008bc8;
	color: #fff;
}

.pgr-carousel__arrow:active {
	transform: translateY(-50%);
}

.pgr-carousel__arrow:disabled {
	cursor: default;
	opacity: 1;
}

.pgr-carousel__arrow svg {
	fill: none;
	height: 1.25rem;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
	width: 1.25rem;
}

.pgr-carousel__arrow--previous {
	left: clamp(-5.0625rem, -4.05vw, -3.35rem);
}

.pgr-carousel__arrow--next {
	right: clamp(-5.0625rem, -4.05vw, -3.35rem);
}

.pgr-carousel__tagline {
	color: #008bc8;
	font-size: 50px;
	font-weight: 600;
	letter-spacing: .1em;
	line-height: 1.15;
	margin: clamp(5rem, 6.4vw, 8rem) 0 0;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 1100px) {
	.pgr-carousel__title {
		white-space: nowrap;
	}

	.pgr-carousel__track {
		grid-auto-columns: calc((100% - var(--pgr-carousel-gap) - var(--pgr-carousel-gap) - var(--pgr-carousel-gap)) / 4);
	}
}

@media (min-width: 700px) and (max-width: 1099px) {
	.pgr-carousel__inner {
		padding-inline: 3.75rem;
	}

	.pgr-carousel__track {
		--pgr-carousel-gap: 1.5rem;

		grid-auto-columns: calc((100% - 1.5rem) / 2);
	}

	.pgr-carousel__arrow--previous {
		left: -3rem;
	}

	.pgr-carousel__arrow--next {
		right: -3rem;
	}
}

@media (max-width: 600px) {
	.pgr-carousel {
		padding-block: 3.5rem;
	}

	.pgr-carousel__inner {
		padding-inline: .5rem;
	}

	.pgr-carousel__title {
		margin-bottom: 2.75rem;
		padding-inline: 1rem;
	}

	.pgr-carousel__track {
		--pgr-carousel-gap: 1rem;

		grid-auto-columns: calc(100% - 5rem);
		padding-inline: 2.75rem;
		scroll-padding-inline: 2.75rem;
	}

	.pgr-carousel__arrow {
		height: 2.5rem;
		width: 2.5rem;
	}

	.pgr-carousel__arrow--previous {
		left: .15rem;
	}

	.pgr-carousel__arrow--next {
		right: .15rem;
	}

	.pgr-carousel__tagline {
		margin-top: 3.5rem;
		padding-inline: 1rem;
	}
}
