.ls-oab-page,
.ls-oab-page * {
	box-sizing: border-box;
}

.ls-oab-page {
	--ls-oab-blue: #2664AE;
	--ls-oab-cyan: #2BBFCE;
	--ls-oab-text: #7A7A7A;
	--ls-oab-soft: #F6F6F6;
	--ls-oab-gap: 20px;
	--ls-oab-column-gap: 50px;
	padding: 70px clamp(20px, 3vw, 48px) 80px;
	font-family: "Raleway", Arial, sans-serif;
	font-size: 18px;
	line-height: 1.7;
	color: var(--ls-oab-text);
}

.ls-oab-page h1,
.ls-oab-page h2,
.ls-oab-page h3,
.ls-oab-page p,
.ls-oab-page ul,
.ls-oab-page ol,
.ls-oab-page figure {
	margin: 0;
}

.ls-oab-page a {
	color: var(--ls-oab-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.ls-oab-page a:hover,
.ls-oab-page a:focus-visible {
	color: #1d4f8c;
}

.ls-oab-layout {
	width: min(1600px, 100%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 26%);
	gap: var(--ls-oab-column-gap);
	align-items: start;
}

.ls-oab-layout--no-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

.ls-oab-article,
.ls-oab-article__header,
.ls-oab-content,
.ls-oab-stack {
	display: flex;
	flex-direction: column;
	gap: var(--ls-oab-gap);
	min-width: 0;
}

.ls-oab-block {
	width: 100%;
	min-width: 0;
}

.ls-oab-post-title,
.ls-oab-heading,
.ls-oab-related__heading,
.ls-oab-toc__title {
	font-family: "Champagne Limousines", "Raleway", Arial, sans-serif;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.01em;
	text-align: left;
	color: var(--ls-oab-blue);
}

.ls-oab-post-title {
	font-size: clamp(32px, 3vw, 44px);
}

.ls-oab-heading--h2 {
	font-size: clamp(28px, 2.4vw, 38px);
}

.ls-oab-toc__title {
	font-family: "Raleway", Arial, sans-serif;
	font-size: 26px !important;
	font-weight: 800 !important;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: 0;
}

.ls-oab-heading--h3 {
	font-size: clamp(24px, 2vw, 31px);
	color: var(--ls-oab-cyan);
}

.ls-oab-heading,
.ls-oab-post-title {
	scroll-margin-top: 120px;
}

.ls-oab-richtext {
	min-width: 0;
}

.ls-oab-richtext > * + * {
	margin-top: var(--ls-oab-gap);
}

.ls-oab-richtext p {
	text-align: justify;
}

.ls-oab-richtext ul,
.ls-oab-richtext ol {
	padding-left: 1.4em;
	text-align: left;
}

.ls-oab-richtext li + li {
	margin-top: 6px;
}

.ls-oab-hero {
	width: 100%;
	overflow: hidden;
}

.ls-oab-hero__image {
	display: block;
	width: 100%;
	height: clamp(280px, 32vw, 500px);
	max-height: 500px;
	object-fit: cover;
	border-radius: 0;
}

.ls-oab-intro,
.ls-oab-summary {
	background: var(--ls-oab-soft);
	padding: 20px;
	border-radius: 0;
}

.ls-oab-summary {
	border-left: 4px solid var(--ls-oab-blue);
}

.ls-oab-toc {
	padding: 20px;
	border: 1px solid var(--ls-oab-blue);
	background: #fff;
}

.ls-oab-toc__list {
	margin: 0;
	padding-left: 1.2em;
}

.ls-oab-toc__item + .ls-oab-toc__item {
	margin-top: 8px;
}

.ls-oab-toc__item--level-3 {
	margin-left: 20px;
}

.ls-oab-gallery {
	display: grid;
	gap: 10px;
}

.ls-oab-gallery--cols-1 {
	grid-template-columns: minmax(0, 1fr);
}

.ls-oab-gallery--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ls-oab-gallery--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ls-oab-gallery__item {
	min-width: 0;
	overflow: hidden;
}

.ls-oab-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 450px;
	object-fit: cover;
	border-radius: 0;
}

.ls-oab-gallery--cols-1 .ls-oab-gallery__image {
	max-height: 500px;
}

.ls-oab-gallery--cols-2 .ls-oab-gallery__item,
.ls-oab-gallery--cols-3 .ls-oab-gallery__item {
	height: clamp(280px, 30vw, 450px);
}

.ls-oab-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
}

