.event-modulars-wrap {
	position: relative;
	width: calc(1000px + 116px);
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 18px;
}

.event-modulars-wrap--loading {
	opacity: 0;
	visibility: hidden;
}

.event-modulars-wrap--ready {
	opacity: 1;
	visibility: visible;
	transition: opacity .25s ease;
}

.event-modulars-wrap--single-page {
	width: 1000px;
	justify-content: center;
}

.event-modulars-wrap--single-page.event-modulars--speakers {
	width: 1120px;
}

.event-modulars-viewport {
	position: relative;
	flex: 0 1 1000px;
	min-width: 0;
	width: 1000px;
	max-width: 100%;
	margin: -10px -8px;
	padding: 10px 8px;
	overflow: hidden;
}

.event-modulars-grid {
	display: grid;
	width: 1000px;
	max-width: 100%;
	gap: 32px;
	transition: transform .35s ease, opacity .35s ease;
	will-change: transform, opacity;
}

.event-modulars-grid.is-leaving-left {
	transform: translateX(-28px);
	opacity: 0;
}

.event-modulars-grid.is-leaving-right {
	transform: translateX(28px);
	opacity: 0;
}

.event-modulars-grid.is-entering-left {
	transform: translateX(28px);
	opacity: 0;
}

.event-modulars-grid.is-entering-right {
	transform: translateX(-28px);
	opacity: 0;
}

.event-modulars-item[hidden] {
	display: none;
}

.event-modulars__arrow {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border: 1px solid #d8d8d8;
	border-radius: 50%;
	background: #fff;
	color: #9a9a9a;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: border-color .25s ease, color .25s ease, opacity .25s ease;
}

.event-modulars__arrow:focus,
.event-modulars__arrow:active {
	background: #fff;
	border-color: #017dc5;
	color: #017dc5;
	outline: none;
}

.event-modulars__arrow:focus-visible {
	box-shadow: 0 0 0 3px rgba(1, 125, 197, .18);
}

.event-modulars__arrow svg {
	width: 18px;
	height: 18px;
	display: block;
	stroke: currentColor;
}

.event-modulars__arrow:hover {
	background: #fff;
	border-color: #017dc5;
	color: #017dc5;
}

.event-modulars__arrow:disabled {
	background: #fff;
	opacity: .25;
	cursor: not-allowed;
}

.event-modulars__arrow:disabled:hover,
.event-modulars__arrow:disabled:focus,
.event-modulars__arrow:disabled:active {
	background: #fff;
	border-color: #d8d8d8;
	color: #9a9a9a;
}

.event-modulars__arrow[hidden] {
	display: none;
}

.event-modulars--speakers .event-modulars-grid {
	grid-template-columns: repeat(2, 1fr);
}

.event-modulars--speakers {
	width: calc(1120px + 116px);
}

.event-modulars--speakers .event-modulars-viewport {
	flex-basis: 1120px;
}

.event-modulars--speakers .event-modulars-viewport,
.event-modulars--speakers .event-modulars-grid {
	width: 1120px;
}

.event-speaker {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.event-speaker__img {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	background: #d0d0d0;
}

.event-speaker__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.event-speaker__body {
	display: flex;
	flex: 1;
	min-width: 0;
	align-self: stretch;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
}

.event-speaker__details {
	display: grid;
	gap: 4px;
}

.event-speaker__name {
	font-size: 18px;
	font-weight: 700;
	color: #007dc6;
	margin: 0;
}

.event-speaker__position {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: #6f6f6f;
	margin: 0;
}

.event-speaker__company {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	color: #007dc6;
	margin: 0;
}

.event-speaker__socials {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
}

.event-speaker__social {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border: 1px solid #d8d8d8;
	border-radius: 50%;
	background: #fff;
	color: #007dc6;
	text-decoration: none;
	transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.event-speaker__social svg {
	display: block;
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.event-speaker__social:hover,
.event-speaker__social:focus {
	border-color: #007dc6;
	background: #007dc6;
	color: #fff;
	outline: none;
}

.event-speaker__social:focus-visible {
	box-shadow: 0 0 0 3px rgba(1, 125, 197, .18);
}

.event-modulars--sponsors .event-modulars-grid {
	grid-template-columns: repeat(3, 1fr);
}

.event-sponsor {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,.04);
	overflow: hidden;
}

.event-sponsor__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 190px;
	padding: 10px;
	background: #fff;
}

.event-sponsor__logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 150px;
	object-fit: contain;
}

