/**
 * Certificates block styles
 */

.ct-certificates {
	background-color: var(--color-white);
	padding-top: 80px;
}

.ct-certificates__wrapper {
	padding: 60px 36px;
	border-radius: 40px;
	background: var(--color-light-100);
}

.ct-certificates__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: center;
}

.ct-certificates__badge {
	margin-bottom: 20px;
}

.ct-certificates__title {
	margin-bottom: 12px;
}

.ct-certificates__title span {
	color: var(--color-purple-deep);
}

.ct-certificates__text {
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	text-align: center;
	color: var(--color-bg-deepest);
}

.ct-certificates__text span {
	color: var(--color-neutral-600);
}

.ct-certificates__slider-wrap {
	position: relative;
}

.ct-certificates__slider {
	overflow: hidden;
}

.ct-certificates__slider .swiper-wrapper {
	align-items: stretch;
}

.ct-certificates__slider .swiper-slide {
	display: flex;
	height: auto;
	min-width: 0;
}

.ct-certificates__slider .swiper-slide > .ct-certificates__card {
	width: 100%;
	min-width: 0;
}

.ct-certificates__slider-nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--color-white);
	cursor: pointer;
	transform: translateY(-50%);
}

.ct-certificates__slider-nav::before {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.ct-certificates__slider-nav--prev {
	left: -24px;
}

.ct-certificates__slider-nav--next {
	right: -24px;
}

.ct-certificates__slider-nav--prev::before {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3337 3.3335L8.3741 7.29306C7.98357 7.68358 7.98357 8.31674 8.3741 8.70727L12.3337 12.6668' stroke='%233F3880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.99967 3.3335L3.04011 7.29306C2.64959 7.68358 2.64959 8.31674 3.04011 8.70727L6.99967 12.6668' stroke='%233F3880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ct-certificates__slider-nav--next::before {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.66634 3.3335L7.6259 7.29306C8.01643 7.68358 8.01643 8.31674 7.6259 8.70727L3.66634 12.6668' stroke='%233F3880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.00033 3.3335L12.9599 7.29306C13.3504 7.68358 13.3504 8.31674 12.9599 8.70727L9.00033 12.6668' stroke='%233F3880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ct-certificates__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 8px 8px 20px;
	background: var(--color-white);
	border-radius: 24px;
}

.ct-certificates__card-media {
	margin-bottom: 20px;
}

.ct-certificates__card-image {
	display: block;
	width: 100%;
	height: 434px;
	border: 1px solid var(--color-light-200);
	border-radius: 16px;
	object-fit: cover;
}

.ct-certificates__card-content {
	padding: 0 12px;
}

.ct-certificates__card-title {
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--color-bg-deepest);
}

.ct-certificates__card-description {
	margin-bottom: 16px;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--color-bg-deepest);
}

.ct-certificates__card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.ct-certificates__card-date {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	color: var(--color-neutral-500);
}

.ct-certificates__footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 40px;
}

@media (max-width: 768px) {
	.ct-certificates {
		padding-top: 40px;
	}

	.ct-certificates .container {
		padding-right: 0;
		padding-left: 0;
	}

	.ct-certificates__wrapper {
		padding: 40px 16px;
	}

	.ct-certificates__header {
		align-items: flex-start;
		margin-bottom: 32px;
		text-align: left;
	}

	.ct-certificates__badge {
		margin-bottom: 16px;
	}

	.ct-certificates__title {
		margin-bottom: 10px;
	}

	.ct-certificates__text {
		text-align: left;
	}

	.ct-certificates__slider-wrap {
		margin-right: calc(var(--container-px-mobile) * -1);
		margin-left: calc(var(--container-px-mobile) * -1);
		padding-right: var(--container-px-mobile);
		padding-left: var(--container-px-mobile);
	}

	.ct-certificates__slider-nav {
		display: none;
	}

	.ct-certificates__card {
		padding: 6px 6px 16px;
		border-radius: 22px;
	}

	.ct-certificates__card-media {
		margin-bottom: 18px;
	}

	.ct-certificates__card-image {
		height: 318px;
	}

	.ct-certificates__card-content {
		padding: 0 10px;
	}

	.ct-certificates__card-title {
		margin-bottom: 6px;
		font-size: 18px;
	}

	.ct-certificates__card-description {
		font-size: 14px;
	}

	.ct-certificates__card-date {
		font-size: 12px;
	}

	.ct-certificates__footer {
		margin-top: 28px;
	}
}
