.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
}

.wp-block-button__link .gbi-button-icon {
	line-height: 1;
	font-size: 1em;
}

.lgu-counter-block {
	display: inline-block;
}

.lgu-counter-number {
	font-size: clamp(1.75rem, 4.2vw, 3.5rem);
	font-weight: 700;
	line-height: 1;
}

.lgu-icon-block {
	display: inline-block;
}

.lgu-icon-link {
	display: inline-flex;
	text-decoration: none;
}

.lgu-standalone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	min-width: 1em;
	line-height: 1;
	box-sizing: content-box;
}

.lgu-timeline {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding: 12px 0;
}

.lgu-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #d6d9df;
	transform: translateX(-50%);
}

.lgu-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
	align-items: center;
	min-height: 180px;
}

.lgu-timeline__panel {
	padding: 0 26px;
}

.lgu-timeline__panel--left {
	text-align: right;
}

.lgu-timeline__panel--right {
	text-align: left;
}

.lgu-timeline__panel:empty {
	display: none;
}

.lgu-timeline__year {
	margin: 0 0 14px;
	font-size: 2.5rem;
	line-height: 1;
	font-weight: 700;
	color: #ef6a14;
}

.lgu-timeline__text {
	margin: 0;
	line-height: 1.45;
	color: #657087;
}

.lgu-timeline__dot {
	grid-column: 2;
	width: 24px;
	height: 24px;
	border: 4px solid #ef6a14;
	border-radius: 50%;
	background: #fff;
	justify-self: center;
	box-sizing: border-box;
	z-index: 1;
}

@media (max-width: 900px) {
	.lgu-timeline::before {
		left: 14px;
		transform: none;
	}

	.lgu-timeline__item {
		grid-template-columns: 28px minmax(0, 1fr);
		min-height: 0;
		margin-bottom: 34px;
		align-items: start;
	}

	.lgu-timeline__dot {
		grid-column: 1;
		margin-top: 0.3rem;
	}

	.lgu-timeline__panel--left,
	.lgu-timeline__panel--right {
		grid-column: 2;
		text-align: left;
		padding: 0 0 0 14px;
	}
}

.lgu-gallery {
	--lgu-gallery-accent: #2b1c66;
	--lgu-gallery-drag-x: 0px;
	--lgu-gallery-gap: 24px;
	--lgu-gallery-side-width: clamp(120px, 18vw, 270px);
	width: min(100%, 1760px);
	margin: 0 auto;
	padding: 28px 0 10px;
}

.lgu-gallery__viewport {
	position: relative;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.lgu-gallery__slides {
	position: relative;
	min-height: inherit;
}

.lgu-gallery__slide {
	position: absolute;
	top: 0;
	bottom: 0;
	opacity: 0;
	pointer-events: none;
	will-change: transform, opacity, filter;
	transition:
		left 1.2s cubic-bezier(0.65, 0, 0.35, 1),
		width 1.2s cubic-bezier(0.65, 0, 0.35, 1),
		opacity 1.0s cubic-bezier(0.65, 0, 0.35, 1),
		filter 1.0s cubic-bezier(0.65, 0, 0.35, 1);
}

.lgu-gallery__slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.82);
	opacity: 1;
	pointer-events: none;
	z-index: 3;
	transition: opacity 0.12s ease;
}

.lgu-gallery__slide.is-current {
	left: calc(var(--lgu-gallery-side-width) + var(--lgu-gallery-gap));
	width: calc(100% - ((var(--lgu-gallery-side-width) + var(--lgu-gallery-gap)) * 2));
	height: 100%;
	transform: translate3d(var(--lgu-gallery-drag-x), 0, 0);
	opacity: 1;
	pointer-events: auto;
	z-index: 3;
	filter: saturate(1) brightness(1) contrast(1);
}

.lgu-gallery__slide.is-current::after {
	opacity: 0;
	transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.2s;
}

.lgu-gallery__slide.is-prev,
.lgu-gallery__slide.is-next {
	width: var(--lgu-gallery-side-width);
	height: 100%;
	opacity: 1;
	z-index: 1;
	filter: saturate(0.72) brightness(1.06);
}

.lgu-gallery__slide.is-prev {
	left: 0;
}

