/**
 * SEO Content Machine Gateway - Frontend Styles
 * @version 2.4.0
 */

/* ── Content & Figure Styles ── */
figure.scm-image {
	margin: 1.8em auto;
	text-align: center;
}
figure.scm-image img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}
figure.scm-image figcaption.scm-image-caption {
	font-size: 0.88em;
	color: #666666;
	font-style: italic;
	margin-top: 0.6em;
	text-align: center;
	line-height: 1.45;
}

/* ── SCM Accordion / FAQ (5 Styles, Light & Dark Themes, Zero-JS) ── */
.scm-accordion {
	margin: 2.2em 0;
	clear: both;
	font-family: inherit;
}
.scm-accordion-heading {
	font-size: 1.35em;
	font-weight: 700;
	margin-bottom: 14px;
	color: #1e293b;
	line-height: 1.35;
}
.scm-accordion-item {
	margin-bottom: 10px;
	overflow: hidden;
	transition: all 0.2s ease;
}
.scm-accordion-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	font-weight: 600;
	font-size: 1.02em;
	color: #1e293b;
	cursor: pointer;
	list-style: none;
	user-select: none;
	transition: background 0.15s ease, color 0.15s ease;
}
.scm-accordion-title::-webkit-details-marker {
	display: none;
}
.scm-accordion-title-text {
	flex-grow: 1;
	padding-right: 12px;
	line-height: 1.45;
}
.scm-accordion-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	color: #64748b;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}
.scm-accordion-item[open] .scm-accordion-icon {
	transform: rotate(180deg);
	color: #0f172a;
}
.scm-accordion-content {
	padding: 16px 18px;
	color: #334155;
	font-size: 0.98em;
	line-height: 1.65;
}
.scm-accordion-content p:last-child {
	margin-bottom: 0;
}

/* FAQ Style 1: Minimalist Border */
.scm-faq-style-1 .scm-accordion-item {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
}
.scm-faq-style-1 .scm-accordion-item:hover {
	border-color: #cbd5e1;
}
.scm-faq-style-1 .scm-accordion-item[open] {
	border-color: #94a3b8;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.scm-faq-style-1 .scm-accordion-item[open] .scm-accordion-title {
	border-bottom: 1px solid #f1f5f9;
	background: #f8fafc;
	color: #0f172a;
}

/* FAQ Style 2: Filled Soft Cards */
.scm-faq-style-2 .scm-accordion-item {
	border-radius: 8px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}
.scm-faq-style-2 .scm-accordion-item:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
}
.scm-faq-style-2 .scm-accordion-item[open] {
	background: #ffffff;
	border-color: #94a3b8;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.scm-faq-style-2 .scm-accordion-item[open] .scm-accordion-title {
	color: #0f172a;
}

/* FAQ Style 3: Left Accent Brand Line */
.scm-faq-style-3 .scm-accordion-item {
	border: 1px solid #e2e8f0;
	border-left: 4px solid #cbd5e1;
	border-radius: 4px 8px 8px 4px;
	background: #ffffff;
}
.scm-faq-style-3 .scm-accordion-item:hover {
	border-left-color: #64748b;
	border-color: #cbd5e1;
}
.scm-faq-style-3 .scm-accordion-item[open] {
	border-left-color: #1e293b;
	border-color: #cbd5e1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.scm-faq-style-3 .scm-accordion-item[open] .scm-accordion-title {
	color: #0f172a;
	font-weight: 700;
}