.ls-oab-align-left {
	justify-content: flex-start;
}

.ls-oab-align-center {
	justify-content: center;
}

.ls-oab-align-right {
	justify-content: flex-end;
}

.ls-oab-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 24px;
	border: 1px solid var(--ls-oab-blue);
	border-radius: 0;
	background: var(--ls-oab-blue);
	color: #fff !important;
	font-family: "Raleway", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.ls-oab-button:hover,
.ls-oab-button:focus-visible {
	background: #1d4f8c;
	border-color: #1d4f8c;
	color: #fff !important;
}

.ls-oab-button--full {
	width: 100%;
}

.ls-oab-cta {
	padding: 24px;
	border-radius: 0;
}

.ls-oab-cta--outlined {
	border: 2px solid var(--ls-oab-blue);
	background: #fff;
}

.ls-oab-cta--filled {
	background: var(--ls-oab-blue);
	color: #fff;
}

.ls-oab-cta--filled .ls-oab-heading,
.ls-oab-cta--filled .ls-oab-richtext,
.ls-oab-cta--filled .ls-oab-richtext a {
	color: #fff;
}

.ls-oab-cta--filled .ls-oab-button {
	background: #fff;
	border-color: #fff;
	color: var(--ls-oab-blue) !important;
}

.ls-oab-video-grid {
	display: grid;
	gap: 20px;
}

.ls-oab-video-grid--cols-1 {
	grid-template-columns: minmax(0, 1fr);
}

.ls-oab-video-grid--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ls-oab-video-grid--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ls-oab-video-card {
	min-width: 0;
}

.ls-oab-video-card__cover,
.ls-oab-video-card__embed,
.ls-oab-video-card__fallback {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--ls-oab-soft);
	border-radius: 0;
}

.ls-oab-video-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ls-oab-video-card__play {
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	color: var(--ls-oab-blue);
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .18));
}

.ls-oab-video-card__embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.ls-oab-video-card__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-weight: 600;
}

.ls-oab-location {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 20px;
	align-items: stretch;
}

.ls-oab-location--no-map {
	grid-template-columns: minmax(0, 1fr);
}

.ls-oab-location__buttons {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.ls-oab-location__map {
	min-height: 360px;
	background: var(--ls-oab-soft);
}

.ls-oab-location__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
	border-radius: 0;
}

.ls-oab-page .ls-oab-faq {
	width: 100% !important;
	padding: 0 !important;
	background: transparent !important;
}

.ls-oab-page .ls-oab-faq__items {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

.ls-oab-page .ls-oab-faq__item {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 1px solid #e6ebf0 !important;
	border-radius: 0px !important;
	background: #f6f6f6 !important;
	box-shadow: none !important;
	transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease !important;
}

.ls-oab-page .ls-oab-faq__question,
.ls-oab-page .ls-oab-faq__question:link,
.ls-oab-page .ls-oab-faq__question:visited {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	width: 100% !important;
	min-height: 62px !important;
	margin: 0 !important;
	padding: 16px 16px 16px 20px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--ls-oab-blue) !important;
	font-family: "Raleway", Arial, sans-serif !important;
	font-size: 18px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	text-align: left !important;
	text-decoration: none !important;
	cursor: pointer !important;
	transition: color .22s ease, background-color .22s ease !important;
}

.ls-oab-page .ls-oab-faq__question > span:first-child {
	min-width: 0 !important;
	flex: 1 1 auto !important;
}

.ls-oab-page .ls-oab-faq__question:hover {
	background: rgba(38, 100, 174, .045) !important;
	color: #1d4f8c !important;
}

.ls-oab-page .ls-oab-faq__question:active {
	background: rgba(38, 100, 174, .075) !important;
}