.lgu-gallery__slide.is-next {
	left: calc(100% - var(--lgu-gallery-side-width));
}

.lgu-gallery__slide.is-prev::after {
	background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.88) 35%, rgba(255, 255, 255, 0.18) 100%);
}

.lgu-gallery__slide.is-next::after {
	background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.88) 35%, rgba(255, 255, 255, 0.18) 100%);
}

.lgu-gallery__slide.is-hidden {
	z-index: 0;
	visibility: hidden;
}

.lgu-gallery.is-dragging .lgu-gallery__viewport {
	cursor: grabbing;
}

.lgu-gallery.is-dragging .lgu-gallery__slide {
	transition: none;
}

.lgu-gallery__media {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

a.lgu-gallery__media::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	content: "";
}

.lgu-gallery__media.is-static {
	cursor: default;
}

.lgu-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lgu-gallery__slide-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.22) 38%, transparent 68%);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: opacity 1.0s cubic-bezier(0.65, 0, 0.35, 1);
}

.lgu-gallery__slide.is-current .lgu-gallery__slide-shade {
	opacity: 1;
	transition-delay: 0.25s;
}

.lgu-gallery__heading {
	position: absolute;
	bottom: clamp(24px, 3.5vw, 52px);
	left: clamp(24px, 3.5vw, 52px);
	z-index: 2;
	margin: 0;
	max-width: 72%;
	color: #fff;
	font-size: clamp(1.35rem, 2.2vw, 2.8rem);
	font-weight: 700;
	line-height: 1.18;
	opacity: 0;
	transform: translateY(12px);
	transition:
		opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1),
		transform 1.0s cubic-bezier(0.65, 0, 0.35, 1);
}

.lgu-gallery__slide.is-current .lgu-gallery__heading {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}

.lgu-gallery__slide-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.lgu-gallery__slide.is-current .lgu-gallery__slide-content {
	pointer-events: auto;
	opacity: 1;
	transition-delay: 0.35s;
}

.lgu-gallery__slide-content > * {
	margin-top: 0;
	margin-bottom: 0;
}

.lgu-gallery__slide-content > * + * {
	margin-top: 0.75em;
}

.lgu-gallery__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 34px;
}

.lgu-gallery__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--lgu-gallery-accent);
	border-radius: 50%;
	background: #fff;
	color: var(--lgu-gallery-accent);
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	transition:
		transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
		background-color 0.28s ease,
		color 0.28s ease,
		opacity 0.28s ease,
		border-color 0.28s ease;
}

.lgu-gallery__nav:hover:not(:disabled),
.lgu-gallery__nav:focus-visible:not(:disabled) {
	background: var(--lgu-gallery-accent);
	color: #fff;
	transform: translateY(-1px);
}

.lgu-gallery__nav:disabled {
	opacity: 0.45;
	cursor: default;
}

.lgu-gallery__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--lgu-gallery-accent);
	border-radius: 999px;
	background: #fff;
	color: var(--lgu-gallery-accent);
	font-size: 0.875rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition:
		transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
		background-color 0.28s ease,
		color 0.28s ease,
		border-color 0.28s ease;
}

.lgu-gallery__cta:hover,
.lgu-gallery__cta:focus-visible {
	background: var(--lgu-gallery-accent);
	color: #fff;
	transform: translateY(-1px);
}

.lgu-gallery__cta.is-static {
	cursor: default;
}

.lgu-gallery__cta.is-static:hover,
.lgu-gallery__cta.is-static:focus-visible {
	background: #fff;
	color: var(--lgu-gallery-accent);
	transform: none;
}

.lgu-gallery.is-single .lgu-gallery__nav {
	visibility: hidden;
}

@media (max-width: 900px) {
	.lgu-gallery {
		padding-top: 18px;
	}


	.lgu-gallery__slide.is-current {
		left: 0;
		width: 100%;
		transform: translate3d(var(--lgu-gallery-drag-x), 0, 0);
	}

	.lgu-gallery__slide.is-prev,
	.lgu-gallery__slide.is-next,
	.lgu-gallery__slide.is-hidden {
		opacity: 0;
		pointer-events: none;
	}

	.lgu-gallery__footer {
		justify-content: center;
		gap: 24px;
		margin-top: 34px;
	}

	.lgu-gallery__cta {
		min-width: 0;
		flex: 0 1 auto;
	}

	.lgu-gallery__nav {
		flex: 0 0 auto;
	}
}