.event-sponsor__body {
	padding: 24px 24px 26px;
	border-top: 1px solid #e7e7e7;
	background: #fdfdfd;
	text-align: center;
}

.event-sponsor__name {
	display: block;
	margin: 0;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
}

.event-sponsor__links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	margin-top: 8px;
}

.event-sponsor__link {
	display: inline-flex;
	width: fit-content;
	color: #007dc6;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
}

.event-sponsor__link:hover,
.event-sponsor__link:focus {
	color: #005f96;
	text-decoration: underline;
}

.event-sponsor__desc {
	margin: 12px 0 0;
	font-size: 16px;
	line-height: 1.45;
	color: #555;
}

.event-tickets {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 1120px;
	max-width: 100%;
	gap: 28px;
	margin-right: auto;
	margin-left: auto;
}

.event-ticket-display-card {
	display: flex;
	flex-direction: column;
	flex: 0 1 calc((100% - 56px) / 3);
	min-width: 0;
	padding: 46px 22px 24px;
	background: #fff;
	border-radius: 28px;
	box-shadow: 0 2px 10px rgba(0,0,0,.04);
	text-align: center;
}

.event-ticket-display-card__name {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: #007dc6;
}

.event-ticket-display-card__price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0 0 22px;
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	color: #007dc6;
}

.event-ticket-display-card__vat {
	position: relative;
	top: 2px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	color: #8a8a8a;
	vertical-align: baseline;
	white-space: nowrap;
}

.event-ticket-display-card__desc {
	flex: 1 1 auto;
	margin: -8px 0 22px;
	font-size: 15px;
	line-height: 1.45;
	color: #555;
}

.event-ticket-display-card .event-btn-wrap {
	width: 100%;
	margin-top: auto;
}

.event-ticket-display-card .event-register-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 12px 20px;
	border-radius: 8px;
	background: #1a1a1a;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease;
}

.event-ticket-display-card .event-register-btn:hover,
.event-ticket-display-card .event-register-btn:focus,
.event-ticket-display-card .event-register-btn:active {
	background: #017dc5;
	color: #fff;
	text-decoration: none;
	outline: none;
}

.event-ticket-display-card .event-register-btn:focus-visible {
	box-shadow: 0 0 0 3px rgba(1, 125, 197, .22);
}

@media (max-width: 900px) {
	.event-modulars--sponsors .event-modulars-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.event-ticket-display-card {
		flex-basis: calc((100% - 28px) / 2);
	}
}

@media (max-width: 767px) {
	.event-modulars-wrap {
		gap: 10px;
	}

	.event-modulars-grid {
		gap: 18px;
	}

	.event-modulars--speakers .event-modulars-grid,
	.event-modulars--sponsors .event-modulars-grid {
		grid-template-columns: 1fr;
	}

	.event-speaker {
		padding: 18px;
	}

	.event-sponsor__logo {
		min-height: 160px;
		padding: 10px;
	}

	.event-sponsor__body {
		padding: 20px 24px 24px;
	}

	.event-sponsor__name {
		font-size: 20px;
	}

	.event-tickets {
		gap: 20px;
	}

	.event-ticket-display-card {
		flex-basis: 100%;
		padding: 36px 22px 22px;
	}

	.event-ticket-display-card__price {
		font-size: 34px;
	}

	.event-modulars__arrow {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
	}

	.event-modulars__arrow svg {
		width: 16px;
		height: 16px;
	}
}
