

	.featured-event__grid {
		display: flex;
		gap: 40px;
	}

	.featured-event__container {
		background-color: #C65024;
		display: flex;
		gap: 40px;
		padding: 96px 0 96px 120px;
		overflow: hidden;

		@media screen and (max-width: 768px) {
			flex-direction: column;
		}
	}

	.featured-event__slider {
		position: relative;
		padding-bottom: 4rem;
	}

	.featured-event__container .nextdc-featured-events-block__nav-button.swiper-button-prev::after {
		background-image: url("data:image/svg+xml,%3Csvg%20width='56'%20height='56'%20viewBox='0%200%2056%2056'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Crect%20width='56'%20height='56'%20fill='white'/%3E%3Cpath%20d='M10%2027.9971L26.1953%2044L30.3027%2039.9404L21.1221%2030.8682H46V25.127H21.123L30.3027%2016.0605L26.1953%2012L10%2027.9971Z'%20fill='%23201850'/%3E%3C/svg%3E");
	}
	
	.featured-event__container .nextdc-featured-events-block__nav-button.swiper-button-next::after {
		background-image: url("data:image/svg+xml,%3Csvg%20width='56'%20height='56'%20viewBox='0%200%2056%2056'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Crect%20width='56'%20height='56'%20fill='white'/%3E%3Cpath%20d='M46%2027.9971L29.8047%2044L25.6973%2039.9404L34.8779%2030.8682H10V25.127H34.877L25.6973%2016.0605L29.8047%2012L46%2027.9971Z'%20fill='%23201850'/%3E%3C/svg%3E");
	}


	.featured-event__container .nextdc-featured-events-block__nav-button {
		width: 56px;
		height: 56px;
		background-color: transparent;
		border-radius: 0;
		margin-top: 0;
		position: absolute;
		bottom: 0;
		top: calc(100% - 48px);
		transform: none;
		z-index: 10;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: opacity 0.3s ease;
		font-size: 0;
	}

	.featured-event__container .nextdc-featured-events-block__nav-button::after {
		content: '';
		display: block;
		width: 56px;
		height: 56px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}

	.featured-event__container .featured-event__slider .swiper-button-prev.nextdc-featured-events-block__nav-button {
		left: 50%;
		transform: translateX(-68px);
	}

	.featured-event__container .featured-event__slider .swiper-button-next.nextdc-featured-events-block__nav-button {
		right: 50%;
		transform: translateX(68px);
	}

	.featured-event__container .nextdc-featured-events-block__nav-button:hover {
		opacity: 0.8;
	}

	.featured-event__container .featured-event__content {
		width: 25%;

		@media screen and (max-width: 768px) {
			width: 100%;
		}
	}


	.featured-event__container .featured-event__slider {
			width: calc(75% - 40px);

		@media screen and (max-width: 768px) {
			width: 100%;
		}
	}



	.featured-event__slider .swiper-slide{
		max-width: 800px !important;
	}

	.featured-event__content {
		max-width: 440px;
		display: flex;
		flex-direction: column;
		gap: 40px;
		justify-content: center;
		align-items: center;

	}


	.featured-event__content__title h3 {
		font-size: 56px;
		font-weight: 700;
		font-style: bold;
		font-family: Jost, sans-serif;
		line-height: 120%;
		letter-spacing: 0.032em;
		color: #ffffff;
		background-color: transparent;
	}

	.featured-event__content__description p {
		font-size: 18px;
		font-weight: 400;
		font-style: bold;
		font-family: Jost, sans-serif;
		line-height: 140%;
		letter-spacing: 0.032em;
		color: #ffffff;
		background-color: transparent;
	}

	@media(max-width:768px) {
		.featured-event__container {
			flex-direction: column;
			gap: 20px;
			padding-left: 0;
		}

		.featured-event__content__title h3 {
			font-size: 36px;
			letter-spacing: 0.0325;
		}

		.featured-event__grid {
			flex-direction: column;
		}

		.featured-event__container .featured-event__slider .swiper-button-prev.nextdc-featured-events-block__nav-button {
			left: 50%;
			transform: translateX(-68px);
		}

		.featured-event__container .featured-event__slider .swiper-button-next.nextdc-featured-events-block__nav-button {
			right: 50%;
			transform: translateX(68px);
		}
	}

