.detail {
	padding-top: 100px;
	padding-bottom: 50px;
}

.detail__inner {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.detail__header-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	width: 100%;
}

.detail__header-col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	width: 40%;
}

.detail__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
}

.detail__eyebrow-icon-img {
	width: 32px;
	height: 32px;
	display: block;
}

.detail__eyebrow-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #000000;
}

.detail__heading {
	margin: 0 0 20px 0;
	text-align: left;
	font-size: 48px;
	font-weight: 500;
	line-height: 52px;
	color: #000000;
}

.detail__description {
	width: 40%;
	max-width: 40%;
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #000000;
}

/* Carousel */
.detail__carousel {
	position: relative;
	padding-bottom: 16px;
}

.detail__card {
	background-color: #F7F7F6;
	border-radius: 16px;
	margin-right: 32px;
	display: flex !important;
	flex-direction: column;
	align-items: flex-start;
}

.detail__card-title {
	margin: 0;
	padding: 32px 32px 16px 32px;
	text-align: left;
	align-self: flex-start;
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
	color: #000000;
}

.detail__card-figure {
	margin: 0 28px 28px 28px;
	align-self: center;
	border-radius: 12px;
	overflow: hidden;
}

.detail__card-img {
	width: 100%;
	height: auto;
	display: block;
}

/* Slick arrows */
.detail__carousel .slick-arrow {
	position: absolute;
	bottom: -10px;
	top: auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #0072FF;
	color: #FFFFFF;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.detail__carousel .slick-arrow::before {
	content: none;
}

.detail__carousel .slick-arrow:hover {
	background-color: #0061D9;
}

.detail__carousel .slick-prev {
	right: 84px;
	left: auto;
}

.detail__carousel .slick-next {
	right: 32px;
	left: auto;
}

.detail__carousel .slick-arrow svg {
	width: 20px;
	height: 20px;
}

/* Slick dots */
.detail__carousel .slick-dots {
	display: flex !important;
	position: static;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 40px 0 0 -6px;
	width: auto;
}

.detail__carousel .slick-dots li {
	width: auto;
	height: auto;
	margin: 0;
	padding: 5px 4px;
}

.detail__carousel .slick-dots li button {
	width: 12px;
	height: 12px;
	padding: 0;
	border-radius: 50%;
	background-color: #B8B8B8;
	font-size: 0;
	line-height: 0;
	color: transparent;
	overflow: hidden;
}

.detail__carousel .slick-dots li button::before {
	content: none;
}

.detail__carousel .slick-dots li button:hover {
	background-color: #0061D9;
}

.detail__carousel .slick-dots li.slick-active button {
	background-color: #0061D9;
}

@media (max-width: 1024px) {
	.detail {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.detail__inner {
		gap: 40px;
	}

	.detail__header-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.detail__header-col {
		width: 100%;
	}

	.detail__heading {
		font-size: 42px;
		line-height: 48px;
	}

	.detail__description {
		width: 100%;
		max-width: 100%;
	}

	.detail__card {
		margin-right: 24px;
	}
}

@media (max-width: 767px) {
	.detail {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.detail__eyebrow {
		gap: 8px;
	}

	.detail__heading {
		font-size: 36px;
		line-height: 42px;
	}

	.detail__description {
		font-size: 16px;
		line-height: 20px;
	}

	.detail__card {
		margin-right: 0;
	}

	.detail__carousel .slick-prev {
		right: 56px;
	}

	.detail__carousel .slick-next {
		right: 0;
	}

	.detail__carousel .slick-dots li button {
		width: 10px;
		height: 10px;
	}
}