.ls-oab-page .ls-oab-faq__question:focus,
.ls-oab-page .ls-oab-faq__question:focus-visible {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}

.ls-oab-page .ls-oab-faq__question[aria-expanded="true"] {
	background: #ffffff !important;
	color: #1d4f8c !important;
}

.ls-oab-page .ls-oab-faq__chevron {
	flex: 0 0 36px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	height: 36px !important;
	margin-left: auto !important;
	border: 1px solid rgba(38, 100, 174, .16) !important;
	border-radius: 50% !important;
	background: rgba(38, 100, 174, .07) !important;
	color: var(--ls-oab-blue) !important;
	transform: rotate(0deg) !important;
	transform-origin: center !important;
	transition: transform .4s cubic-bezier(.22, 1, .36, 1), background-color .25s ease, color .25s ease, border-color .25s ease !important;
}

.ls-oab-page .ls-oab-faq__chevron svg {
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	pointer-events: none !important;
}

.ls-oab-page .ls-oab-faq__question:hover .ls-oab-faq__chevron {
	background: rgba(38, 100, 174, .12) !important;
	border-color: rgba(38, 100, 174, .24) !important;
}

.ls-oab-page .ls-oab-faq__question[aria-expanded="true"] .ls-oab-faq__chevron {
	transform: rotate(180deg) !important;
	background: var(--ls-oab-blue) !important;
	border-color: var(--ls-oab-blue) !important;
	color: #ffffff !important;
}

.ls-oab-page .ls-oab-faq__answer {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
	background: #ffffff !important;
	opacity: 0 !important;
	transition: max-height .48s cubic-bezier(.22, 1, .36, 1), opacity .26s ease !important;
}

/* A max-height szándékosan NEM !important, hogy a FAQ JavaScript tudja animálni a nyitást. */
.ls-oab-page .ls-oab-faq.is-enhanced .ls-oab-faq__answer {
	max-height: 0;
}

.ls-oab-page .ls-oab-faq__question[aria-expanded="true"] + .ls-oab-faq__answer {
	opacity: 1 !important;
}

.ls-oab-page .ls-oab-faq__answer-inner {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 20px 20px !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--ls-oab-text) !important;
	font-family: "Raleway", Arial, sans-serif !important;
	font-size: 17px !important;
	font-weight: 400 !important;
	line-height: 1.7 !important;
}

.ls-oab-page .ls-oab-faq__answer-inner,
.ls-oab-page .ls-oab-faq__answer-inner p,
.ls-oab-page .ls-oab-faq__answer-inner ul,
.ls-oab-page .ls-oab-faq__answer-inner ol,
.ls-oab-page .ls-oab-faq__answer-inner li {
	text-align: left !important;
}

.ls-oab-page .ls-oab-faq__answer-inner > *:first-child,
.ls-oab-page .ls-oab-faq__answer-inner p:first-child {
	margin-top: 0 !important;
}

.ls-oab-page .ls-oab-faq__answer-inner > *:last-child,
.ls-oab-page .ls-oab-faq__answer-inner p:last-child {
	margin-bottom: 0 !important;
}

/* Elementor maradványok sem törhetik szét a saját FAQ megjelenését. */
.ls-oab-page .ls-oab-faq__answer-inner .elementor-element,
.ls-oab-page .ls-oab-faq__answer-inner .elementor-toggle,
.ls-oab-page .ls-oab-faq__answer-inner .elementor-toggle-item,
.ls-oab-page .ls-oab-faq__answer-inner .elementor-tab-content,
.ls-oab-page .ls-oab-faq__answer-inner .e-con,
.ls-oab-page .ls-oab-faq__answer-inner .e-con-full {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.ls-oab-page .ls-oab-faq__answer-inner .elementor-tab-title:empty,
.ls-oab-page .ls-oab-faq__answer-inner .elementor-widget-heading:empty,
.ls-oab-page .ls-oab-faq__answer-inner .elementor-toggle-item:empty {
	display: none !important;
}

.ls-oab-page .ls-oab-faq__answer-inner .elementor-tab-content p {
	margin: 0 !important;
}

.ls-oab-product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	max-height: 400px;
	border: 1px solid var(--ls-oab-blue);
	background: #fff;
	overflow: hidden;
}