/* FAQ Style 4: Modern Gradient Pill */
.scm-faq-style-4 .scm-accordion-item {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
.scm-faq-style-4 .scm-accordion-item:hover {
	border-color: #cbd5e1;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.scm-faq-style-4 .scm-accordion-item[open] {
	border-color: #94a3b8;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.scm-faq-style-4 .scm-accordion-item[open] .scm-accordion-title {
	background: #f8fafc;
	color: #0f172a;
	border-bottom: 1px solid #f1f5f9;
}
.scm-faq-style-4 .scm-accordion-item[open] .scm-accordion-icon {
	color: #0f172a;
}

/* FAQ Style 5: Elegant Clean Divider */
.scm-faq-style-5 .scm-accordion-item {
	border: none;
	border-bottom: 1px solid #e2e8f0;
	border-radius: 0;
	background: transparent;
}
.scm-faq-style-5 .scm-accordion-title {
	padding: 16px 4px;
	color: #1e293b;
}
.scm-faq-style-5 .scm-accordion-title:hover {
	color: #0f172a;
}
.scm-faq-style-5 .scm-accordion-content {
	padding: 6px 4px 18px 4px;
	color: #475569;
}
.scm-faq-style-5 .scm-accordion-item[open] .scm-accordion-title {
	color: #0f172a;
}
.scm-faq-style-5 .scm-accordion-item[open] .scm-accordion-icon {
	color: #0f172a;
}

/* FAQ Dark Theme Overrides */
.scm-accordion.scm-theme-dark .scm-accordion-heading { color: #f8fafc; }
.scm-accordion.scm-theme-dark .scm-accordion-title { color: #f1f5f9; }
.scm-accordion.scm-theme-dark .scm-accordion-content { color: #cbd5e1; }
.scm-accordion.scm-theme-dark .scm-accordion-icon { color: #94a3b8; }
.scm-accordion.scm-theme-dark.scm-faq-style-1 .scm-accordion-item { background: #1e293b; border-color: #334155; }
.scm-accordion.scm-theme-dark.scm-faq-style-1 .scm-accordion-item[open] { border-color: #38bdf8; }
.scm-accordion.scm-theme-dark.scm-faq-style-1 .scm-accordion-item[open] .scm-accordion-title { background: #0f172a; border-bottom-color: #334155; color: #38bdf8; }
.scm-accordion.scm-theme-dark.scm-faq-style-2 .scm-accordion-item { background: #1e293b; }
.scm-accordion.scm-theme-dark.scm-faq-style-2 .scm-accordion-item[open] { border-color: #475569; }
.scm-accordion.scm-theme-dark.scm-faq-style-3 .scm-accordion-item { background: #1e293b; border-color: #334155; }
.scm-accordion.scm-theme-dark.scm-faq-style-4 .scm-accordion-item { background: #1e293b; border-color: #334155; }
.scm-accordion.scm-theme-dark.scm-faq-style-5 .scm-accordion-item { border-bottom-color: #334155; }


/* ── SCM Topic Cluster Navigation Styles (8 Distinct Layout Architectures, Light & Dark) ── */
.scm-cluster-nav {
	margin: 2.2em 0;
	padding: 1.5em;
	border-radius: 10px;
	clear: both;
}
.scm-cluster-heading {
	margin: 0 0 1.1em 0;
	font-size: 1.15em;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

/* List-based Base (Styles 1, 3, 5, 7, 8) */
.scm-cluster-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.scm-cluster-item {
	margin-bottom: 0.75em;
	display: flex;
	align-items: baseline;
}
.scm-cluster-num {
	font-weight: 700;
	margin-right: 0.6em;
	font-size: 0.88em;
	opacity: 0.65;
}
.scm-cluster-link {
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}
.scm-cluster-item.is-current .scm-cluster-link {
	font-weight: 700;
	text-decoration: underline;
}

/* Style 1: Classic Numbered Vertical List */
.scm-theme-light.scm-style-1 { background: #f8fafc; border: 1px solid #e2e8f0; }
.scm-theme-light.scm-style-1 .scm-cluster-heading { color: #1e293b; }
.scm-theme-light.scm-style-1 .scm-cluster-link { color: #0284c7; }
.scm-theme-light.scm-style-1 .scm-cluster-item { border-bottom: 1px solid #f1f5f9; padding-bottom: 0.6em; }
.scm-theme-light.scm-style-1 .scm-cluster-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

/* Style 2: 2-Column Responsive Card Grid */
.scm-cluster-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 12px;
	margin: 0;
}
.scm-cluster-card {
	display: flex;
	align-items: center;
	padding: 12px 14px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
	position: relative;
}
.scm-theme-light .scm-cluster-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.scm-theme-light .scm-cluster-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.08);
	border-color: #0284c7;
}
.scm-card-badge {
	font-size: 11px;
	font-weight: 700;
	padding: 3px 7px;
	border-radius: 4px;
	background: #e0f2fe;
	color: #0369a1;
	margin-right: 10px;
	flex-shrink: 0;
}
.scm-card-content {
	flex: 1;
	min-width: 0;
}
.scm-card-title {
	font-size: 13.5px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.35;
	display: block;
}
.scm-card-arrow {
	font-size: 14px;
	color: #94a3b8;
	margin-left: 8px;
	transition: transform 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}
.scm-cluster-card:hover .scm-card-arrow {
	color: #0284c7;
	transform: translateX(3px);
}
.scm-cluster-card.is-current {
	border-color: #0284c7;
	background: #f0f9ff;
}

/* Style 3: Magazine List with Left Accent Border */
.scm-theme-light.scm-style-3 {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-left: 4px solid #0284c7;
	padding: 1.5em 1.8em;
}
.scm-theme-light.scm-style-3 .scm-cluster-heading { color: #0f172a; }
.scm-theme-light.scm-style-3 .scm-cluster-link { color: #0369a1; }
.scm-theme-light.scm-style-3 .scm-cluster-item { margin-bottom: 0.85em; }

/* Style 4: Modern Tag / Pill Capsules (Horizontal Flex) */
.scm-cluster-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}
.scm-cluster-chip {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px;
	border-radius: 9999px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.2s ease;
}
.scm-theme-light .scm-cluster-chip {
	background: #ffffff;
	border: 1px solid #cbd5e1;
	color: #334155;
	box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.scm-theme-light .scm-cluster-chip:hover {
	background: #0284c7;
	color: #ffffff;
	border-color: #0284c7;
	transform: translateY(-1px);
}
.scm-chip-dot {
	font-size: 8px;
	margin-right: 7px;
	color: #0284c7;
	transition: color 0.2s ease;
}
.scm-cluster-chip:hover .scm-chip-dot {
	color: #ffffff;
}
.scm-cluster-chip.is-current {
	background: #0284c7;
	color: #ffffff;
	border-color: #0284c7;
	font-weight: 600;
}
.scm-cluster-chip.is-current .scm-chip-dot {
	color: #ffffff;
}

/* Style 5: Editorial Callout Box with Accent Rail */
.scm-theme-light.scm-style-5 {
	background: #fafaf9;
	border: 1px solid #e7e5e4;
	border-top: 3px solid #f59e0b;
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.scm-theme-light.scm-style-5 .scm-cluster-heading { color: #92400e; }
.scm-theme-light.scm-style-5 .scm-cluster-link { color: #b45309; }
.scm-theme-light.scm-style-5 .scm-cluster-item { border-bottom: 1px dashed #e7e5e4; padding-bottom: 0.6em; }
.scm-theme-light.scm-style-5 .scm-cluster-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

/* Style 6: Connected Step Timeline (Sequential Flow) */
.scm-cluster-timeline {
	position: relative;
	padding-left: 26px;
	border-left: 2px dashed #93c5fd;
	margin-left: 12px;
	margin-top: 0.5em;
}
.scm-timeline-step {
	position: relative;
	margin-bottom: 16px;
}
.scm-timeline-step:last-child {
	margin-bottom: 0;
}
.scm-step-marker {
	position: absolute;
	left: -37px;
	top: 1px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #0284c7;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 3px #ffffff;
}
.scm-step-link {
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	color: #0369a1;
	line-height: 1.4;
	transition: color 0.2s ease;
}
.scm-timeline-step.is-current .scm-step-marker {
	background: #15803d;
}
.scm-timeline-step.is-current .scm-step-link {
	font-weight: 700;
	color: #15803d;
	text-decoration: underline;
}

/* Style 7: Alternating Striped Rows Table */
.scm-theme-light.scm-style-7 {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	padding: 1.2em;
}
.scm-theme-light.scm-style-7 .scm-cluster-heading { color: #0f172a; padding: 0 0.5em; }
.scm-theme-light.scm-style-7 .scm-cluster-item {
	padding: 10px 12px;
	border-radius: 6px;
	margin-bottom: 4px;
}
.scm-theme-light.scm-style-7 .scm-cluster-item:nth-child(even) {
	background: #f8fafc;
}
.scm-theme-light.scm-style-7 .scm-cluster-item:hover {
	background: #f1f5f9;
}
.scm-theme-light.scm-style-7 .scm-cluster-link { color: #2563eb; }

/* Style 8: Minimalist Clean Links */
.scm-theme-light.scm-style-8 {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.scm-theme-light.scm-style-8 .scm-cluster-heading { color: #0f172a; }
.scm-theme-light.scm-style-8 .scm-cluster-link { color: #2563eb; }

/* ── Dark Theme Support Across All Styles ── */
.scm-theme-dark.scm-cluster-nav { background: #0f172a; border: 1px solid #334155; }
.scm-theme-dark .scm-cluster-heading { color: #f8fafc; }
.scm-theme-dark .scm-cluster-link { color: #38bdf8; }
.scm-theme-dark .scm-cluster-num { color: #94a3b8; }
.scm-theme-dark .scm-cluster-card { background: #1e293b; border-color: #334155; }
.scm-theme-dark .scm-cluster-card:hover { border-color: #38bdf8; }
.scm-theme-dark .scm-card-badge { background: #075985; color: #bae6fd; }
.scm-theme-dark .scm-card-title { color: #f1f5f9; }
.scm-theme-dark .scm-cluster-chip { background: #1e293b; border-color: #475569; color: #e2e8f0; }
.scm-theme-dark .scm-cluster-chip:hover { background: #0284c7; color: #ffffff; border-color: #0284c7; }
.scm-theme-dark .scm-cluster-timeline { border-left-color: #1e3a8a; }
.scm-theme-dark .scm-step-marker { box-shadow: 0 0 0 3px #0f172a; }
.scm-theme-dark.scm-style-7 .scm-cluster-item:nth-child(even) { background: #1e293b; }
.scm-theme-dark.scm-style-7 .scm-cluster-item:hover { background: #334155; }


/* ── SCM Gallery Engine: Uniform Grid Layout ── */
.scm-gallery-grid {
	display: grid;
	grid-template-columns: repeat(var(--scm-cols, 3), 1fr);
	gap: var(--scm-gap, 20px);
	margin: 1.8em 0;
	width: 100%;
}
.scm-gallery-grid .scm-gallery-item {
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-radius: var(--scm-radius, 8px);
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
}
.scm-gallery-grid .scm-gallery-item:hover {
	transform: translateY(-3px);
}
.scm-gallery-grid .scm-gallery-thumb-link {
	position: relative;
	display: block;
	width: 100%;
	padding-top: var(--scm-ratio, 66.6%);
	overflow: hidden;
	background: #f1f5f9;
	cursor: zoom-in;
}
.scm-gallery-grid .scm-gallery-thumb-link.scm-no-zoom {
	cursor: default;
}
.scm-gallery-grid .scm-gallery-thumb-link img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.35s ease;
}
.scm-gallery-grid .scm-gallery-thumb-link:hover img {
	transform: scale(1.04);
}


/* ── SCM Gallery Engine: Masonry Staggered Layout ── */
.scm-gallery-masonry {
	-webkit-column-count: var(--scm-cols, 3);
	-moz-column-count: var(--scm-cols, 3);
	column-count: var(--scm-cols, 3);
	columns: var(--scm-cols, 3);
	column-gap: var(--scm-gap, 20px);
	margin: 1.8em 0;
	width: 100%;
}
.scm-gallery-masonry .scm-gallery-item {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	display: inline-block;
	width: 100%;
	margin: 0 0 var(--scm-gap, 20px) 0;
	border-radius: var(--scm-radius, 8px);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.scm-gallery-masonry .scm-gallery-item:hover {
	transform: translateY(-3px);
}
.scm-gallery-masonry .scm-gallery-thumb-link {
	display: block;
	width: 100%;
	background: #f1f5f9;
	cursor: zoom-in;
}
.scm-gallery-masonry .scm-gallery-thumb-link.scm-no-zoom {
	cursor: default;
}
.scm-gallery-masonry .scm-gallery-thumb-link img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	transition: transform 0.35s ease;
}
.scm-gallery-masonry .scm-gallery-thumb-link:hover img {
	transform: scale(1.03);
}


/* ── SCM Gallery Themes ── */
/* Light Theme */
.scm-theme-light .scm-gallery-item {
	background: #ffffff;
	border: 1px solid #f1f5f9;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.scm-theme-light .scm-gallery-item:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.scm-theme-light .scm-gallery-thumb-link {
	background: #f8fafc;
}
.scm-theme-light .scm-gallery-caption {
	background: #ffffff;
	color: #475569;
	border-top: 1px solid #f1f5f9;
}

/* Dark Theme */
.scm-theme-dark .scm-gallery-item {
	background: #1e293b;
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.scm-theme-dark .scm-gallery-item:hover {
	box-shadow: 0 8px 26px rgba(0,0,0,0.5);
	border-color: rgba(255,255,255,0.16);
}
.scm-theme-dark .scm-gallery-thumb-link {
	background: #0f172a;
}
.scm-theme-dark .scm-gallery-caption {
	background: #1e293b;
	color: #cbd5e1;
	border-top: 1px solid rgba(255,255,255,0.08);
}


/* ── SCM Gallery Captions ── */
.scm-gallery-caption {
	padding: 10px 14px;
	font-size: 0.88em;
	line-height: 1.45;
	margin: 0;
	box-sizing: border-box;
}

/* Caption Style 1: Below (Classic) */
.scm-caption-below .scm-gallery-caption {
	text-align: center;
}

/* Caption Style 2: Bottom Gradient Overlay */
.scm-caption-overlay_bottom .scm-gallery-item {
	position: relative;
}
.scm-caption-overlay_bottom .scm-gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.42) 65%, transparent 100%) !important;
	color: #ffffff !important;
	border-top: none !important;
	padding: 26px 12px 10px 12px !important;
	text-shadow: 0 1px 3px rgba(0,0,0,0.85);
	text-align: center;
	pointer-events: none;
	z-index: 2;
}

/* Caption Style 3: Hover Reveal Overlay */
.scm-caption-overlay_hover .scm-gallery-item {
	position: relative;
}
.scm-caption-overlay_hover .scm-gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.48) 65%, transparent 100%) !important;
	color: #ffffff !important;
	border-top: none !important;
	padding: 26px 12px 10px 12px !important;
	text-shadow: 0 1px 3px rgba(0,0,0,0.85);
	text-align: center;
	pointer-events: none;
	z-index: 2;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.scm-caption-overlay_hover .scm-gallery-item:hover .scm-gallery-caption {
	opacity: 1;
	transform: translateY(0);
}


/* ── Mobile Responsive Layout ── */
@media (max-width: 768px) {
	.scm-gallery-grid {
		grid-template-columns: repeat(var(--scm-cols-sm, 2), 1fr) !important;
		gap: 12px !important;
	}
	.scm-gallery-masonry {
		-webkit-column-count: var(--scm-cols-sm, 2) !important;
		column-count: var(--scm-cols-sm, 2) !important;
		columns: var(--scm-cols-sm, 2) !important;
		column-gap: 12px !important;
	}
	.scm-gallery-masonry .scm-gallery-item {
		margin-bottom: 12px !important;
	}
}


/* ── SCM Ultra-lightweight Vanilla Lightbox ── */
.scm-lb-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(11, 11, 11, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 9999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}
.scm-lb-overlay.is-active {
	opacity: 1;
	visibility: visible;
}
.scm-lb-content {
	position: relative;
	max-width: 92vw;
	max-height: 88vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.scm-lb-content img {
	max-width: 90vw;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
	user-select: none;
	animation: scmZoomIn 0.25s ease;
}
@keyframes scmZoomIn {
	from { transform: scale(0.96); opacity: 0.8; }
	to { transform: scale(1); opacity: 1; }
}
.scm-lb-caption {
	color: #e2e8f0;
	margin-top: 12px;
	font-size: 14px;
	text-align: center;
	max-width: 780px;
	line-height: 1.4;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.scm-lb-counter {
	position: absolute;
	top: -34px;
	left: 4px;
	color: #cbd5e1;
	font-size: 13px;
	font-weight: 500;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.scm-lb-btn {
	position: absolute;
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	border: none !important;
	outline: none !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35) !important;
	margin: 0 !important;
	padding: 0 !important;
	cursor: pointer;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background 0.2s, transform 0.2s;
	z-index: 10000000;
	box-sizing: border-box !important;
	flex-shrink: 0 !important;
}
.scm-lb-btn svg {
	display: block;
	pointer-events: none;
}
.scm-lb-btn:hover {
	background: rgba(255, 255, 255, 0.38);
}
.scm-lb-close {
	top: 20px;
	right: 24px;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 44px !important;
	max-width: 44px !important;
	max-height: 44px !important;
}
.scm-lb-close:hover {
	transform: scale(1.08);
}
.scm-lb-prev {
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	min-height: 48px !important;
	max-width: 48px !important;
	max-height: 48px !important;
}
.scm-lb-prev:hover {
	transform: translateY(-50%) scale(1.08);
}
.scm-lb-next {
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	min-height: 48px !important;
	max-width: 48px !important;
	max-height: 48px !important;
}
.scm-lb-next:hover {
	transform: translateY(-50%) scale(1.08);
}
@media (max-width: 600px) {
	.scm-lb-prev {
		left: 8px;
		width: 40px !important;
		height: 40px !important;
		min-width: 40px !important;
		min-height: 40px !important;
		max-width: 40px !important;
		max-height: 40px !important;
	}
	.scm-lb-next {
		right: 8px;
		width: 40px !important;
		height: 40px !important;
		min-width: 40px !important;
		min-height: 40px !important;
		max-width: 40px !important;
		max-height: 40px !important;
	}
	.scm-lb-close {
		top: 12px;
		right: 12px;
		width: 38px !important;
		height: 38px !important;
		min-width: 38px !important;
		min-height: 38px !important;
		max-width: 38px !important;
		max-height: 38px !important;
	}
}