.lgu-news-feed {
	--lgu-news-accent: #2b1c66;
	--lgu-news-gap: 24px;
	width: min(100%, 1760px);
	margin: 0 auto;
	padding: 24px 0;
}

.lgu-news-feed__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 48px;
}

.lgu-news-feed__heading {
	margin: 0;
	color: var(--lgu-news-accent);
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
}

.lgu-news-feed__header-nav {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lgu-news-feed__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--lgu-news-accent);
	border-radius: 50%;
	background: #fff;
	color: var(--lgu-news-accent);
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	transition:
		transform 0.28s cubic-bezier(0.65, 0, 0.35, 1),
		background-color 0.28s ease,
		color 0.28s ease,
		opacity 0.28s ease,
		border-color 0.28s ease;
}

.lgu-news-feed__nav:hover:not(:disabled),
.lgu-news-feed__nav:focus-visible:not(:disabled) {
	background: var(--lgu-news-accent);
	color: #fff;
	transform: translateY(-1px);
}

.lgu-news-feed__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.lgu-news-feed__track-wrapper {
	overflow: hidden;
}

.lgu-news-feed__track {
	display: flex;
	gap: var(--lgu-news-gap);
	transition: transform 1.0s cubic-bezier(0.65, 0, 0.35, 1);
}

.lgu-news-feed__card {
	display: flex;
	flex-direction: column;
	flex: 0 0 calc((100% - 2 * var(--lgu-news-gap)) / 3);
	min-width: 0;
}

.lgu-news-feed__image-link {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #eef2f7;
	text-decoration: none;
}

.lgu-news-feed__image-link.is-placeholder {
	position: relative;
}

.lgu-news-feed__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eff3f9 0%, #dfe7f3 100%);
}

.lgu-news-feed__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lgu-news-feed__meta {
	margin-top: 28px;
	color: #8a8d95;
	font-size: 0.95rem;
	line-height: 1.2;
}

.lgu-news-feed__title {
	margin: 18px 0 0;
	color: var(--lgu-news-accent);
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 500;
}

.lgu-news-feed__title a {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.lgu-news-feed__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: 36px;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--lgu-news-accent);
	border-radius: 999px;
	background: #fff;
	color: var(--lgu-news-accent);
	font-size: 0.875rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

.lgu-news-feed__button:hover,
.lgu-news-feed__button:focus-visible {
	background: var(--lgu-news-accent);
	color: #fff;
	transform: translateY(-1px);
}

@media (max-width: 1200px) {
	.lgu-news-feed__card {
		flex: 0 0 calc((100% - 2 * var(--lgu-news-gap)) / 2);
	}
}

@media (max-width: 782px) {
	.lgu-news-feed__header {
		margin-bottom: 32px;
	}

	.lgu-news-feed__nav {
		width: 44px;
		height: 44px;
	}

	.lgu-news-feed__card {
		flex: 0 0 100%;
	}
}

.lgu-hero-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #0f1016;
}

.lgu-hero-slider__slides {
	position: relative;
	min-height: inherit;
	touch-action: pan-y;
	-webkit-user-select: none;
	user-select: none;
}

.lgu-hero-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	will-change: opacity;
	transition: opacity 1.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.lgu-hero-slider__slide.is-current {
	opacity: 1;
	z-index: 1;
}

.lgu-hero-slider__slide.is-hidden {
	z-index: 0;
}