.ls-oab-product--no-image {
	grid-template-columns: minmax(0, 1fr);
	max-height: none;
}

.ls-oab-product__media {
	min-width: 0;
	min-height: 260px;
	max-height: 400px;
	padding: 20px;
	background: #fff;
	overflow: hidden;
}

.ls-oab-product__image {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 360px;
	object-fit: contain;
	object-position: center;
}

.ls-oab-product__content {
	padding: 24px;
	overflow: auto;
	align-self: stretch;
}

.ls-oab-product--image-right .ls-oab-product__media {
	order: 2;
}

.ls-oab-product--image-right .ls-oab-product__content {
	order: 1;
}

.ls-oab-related {
	min-width: 0;
}

.ls-oab-related__heading {
	font-size: 28px !important;
	margin-bottom: 20px !important;
}

.ls-oab-related__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.ls-oab-related-card,
.ls-oab-related-card__link {
	display: block;
	width: 100%;
}

.ls-oab-related-card__link {
	text-decoration: none !important;
}

.ls-oab-related-card__media {
	width: 100%;
	height: 240px;
	overflow: hidden;
	background: var(--ls-oab-soft);
}

.ls-oab-related-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.ls-oab-related-card__link:hover .ls-oab-related-card__image,
.ls-oab-related-card__link:focus-visible .ls-oab-related-card__image {
	transform: scale(1.015);
}

.ls-oab-related-card__title {
	margin-top: 10px !important;
	font-family: "Raleway", Arial, sans-serif !important;
	font-size: 18px !important;
	font-weight: 500;
	line-height: 1.35;
	color: var(--ls-oab-blue);
	text-align: left;
}

/* Refined content blocks */
.ls-oab-gallery {
	align-items: start;
}

.ls-oab-gallery__item,
.ls-oab-gallery--cols-2 .ls-oab-gallery__item,
.ls-oab-gallery--cols-3 .ls-oab-gallery__item {
	height: auto;
	overflow: visible;
}

.ls-oab-gallery__image,
.ls-oab-gallery--cols-1 .ls-oab-gallery__image {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
	object-position: center;
}

.ls-oab-product {
	align-items: stretch;
	max-height: none;
	overflow: visible;
}

.ls-oab-product__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	max-height: none;
	overflow: visible;
}

.ls-oab-product__image {
	height: auto;
	max-height: 420px;
}

.ls-oab-product__content {
	justify-content: center;
	overflow: visible;
}

.ls-oab-related__heading {
	margin-bottom: 28px !important;
	font-family: "Champagne Limousines", "Raleway", Arial, sans-serif;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.2;
}

.ls-oab-related-card__title {
	font-family: "Raleway", Arial, sans-serif !important;
	font-size: 18px !important;
	font-weight: 500;
}

.ls-oab-video-card--tiktok {
	width: min(100%, 440px);
	justify-self: center;
}

.ls-oab-video-card--tiktok .ls-oab-video-card__cover,
.ls-oab-video-card--tiktok .ls-oab-video-card__embed,
.ls-oab-video-card--tiktok .ls-oab-video-card__fallback {
	aspect-ratio: 9 / 16;
	min-height: 560px;
	max-height: 760px;
}

.ls-oab-video-card--tiktok .ls-oab-video-card__image {
	object-fit: cover;
	object-position: center;
}

@media (max-width: 1100px) {
	.ls-oab-layout {
		grid-template-columns: minmax(0, 1fr) minmax(240px, 30%);
		gap: 32px;
	}
}

@media (max-width: 980px) {
	.ls-oab-page {
		padding-top: 50px;
	}

	.ls-oab-layout,
	.ls-oab-layout--with-sidebar {
		grid-template-columns: minmax(0, 1fr);
		gap: 50px;
	}

	.ls-oab-related__list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 20px;
	}

	.ls-oab-related-card__media {
		height: 220px;
	}
}

