.oc-qg {
	--oc-qg-bg: #f2f1ed;
	--oc-qg-heading: #1a1a1a;
	--oc-qg-diamond: #8ba870;
	--oc-qg-divider-line: #1a1a1a;
	--oc-qg-line: #1a1a1a;
	--oc-qg-category: #1a1a1a;
	--oc-qg-title: #1a1a1a;
	--oc-qg-btn-bg: #ffffff;
	--oc-qg-btn-text: #1a1a1a;
	--oc-qg-btn-border: #1a1a1a;
	--oc-qg-btn-shadow: #1a1a1a;
	--oc-qg-btn-diamond: #1a1a1a;
	--oc-qg-arrow: #1a1a1a;
	--oc-qg-gap: 24px;
	--oc-qg-per-view: 3;
	position: relative;
	isolation: isolate;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	background-color: var(--oc-qg-bg);
	padding: 64px 0 48px;
}

.oc-qg *,
.oc-qg *::before,
.oc-qg *::after {
	box-sizing: border-box;
}

.oc-qg__inner {
	position: relative;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
}

.oc-qg__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 760px;
	margin: 0 auto 40px;
}

.oc-qg__heading {
	margin: 0 0 16px;
	color: var(--oc-qg-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3.2vw, 2.65rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.oc-qg__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
}

.oc-qg__divider-line {
	flex: 1 1 auto;
	height: 1px;
	min-width: 28px;
	background-color: var(--oc-qg-divider-line);
	opacity: 0.85;
}

.oc-qg__divider-diamond {
	display: inline-block;
	flex: 0 0 auto;
	color: var(--oc-qg-diamond);
	font-size: 10px;
	line-height: 1;
}

.oc-qg__viewport {
	overflow: hidden;
	width: 100%;
}

.oc-qg__track {
	display: flex;
	align-items: stretch;
	gap: var(--oc-qg-gap);
	transition: transform 0.45s ease;
	will-change: transform;
}

.oc-qg__slide {
	flex: 0 0 calc((100% - (var(--oc-qg-per-view) - 1) * var(--oc-qg-gap)) / var(--oc-qg-per-view));
	min-width: 0;
}

.oc-qg__card {
	position: relative;
	height: 100%;
	min-height: 400px;
	background-color: var(--oc-qg-card-bg, #d8b4b8);
	padding: 16px;
	display: flex;
}

.oc-qg__card-frame {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--oc-qg-line);
	width: 100%;
	min-height: 0;
}

.oc-qg__rails {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	padding: 12px 14px 0;
	pointer-events: none;
}

.oc-qg__rails--bottom {
	padding: 0 14px 12px;
	margin-top: auto;
}

.oc-qg__rail {
	display: block;
	width: 100%;
	height: var(--oc-qg-line-w, 1px);
	background-color: var(--oc-qg-line);
}

.oc-qg__card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	padding: 24px 18px 22px;
	gap: 24px;
	min-height: 0;
}

.oc-qg__category {
	margin: 0;
	color: var(--oc-qg-category);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.4;
}

.oc-qg__title {
	margin: 0;
	color: var(--oc-qg-title);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.4rem, 2vw, 1.9rem);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -0.01em;
	max-width: 12em;
}

.oc-qg__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	background-color: var(--oc-qg-btn-bg);
	color: var(--oc-qg-btn-text);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.3;
	border: 1px solid var(--oc-qg-btn-border);
	border-radius: 0;
	box-shadow: 2px 2px 0 var(--oc-qg-btn-shadow);
	padding: 11px 18px;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.oc-qg__btn:hover,
.oc-qg__btn:focus {
	text-decoration: none;
	color: var(--oc-qg-btn-text);
	transform: translateY(-1px);
}

.oc-qg.no-btn-shadow .oc-qg__btn {
	box-shadow: none;
}

.oc-qg__btn-diamond {
	display: inline-block;
	font-size: 7px;
	line-height: 1;
	color: var(--oc-qg-btn-diamond);
	transform: translateY(-0.05em);
	flex-shrink: 0;
}

.oc-qg__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-top: 32px;
}

.oc-qg__arrow,
button.oc-qg__arrow,
.elementor-widget-ouryclark-quick-guides .oc-qg__arrow {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	min-width: 44px !important;
	max-width: 44px !important;
	height: 44px !important;
	min-height: 44px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: var(--oc-qg-arrow, #1a1a1a) !important;
	cursor: pointer;
	line-height: 1 !important;
	text-decoration: none !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	transition: opacity 0.2s ease;
}

.oc-qg__arrow:hover,
.oc-qg__arrow:focus,
.oc-qg__arrow:focus-visible,
button.oc-qg__arrow:hover,
button.oc-qg__arrow:focus {
	opacity: 0.7;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	color: var(--oc-qg-arrow, #1a1a1a) !important;
}

.oc-qg__arrow.is-disabled,
.oc-qg__arrow[aria-disabled="true"],
.oc-qg__arrow:disabled {
	opacity: 0.35 !important;
	cursor: default !important;
	pointer-events: none;
}

.oc-qg__chevron,
.oc-qg__arrow svg,
.oc-qg__arrow i,
.oc-qg__arrow img {
	display: block !important;
	width: 22px !important;
	min-width: 22px !important;
	height: 22px !important;
	min-height: 22px !important;
	max-width: none !important;
	flex: 0 0 auto !important;
	font-size: 22px !important;
	color: inherit !important;
	fill: currentColor;
	overflow: visible !important;
}

.oc-qg__arrow img {
	object-fit: contain;
}

.oc-qg__arrow-fallback {
	display: block;
	font-size: var(--oc-qg-arrow-size, 28px);
	font-weight: 300;
	line-height: 1;
	color: inherit;
}

@media (max-width: 1024px) {
	.oc-qg {
		--oc-qg-per-view: 2;
		padding: 56px 0 40px;
	}

	.oc-qg__inner {
		padding: 0 28px;
	}

	.oc-qg__header {
		margin-bottom: 32px;
	}

	.oc-qg__card {
		min-height: 360px;
	}
}

@media (max-width: 640px) {
	.oc-qg {
		--oc-qg-per-view: 1;
		padding: 44px 0 36px;
	}

	.oc-qg__inner {
		padding: 0 20px;
	}

	.oc-qg__card {
		min-height: 340px;
	}

	.oc-qg__btn {
		width: 100%;
	}
}