.lgu-hero-slider__frame {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.lgu-hero-slider__media,
.lgu-hero-slider__visual {
	display: block;
	width: 100%;
	height: 100%;
}

.lgu-hero-slider__visual {
	object-fit: cover;
	will-change: transform, filter;
}

.lgu-hero-slider__shade {
	position: absolute;
	inset: 0;
	opacity: 0.82;
	background:
		linear-gradient(180deg, rgba(8, 9, 13, 0.04) 0%, rgba(8, 9, 13, 0.18) 46%, rgba(8, 9, 13, 0.74) 100%);
	pointer-events: none;
	transition: opacity 1.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.lgu-hero-slider__content {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	height: 100%;
	opacity: 0;
	will-change: opacity, filter;
	transform: none !important;
	filter: blur(4px);
	transition:
		opacity 1.2s cubic-bezier(0.65, 0, 0.35, 1),
		filter 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.lgu-hero-slider__slide.is-current .lgu-hero-slider__shade {
	opacity: 1;
}

.lgu-hero-slider__slide.is-current .lgu-hero-slider__content {
	opacity: 1;
	filter: blur(0);
	transition-delay: 0.45s;
}

.lgu-hero-slider__headline {
	margin: 0;
	color: #fff;
	white-space: pre-line;
	text-wrap: balance;
}

.lgu-hero-slider__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	background: rgba(10, 12, 18, 0.25);
	color: #fff;
	backdrop-filter: blur(10px);
	transform: translateY(-50%);
	transition:
		background-color 0.28s ease,
		transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
		border-color 0.28s ease,
		opacity 0.28s ease;
	cursor: pointer;
}

.lgu-hero-slider__nav--prev {
	left: 24px;
}

.lgu-hero-slider__nav--next {
	right: 24px;
}

.lgu-hero-slider__nav:hover:not(:disabled),
.lgu-hero-slider__nav:focus-visible:not(:disabled) {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
	transform: translateY(calc(-50% - 1px));
}

.lgu-hero-slider__nav:disabled {
	opacity: 0.45;
	cursor: default;
}

.lgu-hero-slider__pagination {
	position: absolute;
	right: clamp(18px, 4vw, 38px);
	bottom: clamp(18px, 3vw, 34px);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
}

.lgu-hero-slider__pagination-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.lgu-hero-slider.is-dragging .lgu-hero-slider__frame {
	cursor: grabbing;
}

.lgu-hero-slider__pagination-dot {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.4);
	transition:
		transform 0.5s cubic-bezier(0.65, 0, 0.35, 1),
		background-color 0.5s cubic-bezier(0.65, 0, 0.35, 1),
		opacity 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.lgu-hero-slider__pagination-item.is-active .lgu-hero-slider__pagination-dot {
	background: #fff;
	transform: scaleY(1.5);
}

.lgu-hero-slider__slide.is-animating .lgu-hero-slider__visual {
	animation: lgu-hero-zoom-in 7s cubic-bezier(0, 0, 0.2, 1) both;
}

@keyframes lgu-hero-zoom-in {
	from {
		transform: scale(1.1);
		filter: saturate(1.04) brightness(0.94);
	}

	to {
		transform: scale(1);
		filter: saturate(1) brightness(1);
	}
}

@media (max-width: 782px) {


	.lgu-hero-slider__nav {
		width: 44px;
		height: 44px;
	}

	.lgu-hero-slider__nav--prev {
		left: 14px;
	}

	.lgu-hero-slider__nav--next {
		right: 14px;
	}

	.lgu-hero-slider__pagination {
		right: 16px;
		bottom: 18px;
		gap: 8px;
	}

	.lgu-hero-slider__pagination-item {
		width: 24px;
	}
}

.lgu-animated {
	backface-visibility: hidden;
	transform: translateZ(0);
}

.lgu-animated.lgu-anim-hidden {
	visibility: hidden;
}

.lgu-animated.lgu-anim-ready {
	visibility: visible;
}

.lgu-animated.lgu-anim-hover {
	cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
	.lgu-hero-slider__slide,
	.lgu-hero-slider__content,
	.lgu-hero-slider__shade,
	.lgu-hero-slider__nav,
	.lgu-hero-slider__pagination-dot {
		transition: none;
		filter: none;
	}

	.lgu-hero-slider__slide.is-animating .lgu-hero-slider__visual {
		animation: none;
	}

	.lgu-gallery__slide,
	.lgu-gallery__slide::after,
	.lgu-gallery__slide-shade,
	.lgu-gallery__heading,
	.lgu-gallery__image,
	.lgu-gallery__nav,
	.lgu-gallery__cta {
		transition: none;
	}

	.lgu-gallery__slide.is-current .lgu-gallery__slide-shade,
	.lgu-gallery__slide.is-current .lgu-gallery__heading {
		opacity: 1;
		transform: none;
	}

	.lgu-animated {
		visibility: visible;
	}
}