@media (max-width: 767px) {
	.ls-oab-page {
		padding: 36px 15px 56px;
		font-size: 17px;
		overflow-x: hidden;
	}

	.ls-oab-layout,
	.ls-oab-article,
	.ls-oab-content,
	.ls-oab-block,
	.ls-oab-richtext {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.ls-oab-post-title,
	.ls-oab-heading,
	.ls-oab-related-card__title,
	.ls-oab-richtext {
		overflow-wrap: anywhere;
	}

	.ls-oab-hero__image {
		height: clamp(220px, 62vw, 360px);
	}

	.ls-oab-toc,
	.ls-oab-intro,
	.ls-oab-summary,
	.ls-oab-cta {
		padding: 20px;
	}

	.ls-oab-toc__item--level-3 {
		margin-left: 10px;
	}

	.ls-oab-gallery--cols-2,
	.ls-oab-gallery--cols-3,
	.ls-oab-video-grid--cols-2,
	.ls-oab-video-grid--cols-3,
	.ls-oab-location,
	.ls-oab-product {
		grid-template-columns: minmax(0, 1fr);
	}

	.ls-oab-gallery--cols-2 .ls-oab-gallery__item,
	.ls-oab-gallery--cols-3 .ls-oab-gallery__item {
		height: auto;
	}

	.ls-oab-gallery__image {
		height: auto;
		max-height: 500px;
	}

	.ls-oab-product {
		max-height: none;
	}

	.ls-oab-product__media,
	.ls-oab-product__content {
		order: initial !important;
	}

	.ls-oab-product--image-right .ls-oab-product__content {
		order: 1 !important;
	}

	.ls-oab-product--image-right .ls-oab-product__media {
		order: 2 !important;
	}

	.ls-oab-product__media {
		min-height: 220px;
		padding: 16px;
	}

	.ls-oab-product__content {
		padding: 20px;
		overflow: visible;
	}

	.ls-oab-location__map,
	.ls-oab-location__map iframe {
		min-height: 280px;
	}

	.ls-oab-button-row {
		align-items: stretch;
		max-width: 100%;
	}

	.ls-oab-button {
		max-width: 100%;
		min-height: 46px;
	}

	.ls-oab-faq__question {
		padding: 16px;
		gap: 14px;
	}

	.ls-oab-related__list {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.ls-oab-related-card__media {
		height: clamp(200px, 58vw, 280px);
	}

	.ls-oab-richtext img,
	.ls-oab-richtext iframe,
	.ls-oab-richtext video {
		max-width: 100%;
	}
}

@media (max-width: 420px) {
	.ls-oab-page {
		padding-top: 30px;
		padding-bottom: 48px;
	}

	.ls-oab-faq__question,
	.ls-oab-faq__answer-inner {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 767px) {
	.ls-oab-page .ls-oab-faq {
		padding: 22px 18px;
	}

	.ls-oab-video-card--tiktok .ls-oab-video-card__cover,
	.ls-oab-video-card--tiktok .ls-oab-video-card__embed,
	.ls-oab-video-card--tiktok .ls-oab-video-card__fallback {
		min-height: 0;
		max-height: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ls-oab-page *,
	.ls-oab-page *::before,
	.ls-oab-page *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

.ls-oab-global-section {
	width: 100%;
	min-width: 0;
}

.ls-oab-carousel {
	--ls-oab-carousel-per-view: 4;
	position: relative;
	min-width: 0;
	padding: 0 34px 30px;
}

.ls-oab-carousel__viewport {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.ls-oab-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.ls-oab-carousel__track {
	display: flex;
	gap: 10px;
	width: 100%;
}

.ls-oab-carousel__slide {
	flex: 0 0 calc((100% - 30px) / 4);
	width: calc((100% - 30px) / 4);
	aspect-ratio: 1 / 1;
	overflow: hidden;
	scroll-snap-align: start;
	background: var(--ls-oab-soft);
}

.ls-oab-carousel__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ls-oab-carousel__arrow {
	position: absolute;
	top: calc(50% - 15px);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 46px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #4d4d4d;
	cursor: pointer;
	transform: translateY(-50%);
}

.ls-oab-carousel__arrow--prev {
	left: 0;
}

.ls-oab-carousel__arrow--next {
	right: 0;
}

.ls-oab-carousel__arrow:disabled {
	opacity: .25;
	cursor: default;
}

.ls-oab-carousel__arrow:focus-visible,
.ls-oab-carousel__dot:focus-visible,
.ls-oab-socials__link:focus-visible,
.ls-oab-post-nav__item:focus-visible {
	outline: 2px solid var(--ls-oab-blue);
	outline-offset: 3px;
}

.ls-oab-carousel__dots {
	position: absolute;
	left: 34px;
	right: 34px;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 12px;
}

.ls-oab-carousel__dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #c9c9c9;
	cursor: pointer;
}

.ls-oab-carousel__dot[aria-current="true"] {
	background: #4d4d4d;
}

.ls-oab-carousel--static .ls-oab-carousel__arrow,
.ls-oab-carousel--static .ls-oab-carousel__dots {
	display: none;
}

.ls-oab-carousel--static {
	padding-bottom: 0;
}

.ls-oab-global-banner__link,
.ls-oab-global-banner__media {
	display: block;
	width: 100%;
	overflow: hidden;
}

.ls-oab-global-banner__image {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.ls-oab-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	width: 100%;
}

.ls-oab-socials__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--ls-oab-blue);
	color: #fff !important;
	text-decoration: none !important;
	transition: background-color .2s ease, transform .2s ease;
}

.ls-oab-socials__link:hover {
	background: #1d4f8c;
	color: #fff !important;
	transform: translateY(-1px);
}

.ls-oab-post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	width: 100%;
	padding-top: 20px;
}

.ls-oab-post-nav__item {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 16px 0;
	color: var(--ls-oab-blue);
	text-decoration: none !important;
}

.ls-oab-post-nav__item--next {
	grid-column: 2;
	justify-content: flex-end;
	text-align: right;
}

.ls-oab-post-nav--both .ls-oab-post-nav__item--prev {
	padding-right: 24px;
	border-right: 1px solid #d8d8d8;
}

.ls-oab-post-nav--both .ls-oab-post-nav__item--next {
	padding-left: 24px;
}

.ls-oab-post-nav__icon {
	flex: 0 0 auto;
	display: inline-flex;
	color: var(--ls-oab-blue);
}

.ls-oab-post-nav__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	font-family: "Raleway", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.35;
}

.ls-oab-post-nav__text strong {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.ls-oab-carousel {
		--ls-oab-carousel-per-view: 3;
	}

	.ls-oab-carousel__slide {
		flex-basis: calc((100% - 20px) / 3);
		width: calc((100% - 20px) / 3);
	}
}

@media (max-width: 767px) {
	.ls-oab-carousel {
		--ls-oab-carousel-per-view: 2;
		padding-left: 28px;
		padding-right: 28px;
	}

	.ls-oab-carousel__slide {
		flex-basis: calc((100% - 10px) / 2);
		width: calc((100% - 10px) / 2);
	}

	.ls-oab-carousel__dots {
		left: 28px;
		right: 28px;
	}

	.ls-oab-carousel__arrow {
		width: 28px;
	}

	.ls-oab-post-nav {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	.ls-oab-post-nav__item--prev,
	.ls-oab-post-nav__item--next {
		grid-column: 1;
		padding: 14px 0 !important;
		border: 0 !important;
	}

	.ls-oab-post-nav__item--next {
		border-top: 1px solid #e2e2e2 !important;
	}
}

@media (max-width: 520px) {
	.ls-oab-carousel {
		--ls-oab-carousel-per-view: 1;
		padding-left: 24px;
		padding-right: 24px;
	}

	.ls-oab-carousel__slide {
		flex-basis: 100%;
		width: 100%;
	}

	.ls-oab-carousel__dots {
		left: 24px;
		right: 24px;
	}

	.ls-oab-socials__link {
		width: 44px;
		height: 44px;
	}
}