/**
 * KTheme Premium Styles
 *
 * @package KthemeElementorWidgets
 * @since   2.0.0
 */

@import url('k-contact.css');

/* ==========================================
   Feature Card Widget
   ========================================== */

.ktheme-feature-title {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
	color: #333;
}

.ktheme-feature-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.ktheme-feature-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ktheme-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.ktheme-feature-card-image {
	width: 100%;
	overflow: hidden;
	aspect-ratio: 16/9;
}

.ktheme-feature-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.ktheme-feature-card:hover .ktheme-feature-card-image img {
	transform: scale(1.05);
}

.ktheme-feature-card-content {
	padding: 1.5rem;
	text-align: center;
}

.ktheme-feature-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 1rem;
	color: #333;
}

.ktheme-feature-card-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.ktheme-feature-card-description p {
	margin: 0 0 0.5em;
}

.ktheme-feature-card-description p:last-child {
	margin-bottom: 0;
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 768px) {
	.ktheme-feature-cards {
		gap: 1.5rem;
	}

	.ktheme-feature-title {
		font-size: 1.75rem;
		margin-bottom: 2rem;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.ktheme-feature-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.ktheme-feature-title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.ktheme-feature-card-content {
		padding: 1rem;
	}

	.ktheme-feature-card-title {
		font-size: 1.1rem;
	}

	.ktheme-feature-card-description {
		font-size: 0.9rem;
	}
}

/* ==========================================
   Elementor Editor
   ========================================== */

.elementor-editor-active .ktheme-feature-card-widget {
	min-height: 100px;
}

/* ==========================================
   Hero Section Widget
   ========================================== */
/* Legacy widget section */

/* ==========================================
   Icon Box Widget
   ========================================== */

/* Legacy widget section */
.ktheme-iconbox-header {
	margin-bottom: 3rem;
}

.ktheme-iconbox-main-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
}

.ktheme-iconbox-title-bar {
	width: 200px;
	height: 12px;
	background-color: var(--bs-primary, #eb455f);
	border-radius: 6px;
}

/* Legacy widget section */
.ktheme-iconbox-grid {
	margin-bottom: 3rem;
}

/* Legacy widget section */
.ktheme-iconbox-style-1 .ktheme-iconbox-item {
	padding: 2rem;
	transition: all 0.3s ease;
	background-color: transparent;
	height: 100%;
}

.ktheme-iconbox-style-1 .ktheme-iconbox-item:hover {

	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Legacy widget section */
.ktheme-iconbox-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
}

.ktheme-iconbox-icon svg {
	width: 40px;
	height: 40px;
	fill: currentColor;
}

.ktheme-iconbox-icon i {
	font-size: 2.5rem;
	line-height: 1;
}

/* Legacy widget section */
.ktheme-iconbox-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
	line-height: 1.3;
}

/* Legacy widget section */
.ktheme-iconbox-description {
	font-size: 1rem;
	line-height: 1.5;
	color: #585858;
}

/* Legacy widget section */
.ktheme-iconbox-link {
	color: inherit;
	text-decoration: none;
}

.ktheme-iconbox-link:hover {
	color: inherit;
	text-decoration: none;
}

.ktheme-iconbox-item-linked {
	cursor: pointer;
}

/* 버튼 */
.ktheme-iconbox-button-wrapper {
	margin-top: 2rem;
}

/* Legacy widget section */
.ktheme-iconbox-item {
	animation: fadeInUp 0.6s ease-out;
}

.ktheme-iconbox-item:nth-child(1) {
	animation-delay: 0.1s;
}

.ktheme-iconbox-item:nth-child(2) {
	animation-delay: 0.2s;
}

.ktheme-iconbox-item:nth-child(3) {
	animation-delay: 0.3s;
}

.ktheme-iconbox-item:nth-child(4) {
	animation-delay: 0.4s;
}

/* Legacy widget section */
@media (max-width: 991.98px) {
	.ktheme-iconbox-main-title {
		font-size: 1.5rem;
	}

	.ktheme-iconbox-title {
		font-size: 1.25rem;
	}
}

@media (max-width: 767.98px) {
	.ktheme-iconbox-main-title {
		font-size: 1.25rem;
	}

	.ktheme-iconbox-title-bar {
		width: 150px;
		height: 10px;
	}

	.ktheme-iconbox-item {
		padding: 1.5rem;
	}

	.ktheme-iconbox-icon {
		width: 35px;
		height: 35px;
		font-size: 2rem;
	}

	.ktheme-iconbox-icon svg {
		width: 35px;
		height: 35px;
	}

	.ktheme-iconbox-title {
		font-size: 1.1rem;
	}

	.ktheme-iconbox-description {
		font-size: 0.9rem;
	}
}

/* Legacy widget section */
.ktheme-iconbox-notice {
	background: #f0f0f0;
	border: 2px dashed #ccc;
	padding: 3rem 2rem;
	text-align: center;
	border-radius: 8px;
	margin: 2rem 0;
}

.ktheme-iconbox-notice p {
	margin: 0.5rem 0;
	color: #666;
}

.elementor-editor-active .ktheme-iconbox-section {
	min-height: 200px;
}

/* ==========================================
   Icon Box Widget - Style 2
   ========================================== */

/* Legacy widget section */
.ktheme-iconbox-style-2 .ktheme-iconbox-header {
	margin-bottom: 4rem;
}

.ktheme-iconbox-style-2 .ktheme-iconbox-main-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: #333333;
	line-height: 1.27;
	letter-spacing: 0;
}

.ktheme-iconbox-main-description {
	font-size: 1rem;
	line-height: 1.5;
	color: #333333;
	margin-top: 0.5rem;
}

/* Legacy widget section */
.ktheme-iconbox-item-style-2 {
	background-color: #f9f9f9;
	border-radius: 20px;
	padding: 3rem 1.5rem;
	text-align: center;
	transition: all 0.6s ease;
	height: 100%;
	min-height: 270px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ktheme-iconbox-item-style-2:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	background-color: var(--color-theme-primary-bg, var(--bs-primary, #eb455f));
}

.ktheme-iconbox-item-style-2:hover .ktheme-iconbox-icon {
	color: #ffffff;
}

.ktheme-iconbox-item-style-2:hover .ktheme-iconbox-title {
	color: #ffffff;
}

.ktheme-iconbox-item-style-2:hover .ktheme-iconbox-description {
	color: #ffffff;
}

/* Legacy widget section */


/* Legacy widget section */
.ktheme-iconbox-style-2 .ktheme-iconbox-icon-wrapper {
	margin-bottom: 1rem;
}

.ktheme-iconbox-style-2 .ktheme-iconbox-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: #2b3467;
	transition: color 0.3s ease;
}

.ktheme-iconbox-style-2 .ktheme-iconbox-icon svg {
	width: 60px;
	height: 60px;
	fill: currentColor;
}

.ktheme-iconbox-style-2 .ktheme-iconbox-icon i {
	font-size: 3rem;
	line-height: 1;
}

/* Legacy widget section */
.ktheme-iconbox-style-2 .ktheme-iconbox-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #2b3467;
	line-height: 1.5;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

/* Legacy widget section */
.ktheme-iconbox-style-2 .ktheme-iconbox-description {
	font-size: 1rem;
	line-height: 1.5;
	color: #585858;
	transition: color 0.3s ease;
}

/* Style 2 반응??*/
@media (max-width: 991.98px) {
	.ktheme-iconbox-style-2 .ktheme-iconbox-main-title {
		font-size: 1.5rem;
	}

	.ktheme-iconbox-style-2 .ktheme-iconbox-header {
		margin-bottom: 3rem;
	}

	.ktheme-iconbox-item-style-2 {
		min-height: 250px;
		padding: 3rem 1.5rem;
	}
}

@media (max-width: 767.98px) {
	.ktheme-iconbox-style-2 .ktheme-iconbox-main-title {
		font-size: 1.25rem;
	}

	.ktheme-iconbox-main-description {
		font-size: 0.9rem;
	}

	.ktheme-iconbox-style-2 .ktheme-iconbox-header {
		margin-bottom: 2rem;
	}

	.ktheme-iconbox-item-style-2 {
		min-height: 220px;
		padding: 3rem 1rem;
	}

	.ktheme-iconbox-style-2 .ktheme-iconbox-icon {
		width: 50px;
		height: 50px;
	}

	.ktheme-iconbox-style-2 .ktheme-iconbox-icon svg {
		width: 50px;
		height: 50px;
	}

	.ktheme-iconbox-style-2 .ktheme-iconbox-icon i {
		font-size: 2.5rem;
	}

	.ktheme-iconbox-style-2 .ktheme-iconbox-title {
		font-size: 1.1rem;
	}

	.ktheme-iconbox-style-2 .ktheme-iconbox-description {
		font-size: 0.9rem;
	}
}

/* ==========================================
   Feature Box Widget
   ========================================== */

.ktheme-featurebox-section {
	position: relative;
}

/* Legacy widget section */
.ktheme-featurebox-images {
	position: relative;
	min-height: 500px;
}

/* Legacy widget section */
.ktheme-featurebox-pattern {
	position: absolute;
	top: 20%;
	left: 20%;
	width: 240px;
	height: 240px;
	background: linear-gradient(135deg, rgba(235, 69, 95, 0.05) 0%, rgba(43, 52, 103, 0.05) 100%);
	border-radius: 50%;
	z-index: 1;
}

/* Legacy widget section */
.ktheme-featurebox-image-1 {
	position: relative;
	z-index: 3;
	margin-left: 20%;
	max-width: 60%;
}

.ktheme-featurebox-image-1 img {

	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Legacy widget section */
.ktheme-featurebox-image-2 {
	position: absolute;
	top: 20%;
	left: 50%;
	max-width: 50%;

	z-index: 5;
}

.ktheme-featurebox-image-2 img {

	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Legacy widget section */
.ktheme-featurebox-image-right .ktheme-featurebox-image-1 {
	margin-left: 0;
}

.ktheme-featurebox-image-right .ktheme-featurebox-image-2 {
	left: auto;
	right: 20%;
}

/* Legacy widget section */
.ktheme-featurebox-content {
	padding-left: 3rem;
	width: 70%;
	/* Legacy widget section */
}

.ktheme-featurebox-main-title {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: #333;
}

.ktheme-featurebox-title-bar {
	width: 200px;
	height: 15px;
	background-color: var(--bs-primary, #2b3467);
}

/* Legacy widget section */
.ktheme-featurebox-features {
	margin-bottom: 2rem;
}

.ktheme-featurebox-feature-item {
	padding: 1.5rem 0 0.5rem;
}

.ktheme-featurebox-feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #333;
}

.ktheme-featurebox-feature-description {
	font-size: 1rem;
	line-height: 1.5;
	color: #585858;
}

/* Legacy widget section */
.ktheme-featurebox-bottom {
	padding-top: 1rem;
}

.ktheme-featurebox-contact {
	font-size: 1rem;
}

.ktheme-featurebox-contact .text-primary {}

/* Legacy widget section */
.ktheme-featurebox-slogan-wrapper {
	margin-top: 4rem;
	padding: 2rem 0;
}

.ktheme-featurebox-slogan {
	font-family: 'Montserrat', sans-serif;
	font-size: 8rem;
	font-weight: 600;
	color: #afafaf;
	white-space: nowrap;
	text-align: center;
	line-height: 1;
	will-change: transform;
}

/* Legacy widget section */
@media (max-width: 991.98px) {
	.ktheme-featurebox-content {
		padding-left: 0;
		margin-top: 3rem;
		width: 100%;
		/* Legacy widget section */
	}

	.ktheme-featurebox-main-title {
		font-size: 1.75rem;
	}

	.ktheme-featurebox-images {
		min-height: 400px;
	}

	.ktheme-featurebox-image-1 {
		max-width: 70%;
		margin-left: 0%;
	}

	.ktheme-featurebox-image-2 {
		max-width: 60%;
	}

	.ktheme-featurebox-slogan {
		font-size: 4rem;
	}
}

@media (max-width: 767.98px) {
	.ktheme-featurebox-main-title {
		font-size: 1.5rem;
	}

	.ktheme-featurebox-title-bar {
		width: 150px;
		height: 12px;
	}

	.ktheme-featurebox-feature-title {
		font-size: 1.25rem;
	}

	.ktheme-featurebox-feature-description {
		font-size: 0.9rem;
	}

	.ktheme-featurebox-images {
		min-height: 300px;
	}

	.ktheme-featurebox-pattern {
		width: 150px;
		height: 150px;
	}

	.ktheme-featurebox-slogan-wrapper {
		margin-top: 3rem;
	}

	.ktheme-featurebox-slogan {
		font-size: 4rem;
	}

	.ktheme-featurebox-bottom {
		flex-direction: column;
		align-items: flex-start !important;
	}

	/* Style 1: preserve a clear mobile rhythm between the stacked content and images. */
	.ktheme-featurebox-style-1.ktheme-featurebox-image-left .ktheme-featurebox-content {
		margin-top: 64px;
	}

	.ktheme-featurebox-style-1.ktheme-featurebox-image-right .ktheme-featurebox-content {
		margin-bottom: 64px;
	}

	.ktheme-featurebox-style-1 .ktheme-featurebox-image-1 {
		max-width: 80%;
	}

	.ktheme-featurebox-style-1 .ktheme-featurebox-image-2 {
		top: 35%;
		left: auto;
		right: 0;
	}
}

/* ==========================================
   Feature Box Widget - Style 2
   ========================================== */

/* Legacy widget section */
.ktheme-featurebox-style-2 .ktheme-featurebox-images {
	position: relative;
	min-height: 300px;
}

/* Legacy widget section */
.ktheme-featurebox-bg-pattern-1 {
	position: absolute;
	top: -50px;
	left: 0;
	width: 250px;
	height: 250px;
	border-radius: 500px;
	overflow: hidden;
	z-index: 1;
}

.ktheme-featurebox-bg-pattern-1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Legacy widget section */
.ktheme-featurebox-style-2 .ktheme-featurebox-image-1 {
	position: relative;
	z-index: 2;
	max-width: 532px;
	margin-top: 0;
	margin-left: 0;
}

.ktheme-featurebox-style-2 .ktheme-featurebox-image-1 img {
	box-shadow: none;
}

/* Legacy widget section */
.ktheme-featurebox-style-2 .ktheme-featurebox-content {
	padding-left: 0rem;
	width: 100%;
}

/* Legacy widget section */
.ktheme-featurebox-slogan-en {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, var(--color-theme-primary-bg) 0%, var(--color-theme-secondary-bg) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.ktheme-featurebox-slogan-en * {
	background: linear-gradient(135deg, var(--color-theme-primary-bg) 0%, var(--color-theme-secondary-bg) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Legacy widget section */
.ktheme-featurebox-style-2 .ktheme-featurebox-main-title {
	font-size: 3.75rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #000000;
	margin-bottom: 1rem;
}

.ktheme-featurebox-style-2 .ktheme-featurebox-main-title * {
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
}


/* ==========================================
   Global Button Styles Override - Antigravity App 변경사??2025-12-30 18:20
   Bootstrap default focus style reset (outline, box-shadow, border)
   ========================================== */
.btn:focus,
.btn:active:focus,
.btn-check:focus+.btn,
.btn.active:focus,
.btn.show:focus,
.btn:focus-visible,
button.btn:focus,
button.btn:focus-visible,
a.btn:focus,
a.btn:focus-visible {
	box-shadow: none !important;
	outline: none !important;
	border-color: transparent !important;
}

/*
Button Hover Leave Fix
Prevent 1px border flash when mouse leaves button.
Ensures border is explicitly transparent/none unless overridden by specific style.
*/
.btn {
	border: 1px solid transparent;
	/* Ensure border exists physically to prevent layout shift */
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn:not(:hover):not(:active):not(:focus) {
	border-color: transparent !important;
}

/* Explicitly target hover leave state if possible via generic transition reset */
.btn:hover {
	border-color: transparent;
	/* Default to transparent unless style overrides */
}

/* Legacy widget section */
.ktheme-faq-button a:focus,
.ktheme-faq-button a:focus-visible {
	box-shadow: none !important;
	outline: none !important;
	border-color: inherit !important;
}

/* Legacy widget section */
.ktheme-featurebox-description {
	font-size: 1rem;
	line-height: 1.5;
	color: #585858;
}

.ktheme-featurebox-description * {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

/* Legacy widget section */
.ktheme-featurebox-style-2.ktheme-featurebox-image-right .ktheme-featurebox-content {
	padding-left: 0;
	padding-right: 3rem;
}

.ktheme-featurebox-style-2.ktheme-featurebox-image-right .ktheme-featurebox-bg-pattern-1 {
	left: auto;
	right: 0;
}

/* Legacy widget section */
@media (max-width: 991.98px) {
	.ktheme-featurebox-style-2 .ktheme-featurebox-content {
		padding-left: 0;
		padding-right: 0;
		margin-top: 2rem;
	}

	.ktheme-featurebox-style-2 .ktheme-featurebox-main-title {
		font-size: 2.5rem;
	}

	.ktheme-featurebox-slogan-en {
		font-size: 1.75rem;
	}

	.ktheme-featurebox-style-2 .ktheme-featurebox-images {
		min-height: 200px;
	}

	.ktheme-featurebox-bg-pattern-1 {
		width: 250px;
		height: 250px;
	}

	.ktheme-featurebox-style-2 .ktheme-featurebox-image-1 {
		max-width: 100%;
		margin-top: 0;
	}
}

@media (max-width: 767.98px) {
	.ktheme-featurebox-style-2 .ktheme-featurebox-main-title {
		font-size: 2rem;
	}

	.ktheme-featurebox-slogan-en {
		font-size: 1.5rem;
	}

	.ktheme-featurebox-description {
		font-size: 0.9rem;
	}

	.ktheme-featurebox-bg-pattern-1 {
		width: 200px;
		height: 200px;
	}
}

/* Legacy widget section */
.ktheme-featurebox-notice {
	background: #f0f0f0;
	border: 2px dashed #ccc;
	padding: 3rem 2rem;
	text-align: center;
	border-radius: 8px;
	margin: 2rem 0;
}

.ktheme-featurebox-notice p {
	margin: 0.5rem 0;
	color: #666;
}

.elementor-editor-active .ktheme-featurebox-section {
	min-height: 300px;
}

/* ==========================================
   Card Box Widget
   ========================================== */

.ktheme-cardbox-section {
	padding: 0;
}

/* Grid Layout */
.ktheme-cardbox-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin: 0 auto;
}

/* Card Item with .ktheme-cardbox-style-1 class */
.ktheme-cardbox-style-1 .ktheme-cardbox-item {
	position: relative;
	height: 650px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Overlay */
.ktheme-cardbox-style-1 .ktheme-cardbox-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000000;
	opacity: 0.3;
	transition: opacity 0.4s ease;
	z-index: 1;
}

/* Hover State - Darker Overlay */
.ktheme-cardbox-style-1 .ktheme-cardbox-item:hover::before {
	opacity: 0.75;
}

/* Card Link */
.ktheme-cardbox-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	padding: 3rem;
	text-decoration: none;
	z-index: 2;
	transition: transform 0.4s ease;
}

.ktheme-cardbox-style-1 .ktheme-cardbox-item:hover .ktheme-cardbox-link {
	transform: scale(1.02);
}

/* Content Wrapper */
.ktheme-cardbox-content {
	width: 100%;
	transform: translateY(0);
	transition: transform 0.4s ease;
}

.ktheme-cardbox-style-1 .ktheme-cardbox-item:hover .ktheme-cardbox-content {
	transform: translateY(-10px);
}

/* Category */
.ktheme-cardbox-category {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: 0;
	line-height: 1.5;
}

/* Title */
.ktheme-cardbox-title {
	margin: 0;
	letter-spacing: 0;
}

/* Legacy widget section */
@media (max-width: 1199.98px) {
	.ktheme-cardbox-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 991.98px) {
	.ktheme-cardbox-section {
		padding: 0;
	}

	.ktheme-cardbox-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ktheme-cardbox-style-1 .ktheme-cardbox-item {
		height: 500px;
	}

	.ktheme-cardbox-link {
		padding: 2rem;
	}

}

@media (max-width: 767.98px) {
	.ktheme-cardbox-section {
		padding: 0;
	}

	.ktheme-cardbox-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		width: 100% !important;
	}

	.ktheme-cardbox-style-1 .ktheme-cardbox-item {
		height: 400px !important;

	}

	.ktheme-cardbox-link {
		padding: 1.5rem;
	}

	.ktheme-cardbox-category {
		font-size: 0.875rem;
	}

	.ktheme-cardbox-title {
		font-size: 1.125rem;
	}
}

/* Notice */
.ktheme-cardbox-notice {
	background: #f0f0f0;
	border: 2px dashed #ccc;
	padding: 3rem 2rem;
	text-align: center;
	border-radius: 8px;
	margin: 2rem 0;
}

.ktheme-cardbox-notice p {
	margin: 0.5rem 0;
	color: #666;
}

.elementor-editor-active .ktheme-cardbox-section {
	min-height: 200px;
}

/* Expand Box Animation */
.ktheme-cardbox-style-1 {
	animation: expandBoxFadeIn 0.6s ease-out;
}

@keyframes expandBoxFadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* ==========================================
   Card Box Style 2 - Vertical Layout
   ========================================== */

.ktheme-cardbox-style-2 {
	padding: 0;
}

/* Vertical Wrapper */
.ktheme-cardbox-vertical-wrapper {
	width: 100%;
	max-width: var(--bs-container-max-width, 1140px);
	margin: 0 auto;
	padding: 0 var(--bs-gutter-x, 0.75rem);
	display: flex;
	flex-direction: column;
	gap: 3rem;
	min-height: 500px;
}

@media (min-width: 1200px) {
	.ktheme-cardbox-vertical-wrapper {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.ktheme-cardbox-vertical-wrapper {
		max-width: 1140px;
	}
}

/* Vertical Card Item */
.ktheme-cardbox-item-vertical {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background-color: #ffffff;
	min-height: 500px;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.ktheme-cardbox-item-vertical:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


/* Thumb Wrapper */
.ktheme-cardbox-thumb-wrapper {
	position: relative;
	overflow: hidden;
	height: 100%;
	min-height: 500px;
}

.ktheme-cardbox-thumb-image {
	width: 100%;
	height: 500px !important;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease;
}

.ktheme-cardbox-item-vertical:hover .ktheme-cardbox-thumb-image {
	transform: scale(1.05);
}

/* Text Wrapper */
.ktheme-cardbox-text-wrapper {
	position: relative;
	padding: 0 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Quote Mark */
.ktheme-cardbox-quote {
	position: absolute;
	top: -2rem;
	left: 0;
	font-size: 350px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -7px;
	pointer-events: none;
	z-index: 0;
	opacity: 0.15;
}

/* Text Content */
.ktheme-cardbox-text-content {
	position: relative;
	z-index: 1;
}

/* Vertical Title */
.ktheme-cardbox-vertical-title {
	line-height: 1.22;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

/* Vertical Description */
.ktheme-cardbox-vertical-description {
	line-height: 1.5;
	margin-bottom: 2rem;
}

/* Logo */
.ktheme-cardbox-logo {
	margin-top: 2rem;
}

.ktheme-cardbox-logo-text {
	font-weight: 700;
	letter-spacing: 0;
}

/* Overlay Link */
.ktheme-cardbox-overlay-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

/* Legacy widget section */
@media (max-width: 991.98px) {
	.ktheme-cardbox-style-2 {
		padding: 0;
	}

	.ktheme-cardbox-vertical-wrapper {
		gap: 1.5rem;
	}

	.ktheme-cardbox-item-vertical {
		min-height: 450px;
	}

	.ktheme-cardbox-thumb-wrapper {
		min-height: 450px;
	}

	.ktheme-cardbox-text-wrapper {
		padding: 0 3rem;
	}

	.ktheme-cardbox-quote {
		font-size: 250px;
		top: -1rem;
	}

}

@media (max-width: 767.98px) {
	.ktheme-cardbox-style-2 {
		padding: 0;
	}

	.ktheme-cardbox-vertical-wrapper {
		gap: 1rem;
	}

	.ktheme-cardbox-item-vertical {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	/* Legacy widget section */
	.ktheme-cardbox-thumb-wrapper {
		min-height: 300px;
		height: 300px;
	}

	.ktheme-cardbox-text-wrapper {
		padding: 2rem;
	}

	.ktheme-cardbox-quote {
		font-size: 150px;
		top: -0.5rem;
		letter-spacing: -3px;
	}

	.ktheme-cardbox-vertical-title {
		margin-bottom: 1rem;
	}

	.ktheme-cardbox-vertical-description {
		margin-bottom: 1.5rem;
	}
}

/* ==========================================
   Card Box Style 3 - Product Grid
   ========================================== */

.ktheme-cardbox-style-3 {
	padding: 0;
}

/* Grid Style 3 - Bootstrap row handles the grid */

/* Card Item Style 3 */
.ktheme-cardbox-item-style3 {
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.3s ease;
	overflow: hidden;
}

.ktheme-cardbox-item-style3:hover {
	transform: translateY(-5px);
}

/* Image Wrapper - Background Image Style */
.ktheme-cardbox-image-wrapper {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.6s ease;
}

.ktheme-cardbox-item-style3:hover .ktheme-cardbox-image-wrapper {
	transform: scale(1.05);
}

/* Legacy img tag support (deprecated) */
.ktheme-cardbox-image-style3 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease, filter 0.3s ease;
}

.ktheme-cardbox-item-style3:hover .ktheme-cardbox-image-style3 {
	transform: scale(1.05);
}

/* Text Wrapper Style 3 */
.ktheme-cardbox-text-wrapper-style3 {
	padding: 0;
}

/* Title Style 3 */
.ktheme-cardbox-title-style3 {
	margin-bottom: 0.5rem;
	line-height: 1.33;
}

/* Category Style 3 */
.ktheme-cardbox-category-style3 {
	margin-bottom: 1.5rem;
	font-size: 1rem;
	line-height: 1.5;
}

/* Button Style 3 */
.ktheme-cardbox-text-wrapper-style3 .btn {
	transition: all 0.3s ease;
}

.ktheme-cardbox-text-wrapper-style3 .btn:hover {}

.ktheme-cardbox-text-wrapper-style3 .btn svg {
	transition: transform 0.3s ease;
}

.ktheme-cardbox-text-wrapper-style3 .btn:hover svg {}

/* Legacy widget section */
@media (max-width: 991.98px) {
	.ktheme-cardbox-style-3 {
		padding: 0;
	}

	.ktheme-cardbox-image-wrapper {
		height: 350px;
	}
}

@media (max-width: 767.98px) {
	.ktheme-cardbox-style-3 {
		padding: 0;
	}

	.ktheme-cardbox-image-wrapper {
		height: 280px;
		margin-bottom: 1rem;
	}

	.ktheme-cardbox-title-style3 {
		font-size: 1.25rem;
	}

	.ktheme-cardbox-category-style3 {
		font-size: 0.875rem;
	}
}

/* ==========================================
   Card Box Style 4 - Overlay Card
   ========================================== */

.ktheme-cardbox-style-4 {
	padding: 0;
}

/* Card Item Style 4 */
.ktheme-cardbox-item-style4 {
	display: block;
	position: relative;
	height: 500px;
	overflow: visible;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease;
}

.ktheme-cardbox-item-style4:hover {
	transform: translateY(-10px);
}

/* Image Wrapper Style 4 */
.ktheme-cardbox-image-wrapper-style4 {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Legacy widget section */
.ktheme-cardbox-text-wrapper-style4 {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(50%);
	width: 80%;
	background: #ffffff;
	padding: 2rem 2.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	z-index: 10;
	transition: all 0.3s ease;
}

.ktheme-cardbox-item-style4:hover .ktheme-cardbox-text-wrapper-style4 {
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* Legacy widget section */
.ktheme-cardbox-category-style4 {
	font-size: 0.875rem;
	font-weight: 600;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

/* Legacy widget section */
.ktheme-cardbox-title-style4 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.33;
	margin: 0;
	padding-right: 2rem;
}

/* Legacy widget section */
.ktheme-cardbox-arrow-style4 {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.ktheme-cardbox-item-style4:hover .ktheme-cardbox-arrow-style4 {
	background: #1a1a1a;
	transform: translateX(3px);
}

.ktheme-cardbox-arrow-style4 svg {
	color: #666;
	transition: color 0.3s ease;
}

.ktheme-cardbox-item-style4:hover .ktheme-cardbox-arrow-style4 svg {
	color: #ffffff;
}

/* Legacy widget section */
@media (max-width: 991.98px) {
	.ktheme-cardbox-style-4 {
		padding: 0;
	}

	.ktheme-cardbox-item-style4 {
		height: 420px;
	}

	.ktheme-cardbox-text-wrapper-style4 {
		width: 85%;
		padding: 1.5rem 2rem;
		transform: translateY(50%);
	}

	.ktheme-cardbox-title-style4 {
		font-size: 1.25rem;
	}
}

@media (max-width: 767.98px) {
	.ktheme-cardbox-style-4 {
		padding: 0;
	}

	.ktheme-cardbox-item-style4 {
		height: 350px;
	}

	.ktheme-cardbox-text-wrapper-style4 {
		width: 90%;
		padding: 1.25rem 1.5rem;
		transform: translateY(50%);
	}

	.ktheme-cardbox-category-style4 {
		font-size: 0.75rem;
	}

	.ktheme-cardbox-title-style4 {
		font-size: 1.125rem;
		padding-right: 1.5rem;
	}

	.ktheme-cardbox-arrow-style4 {
		width: 32px;
		height: 32px;
		top: 1.25rem;
		right: 1.5rem;
	}

	.ktheme-cardbox-arrow-style4 svg {
		width: 18px;
		height: 18px;
	}
}

/* ==========================================
   CTA Widget
   ========================================== */

.ktheme-cta-section {
	position: relative;
	overflow: hidden;
}

/* Image Background */
.ktheme-cta-image-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.ktheme-cta-image-background.gsap-parallax {
	height: 140%;
	top: -40%;

}

/* YouTube Background */
.ktheme-cta-youtube-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.ktheme-cta-youtube-background.gsap-parallax {
	height: 140%;
	top: -40%;

}

.ktheme-cta-youtube-iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	/* 16:9 aspect ratio */
	min-height: 100%;
	min-width: 177.78vh;
	/* 16:9 aspect ratio */
	transform: translate(-50%, -50%);
	pointer-events: none;
}

/* Overlay */
.ktheme-cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

/* Content Wrapper */
.ktheme-cta-content-wrapper {
	position: relative;
	z-index: 3;
}

.ktheme-cta-content {
	position: relative;
	z-index: 4;
}

/* Legacy widget section */
.ktheme-cta-style-1 .ktheme-cta-content {
	text-align: center;
}

.ktheme-cta-style-1 .ktheme-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

/* Legacy widget section */
.ktheme-cta-style-2 .ktheme-cta-content {
	text-align: left;
}

.ktheme-cta-style-2 .ktheme-cta-buttons {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

/* Legacy widget section */
.ktheme-cta-style-3 .ktheme-cta-box-wrapper {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.ktheme-cta-style-3 .ktheme-cta-content-wrapper {
	border-radius: 12px 12px 0 0;
}

.ktheme-cta-style-3 .ktheme-cta-content {
	text-align: center;
}

.ktheme-cta-style-3 .ktheme-cta-buttons-wrapper {
	padding: 2rem;
	background: #f9f9f9;
	border-top: 1px solid #e0e0e0;
}

.ktheme-cta-style-3 .ktheme-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

/* Title */
.ktheme-cta-title {
	margin: 0;
	color: #ffffff;
}

/* Description */
.ktheme-cta-description {
	margin: 0;
	color: #ffffff;
}

/* Legacy widget section */
@media (max-width: 767.98px) {

	.ktheme-cta-style-1 .ktheme-cta-buttons,
	.ktheme-cta-style-3 .ktheme-cta-buttons {
		flex-direction: column;
		width: 100%;
	}

	.ktheme-cta-style-1 .ktheme-cta-buttons .btn,
	.ktheme-cta-style-3 .ktheme-cta-buttons .btn {
		width: 100%;
		justify-content: center;
	}

	.ktheme-cta-style-2 .ktheme-cta-buttons {
		width: 100%;
	}

	.ktheme-cta-style-2 .ktheme-cta-buttons .btn {
		width: 100%;
	}

	.ktheme-cta-style-3 .ktheme-cta-buttons-wrapper {
		padding: 1.5rem;
	}
}

/* ========================================
   Title Widget
   ======================================== */

.ktheme-title-section {
	position: relative;
	width: 100%;
}

.ktheme-title-wrapper {
	position: relative;
}

.ktheme-title-container.ktheme-title-align-left {
	padding-left: 0 !important;
}

.ktheme-title-container.ktheme-title-align-right {
	padding-right: 0 !important;
}

.ktheme-title-align-left .ktheme-title-header {
	justify-content: flex-start;
	margin-left: 0 !important;
	padding-left: 0 !important;
}

.ktheme-title-align-right .ktheme-title-header {
	justify-content: flex-end;
	margin-right: 0 !important;
	padding-right: 0 !important;
}

.ktheme-title-align-left .ktheme-title-heading,
.ktheme-title-align-left .ktheme-title-label,
.ktheme-title-align-left .ktheme-title-subtitle,
.ktheme-title-align-left .ktheme-title-description,
.ktheme-title-align-left .ktheme-title-read-more {
	margin-left: 0 !important;
	padding-left: 0 !important;
}

.ktheme-title-align-right .ktheme-title-heading,
.ktheme-title-align-right .ktheme-title-label,
.ktheme-title-align-right .ktheme-title-subtitle,
.ktheme-title-align-right .ktheme-title-description,
.ktheme-title-align-right .ktheme-title-read-more {
	margin-right: 0 !important;
	padding-right: 0 !important;
}

/* Title Heading */
.ktheme-title-heading {
	margin: 0;
	padding: 0;
}

/* Title Label */
.ktheme-title-label {
	display: inline-block;
}

.ktheme-title-label-position-top {
	display: block;
	margin-bottom: 0;
}

.ktheme-title-label-position-left,
.ktheme-title-label-position-right {
	display: inline-block;
	margin-right: 0.5rem;
	margin-left: 0;
}

.ktheme-title-label-position-right {
	margin-right: 0;
	margin-left: 0.5rem;
}

/* Title Header (for left/right label) */
.ktheme-title-header {
	gap: 0.5rem;
}

/* Subtitle */
.ktheme-title-subtitle {
	margin: 0;
	padding: 0;
}

.ktheme-title-subtitle-position-above {
	margin-bottom: 0;
}

.ktheme-title-subtitle-position-below {
	margin-top: 0;
}

/* Description */
.ktheme-title-description {
	margin: 0;
	padding: 0;
}

/* Read More */
.ktheme-title-read-more {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
}

.ktheme-title-read-more:hover {
	text-decoration: none;
}

/* Style 1 - 기본??*/
.ktheme-title-style-1 .ktheme-title-label {
	/* Legacy widget section */
}

/* Legacy widget section */
.ktheme-title-style-2 .ktheme-title-label-emphasized {
	font-weight: 700;
	padding: 0.5rem 1rem;
	border-radius: 4px;
}

/* Legacy widget section */
@media (max-width: 767.98px) {
	.ktheme-title-header {
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	.ktheme-title-label-position-left,
	.ktheme-title-label-position-right {
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 0.5rem;
	}
}

/* ========================================
   FAQ Widget Styles
   ======================================== */

/* FAQ Section */
.ktheme-faq-section {
	width: 100%;
}

/* FAQ Header */
.ktheme-faq-header {
	margin-bottom: 2rem;
}

.ktheme-faq-image img {
	max-width: 200px;
	height: auto;
}

.ktheme-faq-label {
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ktheme-faq-title {
	margin-bottom: 1rem;
}

.ktheme-faq-description {
	color: #6c757d;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* FAQ Content */
.ktheme-faq-content {
	margin-left: auto;
	margin-right: auto;
}

/* FAQ Item */
.ktheme-faq-item {
	transition: all 0.3s ease;
}

/* FAQ Notice */
.ktheme-faq-notice {
	text-align: center;
	padding: 2rem;
	background: #f8f9fa;
	border-radius: 0.25rem;
}

/* Style 1 specific styles */
.ktheme-faq-style1 .accordion-item {
	background: transparent;
	border: none;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e1e1e1;
}

.ktheme-faq-style1 .accordion-item:last-child {
	margin-bottom: 0;
}

.ktheme-faq-style1 .accordion-header {
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
}

.ktheme-faq-style1 .accordion-button {
	background: transparent;
	border: none;
	padding: 0;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	color: inherit;
	box-shadow: none;
}

.ktheme-faq-style1 .accordion-button:not(.collapsed) {
	background: transparent;
	box-shadow: none;
}

.ktheme-faq-style1 .accordion-button:focus {
	border-color: transparent;
	box-shadow: none;
}

.ktheme-faq-style1 .accordion-body {
	background: transparent;
	border: none;
	padding: 0;
	margin-top: 0.75rem;
}

.ktheme-faq-style1 .accordion-body p {
	margin-bottom: 0;
}

/* Style 2 specific styles */
.ktheme-faq-style2 .accordion-item {
	border: 1px solid #dee2e6;
	border-radius: 0.375rem;
	overflow: hidden;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.ktheme-faq-style2 .accordion-item:hover {
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
	.ktheme-faq-content {
		margin-top: 2rem;
	}

	.ktheme-faq-header {
		margin-bottom: 1.5rem;
	}

	.ktheme-faq-title {
		font-size: 1.75rem;
	}

	.ktheme-faq-style1 .accordion-button {
		font-size: 1.2rem;
	}
}

/* ==========================================
   KTheme Slider - Background Wave Styles
   ========================================== */

/* Legacy widget section */
.k-slider-wrapper.divider-wave-left-high::after,
.k-slider-wrapper.divider-wave-left-high-flip::before,
.k-slider-wrapper.divider-wave-left-high-animated::after,
.k-slider-wrapper.divider-wave-left-high-animated-flip::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 180px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 180' preserveAspectRatio='none'%3E%3Cpath d='M0,100 Q300,180 600,100 T1200,100 L1200,180 L0,180 Z' fill='%23ffffff'/%3E%3C/svg%3E");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 1;
	pointer-events: none;
}

/* Legacy widget section */
.k-slider-wrapper.divider-wave-left-high::after,
.k-slider-wrapper.divider-wave-left-high-animated::after {
	bottom: -1px;
}

/* Legacy widget section */
.k-slider-wrapper.divider-wave-left-high-flip::before,
.k-slider-wrapper.divider-wave-left-high-animated-flip::before {
	top: -1px;
	transform: scaleY(-1);
}

/* Legacy widget section */
@keyframes wave-left-high {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 1200px 0;
	}
}

.k-slider-wrapper.divider-wave-left-high-animated::after,
.k-slider-wrapper.divider-wave-left-high-animated-flip::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2400 180' preserveAspectRatio='none'%3E%3Cpath d='M0,100 Q300,180 600,100 T1200,100 T1800,100 T2400,100 L2400,180 L0,180 Z' fill='%23ffffff'/%3E%3C/svg%3E");
	background-size: 200% 100%;
	animation: wave-left-high 20s linear infinite;
}

/* Legacy widget section */
.k-slider-wrapper.divider-wave-right-high::after,
.k-slider-wrapper.divider-wave-right-high-flip::before,
.k-slider-wrapper.divider-wave-right-high-animated::after,
.k-slider-wrapper.divider-wave-right-high-animated-flip::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 180px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 180' preserveAspectRatio='none'%3E%3Cpath d='M0,100 Q300,20 600,100 T1200,100 L1200,180 L0,180 Z' fill='%23ffffff'/%3E%3C/svg%3E");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 1;
	pointer-events: none;
}

/* Legacy widget section */
.k-slider-wrapper.divider-wave-right-high::after,
.k-slider-wrapper.divider-wave-right-high-animated::after {
	bottom: -1px;
}

/* Legacy widget section */
.k-slider-wrapper.divider-wave-right-high-flip::before,
.k-slider-wrapper.divider-wave-right-high-animated-flip::before {
	top: -1px;
	transform: scaleY(-1);
}

/* Legacy widget section */
@keyframes wave-right-high {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 1200px 0;
	}
}

.k-slider-wrapper.divider-wave-right-high-animated::after,
.k-slider-wrapper.divider-wave-right-high-animated-flip::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2400 180' preserveAspectRatio='none'%3E%3Cpath d='M0,100 Q300,20 600,100 T1200,100 T1800,100 T2400,100 L2400,180 L0,180 Z' fill='%23ffffff'/%3E%3C/svg%3E");
	background-size: 200% 100%;
	animation: wave-right-high 20s linear infinite;
}

/* Legacy widget section */
@media (max-width: 768px) {

	.k-slider-wrapper.divider-wave-left-high::after,
	.k-slider-wrapper.divider-wave-left-high-flip::before,
	.k-slider-wrapper.divider-wave-left-high-animated::after,
	.k-slider-wrapper.divider-wave-left-high-animated-flip::before,
	.k-slider-wrapper.divider-wave-right-high::after,
	.k-slider-wrapper.divider-wave-right-high-flip::before,
	.k-slider-wrapper.divider-wave-right-high-animated::after,
	.k-slider-wrapper.divider-wave-right-high-animated-flip::before {
		height: 50px;
	}
}

/* ==========================================
   Process Steps Widget
   ========================================== */

.ktheme-process-steps {
	width: 100%;
}

/* Steps Container - Horizontal Capsule */
.ktheme-steps-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	padding: 30px 40px;
	border-radius: 9999px;
	border: 1px solid #e1e1e1;
	gap: 30px;
	flex-wrap: nowrap;
}

/* Step Wrapper */
.step-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	transition: opacity 0.3s ease;
}

/* Non-active State */
.step-wrapper:not(.active-step) {
	opacity: 0.5;
}

.step-wrapper:not(.active-step):hover {
	opacity: 0.8;
}

/* Active State */
.step-wrapper.active-step {
	opacity: 1;
}

/* Step Link */
.step-link {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

/* Step Circle */
.step-circle {
	background-color: #e5e7eb;
	color: #6b7280;
	border-radius: 50%;
	height: 48px;
	width: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
}

/* Active Circle */
.step-wrapper.active-step .step-circle {
	background-color: #3b82f6;
	color: #ffffff;
}

/* Circle with Both Number and Icon */
.step-circle .step-number {
	display: block;
}

.step-circle .step-icon-wrapper {
	display: block;
}

.step-circle .step-number+.step-icon-wrapper {
	position: absolute;
	font-size: 12px;
	bottom: -2px;
	right: -2px;
}

/* Step Content */
.step-content {
	display: flex;
	flex-direction: column;
	margin-left: 12px;
}

/* Step Title */
.step-title {
	font-size: 16px;
	font-weight: 500;
	color: #374151;
	white-space: nowrap;
	transition: all 0.3s ease;
	margin-top: 0;
}

.step-wrapper.active-step .step-title {
	color: #111111;
	font-weight: 700;
}

/* Step Description */
.step-description {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.4;
	margin-top: 4px;
	max-width: 200px;
}

/* Step Separator */
.step-separator {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-weight: 400;
	font-size: 18px;
	flex-shrink: 0;
	transition: color 0.3s ease;
}

/* Legacy widget section */
.step-separator svg {
	width: 20px;
	height: 20px;
	display: block;
}

.step-separator.separator-arrow_long svg {
	width: 24px;
	height: 20px;
}

.step-separator.separator-line {
	font-size: 20px;
}

.step-separator.separator-dot {
	font-size: 14px;
}

/* Hover Effects */
.step-wrapper:hover .step-circle {
	transform: scale(1.05);
}

.step-wrapper:hover .step-title {
	color: #1f2937;
}

/* Notice */
.ktheme-steps-notice {
	background: #f0f0f0;
	border: 2px dashed #ccc;
	padding: 2rem;
	text-align: center;
	border-radius: 8px;
	margin: 2rem 0;
}

.ktheme-steps-notice p {
	margin: 0;
	color: #666;
}

/* Legacy widget section */
@media (max-width: 991.98px) {
	.ktheme-steps-container {
		padding: 25px 30px;
		gap: 20px;
	}

	.step-circle {
		height: 40px;
		width: 40px;
		min-width: 40px;
		font-size: 14px;
	}

	.step-title {
		font-size: 14px;
	}

	.step-description {
		font-size: 12px;
		max-width: 150px;
	}

	.step-separator {
		font-size: 16px;
	}
}

/* 반응??- 모바??*/
@media (max-width: 767.98px) {
	.ktheme-steps-container {
		flex-direction: column;
		border-radius: 20px;
		padding: 20px;
		gap: 15px;
	}

	.step-wrapper {
		width: 100%;
		justify-content: flex-start;
	}

	.step-link {
		width: 100%;
	}

	.step-circle {
		height: 36px;
		width: 36px;
		min-width: 36px;
		font-size: 13px;
	}

	.step-content {
		flex: 1;
	}

	.step-title {
		font-size: 14px;
		white-space: normal;
	}

	.step-description {
		font-size: 12px;
		max-width: none;
		white-space: normal;
	}

	/* Legacy widget section */
	.step-separator {
		display: none;
	}
}

/* Legacy widget section */
.ktheme-steps-container.bg-primary {
	background-color: var(--bs-primary, #3b82f6);
}

.ktheme-steps-container.bg-secondary {
	background-color: var(--bs-secondary, #6c757d);
}

.step-wrapper.active-step .step-circle.bg-primary {
	background-color: var(--bs-primary, #3b82f6);
}

.step-wrapper.active-step .step-circle.bg-secondary {
	background-color: var(--bs-secondary, #6c757d);
}

.step-title.text-primary {
	color: var(--bs-primary, #3b82f6);
}

.step-title.text-secondary {
	color: var(--bs-secondary, #6c757d);
}/* ==========================================
   Menu Widget
   ========================================== */

.ktheme-menu-widget {
	--ktheme-menu-text: #0e0e10;
	--ktheme-menu-muted: #6b6f76;
	--ktheme-menu-border: #ebeef2;
	--ktheme-menu-surface: #ffffff;
	--ktheme-menu-subtle: #fafbfc;
	--ktheme-menu-brand: #5e6ad2;
	position: relative;
	width: 100%;
}

.ktheme-menu-list,
.ktheme-menu-list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ktheme-menu-list {
	display: flex;
	align-items: center;
	gap: 4px;
}

.ktheme-menu-list li {
	position: relative;
	margin: 0;
}

.ktheme-menu-list a {
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: 40px;
	padding: 0 12px;
	border-radius: 6px;
	color: var(--ktheme-menu-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	transition: background-color 0.16s ease, color 0.16s ease;
}

.ktheme-menu-list a:hover,
.ktheme-menu-list a:focus,
.ktheme-menu-list .current-menu-item > a,
.ktheme-menu-list .current-menu-ancestor > a {
	background: var(--ktheme-menu-subtle);
	color: var(--ktheme-menu-brand);
	outline: none;
}

.ktheme-menu-list > li.menu-item-has-children > a::after,
.ktheme-menu-list .sub-menu li.menu-item-has-children > a::after {
	content: "";
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: 0.68;
}

.ktheme-menu-list .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 30;
	min-width: 220px;
	padding: 8px;
	border: 1px solid var(--ktheme-menu-border);
	border-radius: 8px;
	background: var(--ktheme-menu-surface);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.ktheme-menu-list li:hover > .sub-menu,
.ktheme-menu-list li:focus-within > .sub-menu,
.ktheme-menu-list li.sub-menu-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ktheme-menu-list .sub-menu a {
	justify-content: space-between;
	min-height: 36px;
	padding: 0 10px;
	color: var(--ktheme-menu-text);
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

.ktheme-menu-list .sub-menu .sub-menu {
	top: -8px;
	left: calc(100% + 8px);
}

.ktheme-menu-layout-vertical .ktheme-menu-list {
	align-items: stretch;
	flex-direction: column;
	gap: 2px;
	max-width: 320px;
}

.ktheme-menu-layout-vertical .ktheme-menu-list a {
	justify-content: space-between;
}

.ktheme-menu-layout-vertical .ktheme-menu-list .sub-menu {
	position: static;
	min-width: 0;
	margin: 4px 0 8px 12px;
	padding: 4px 0 4px 8px;
	border: 0;
	border-left: 1px solid var(--ktheme-menu-border);
	border-radius: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.ktheme-menu-dropdown {
	width: 100%;
}

.ktheme-menu-dropdown-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid var(--ktheme-menu-border);
	border-radius: 8px;
	background: var(--ktheme-menu-surface);
	color: var(--ktheme-menu-text);
	font-weight: 600;
	cursor: pointer;
}

.ktheme-menu-dropdown-summary::-webkit-details-marker {
	display: none;
}

.ktheme-menu-dropdown-summary span::before,
.ktheme-menu-dropdown-summary span::after {
	content: "";
	display: block;
	width: 16px;
	height: 2px;
	background: currentColor;
	transition: transform 0.16s ease;
}

.ktheme-menu-dropdown-summary span::after {
	margin-top: -2px;
	transform: rotate(90deg);
}

.ktheme-menu-dropdown[open] .ktheme-menu-dropdown-summary span::after {
	transform: rotate(0deg);
}

.ktheme-menu-dropdown-panel {
	margin-top: 8px;
	padding: 8px;
	border: 1px solid var(--ktheme-menu-border);
	border-radius: 8px;
	background: var(--ktheme-menu-surface);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.ktheme-menu-layout-dropdown .ktheme-menu-list {
	align-items: stretch;
	flex-direction: column;
}

.ktheme-menu-layout-dropdown .ktheme-menu-list a {
	justify-content: space-between;
}

.ktheme-menu-layout-dropdown .ktheme-menu-list .sub-menu {
	position: static;
	min-width: 0;
	margin: 4px 0 8px 12px;
	padding: 4px 0 4px 8px;
	border: 0;
	border-left: 1px solid var(--ktheme-menu-border);
	border-radius: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.ktheme-menu-empty {
	padding: 16px;
	border: 1px dashed var(--ktheme-menu-border, #ebeef2);
	border-radius: 8px;
	background: var(--ktheme-menu-subtle, #fafbfc);
	color: var(--ktheme-menu-muted, #6b6f76);
	font-size: 14px;
}

@media (max-width: 767.98px) {
	.ktheme-menu-layout-horizontal .ktheme-menu-list {
		align-items: stretch;
		flex-direction: column;
	}

	.ktheme-menu-layout-horizontal .ktheme-menu-list .sub-menu {
		position: static;
		min-width: 0;
		margin: 4px 0 8px 12px;
		padding: 4px 0 4px 8px;
		border: 0;
		border-left: 1px solid var(--ktheme-menu-border);
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}
}
/* ==========================================
   Sticky Widget
   ========================================== */

.ktheme-sticky-widget {
	--ktheme-sticky-accent: #5e6ad2;
	--ktheme-sticky-text: #0e0e10;
	--ktheme-sticky-muted: #6b6f76;
	--ktheme-sticky-border: #ebeef2;
	--ktheme-sticky-surface: #ffffff;
	--ktheme-sticky-subtle: #fafbfc;
	width: 100%;
}

.ktheme-sticky-demo {
	display: grid;
	grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
	gap: 24px;
	min-height: var(--ktheme-sticky-demo-height, 720px);
	align-items: start;
}

.ktheme-sticky-layout-bar .ktheme-sticky-demo {
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
}

.ktheme-sticky-panel-wrap {
	position: relative;
	align-self: start;
	min-width: 0;
}

.ktheme-sticky-panel {
	position: sticky;
	top: var(--ktheme-sticky-offset, 96px);
	z-index: 2;
	padding: 22px;
	border: 1px solid var(--ktheme-sticky-border);
	border-radius: 8px;
	background: var(--ktheme-sticky-surface);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.ktheme-sticky-position-bottom .ktheme-sticky-demo {
	align-items: end;
}

.ktheme-sticky-position-bottom .ktheme-sticky-panel {
	top: auto;
	bottom: var(--ktheme-sticky-offset, 24px);
}

.ktheme-sticky-panel.is-ktheme-sticky-fixed,
.ktheme-sticky-panel.is-ktheme-sticky-ended {
	z-index: 40;
}

.ktheme-sticky-panel.is-ktheme-sticky-fixed {
	position: fixed !important;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.05);
}

.ktheme-sticky-panel.is-ktheme-sticky-ended {
	position: absolute !important;
	left: 0;
	right: 0;
}

.ktheme-sticky-layout-bar .ktheme-sticky-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.ktheme-sticky-eyebrow {
	display: inline-flex;
	align-items: center;
	height: 22px;
	margin-bottom: 12px;
	padding: 0 8px;
	border: 1px solid rgba(94, 106, 210, 0.18);
	border-radius: 4px;
	background: #f4f5fb;
	color: var(--ktheme-sticky-accent);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.ktheme-sticky-title {
	margin: 0 0 10px;
	color: var(--ktheme-sticky-text);
	font-size: 22px;
	font-weight: 650;
	line-height: 1.25;
}

.ktheme-sticky-description {
	margin: 0;
	color: var(--ktheme-sticky-muted);
	font-size: 15px;
	line-height: 1.6;
}

.ktheme-sticky-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	margin-top: 18px;
	padding: 0 14px;
	border-radius: 6px;
	background: var(--ktheme-sticky-accent);
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.16s ease, transform 0.16s ease;
}

.ktheme-sticky-button:hover,
.ktheme-sticky-button:focus {
	background: #7170ff;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}

.ktheme-sticky-scroll-content {
	display: grid;
	gap: 14px;
}

.ktheme-sticky-layout-bar .ktheme-sticky-scroll-content {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ktheme-sticky-item {
	min-height: 156px;
	padding: 18px;
	border: 1px solid var(--ktheme-sticky-border);
	border-radius: 8px;
	background: var(--ktheme-sticky-subtle);
}

.ktheme-sticky-item-index {
	display: inline-flex;
	align-items: center;
	height: 22px;
	margin-bottom: 16px;
	color: var(--ktheme-sticky-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
}

.ktheme-sticky-item h4 {
	margin: 0 0 8px;
	color: var(--ktheme-sticky-text);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.35;
}

.ktheme-sticky-item p {
	margin: 0;
	color: var(--ktheme-sticky-muted);
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 991.98px) {
	.ktheme-sticky-demo,
	.ktheme-sticky-layout-bar .ktheme-sticky-demo,
	.ktheme-sticky-layout-bar .ktheme-sticky-scroll-content {
		grid-template-columns: minmax(0, 1fr);
	}

	.ktheme-sticky-demo {
		min-height: 0;
	}

	.ktheme-sticky-panel,
	.ktheme-sticky-panel.is-ktheme-sticky-fixed,
	.ktheme-sticky-panel.is-ktheme-sticky-ended,
	.ktheme-sticky-position-bottom .ktheme-sticky-panel {
		position: relative !important;
		top: auto !important;
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		width: auto !important;
		transform: none !important;
	}

	.ktheme-sticky-layout-bar .ktheme-sticky-panel {
		align-items: flex-start;
		flex-direction: column;
	}
}
/* ==========================================
   Tabs Widget
   ========================================== */

.ktheme-tabs-widget {
	--ktheme-tabs-accent: #5e6ad2;
	--ktheme-tabs-text: #0e0e10;
	--ktheme-tabs-muted: #6b6f76;
	--ktheme-tabs-border: #ebeef2;
	--ktheme-tabs-surface: #ffffff;
	--ktheme-tabs-subtle: #fafbfc;
	display: grid;
	gap: 16px;
	width: 100%;
}

.ktheme-tabs-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px;
	border: 1px solid var(--ktheme-tabs-border);
	border-radius: 8px;
	background: var(--ktheme-tabs-subtle);
}

.ktheme-tabs-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 14px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--ktheme-tabs-muted);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.ktheme-tabs-tab:hover,
.ktheme-tabs-tab:focus {
	color: var(--ktheme-tabs-text);
	outline: none;
}

.ktheme-tabs-tab:focus-visible {
	box-shadow: 0 0 0 3px rgba(94, 106, 210, 0.12);
}

.ktheme-tabs-tab.is-active {
	background: var(--ktheme-tabs-surface);
	color: var(--ktheme-tabs-accent);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}



.ktheme-tabs-panels {
	min-width: 0;
}

.ktheme-tabs-panel {
	padding: 24px;
	border: 1px solid var(--ktheme-tabs-border);
	border-radius: 8px;
	background: var(--ktheme-tabs-surface);
}

.ktheme-tabs-panel[hidden] {
	display: none;
}

.ktheme-tabs-panel-title {
	margin: 0 0 10px;
	color: var(--ktheme-tabs-text);
	font-size: 22px;
	font-weight: 650;
	line-height: 1.3;
}

.ktheme-tabs-panel-content {
	color: var(--ktheme-tabs-muted);
	font-size: 15px;
	line-height: 1.65;
}

.ktheme-tabs-panel-content p:last-child,
.ktheme-tabs-panel-content ul:last-child,
.ktheme-tabs-panel-content ol:last-child {
	margin-bottom: 0;
}

.ktheme-tabs-panel-content ul,
.ktheme-tabs-panel-content ol {
	padding-left: 20px;
}

.ktheme-tabs-layout-vertical {
	grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
	align-items: start;
	gap: 20px;
}

.ktheme-tabs-layout-vertical .ktheme-tabs-nav {
	align-items: stretch;
	flex-direction: column;
}

.ktheme-tabs-layout-vertical .ktheme-tabs-tab {
	justify-content: flex-start;
	width: 100%;
}

.ktheme-tabs-layout-pills .ktheme-tabs-nav {
	justify-content: center;
	border-color: transparent;
	background: transparent;
}

.ktheme-tabs-layout-pills .ktheme-tabs-tab {
	border: 1px solid var(--ktheme-tabs-border);
	background: var(--ktheme-tabs-surface);
}

.ktheme-tabs-layout-pills .ktheme-tabs-tab.is-active {
	border-color: rgba(94, 106, 210, 0.28);
	background: #f4f5fb;
	box-shadow: none;
}

@media (max-width: 767.98px) {
	.ktheme-tabs-layout-vertical {
		grid-template-columns: minmax(0, 1fr);
	}

	.ktheme-tabs-nav,
	.ktheme-tabs-layout-pills .ktheme-tabs-nav {
		align-items: stretch;
		flex-direction: column;
	}

	.ktheme-tabs-tab,
	.ktheme-tabs-layout-pills .ktheme-tabs-tab {
		justify-content: flex-start;
		width: 100%;
	}

	.ktheme-tabs-panel {
		padding: 20px;
	}
}
/* Theme tab bridge: keep K-Tabs aligned with the starter theme's .kt-tab markup. */
.ktheme-tabs-widget.kt-tab .tab-content {
	margin-top: 24px;
}

.ktheme-tabs-widget.kt-tab .tab-pane {
	padding: 24px;
	border: 1px solid #ebeef2;
	border-top: 0;
}

.ktheme-tabs-widget.kt-tab.tab-type1 .tab-content {
	margin-top: 0;
}

.ktheme-tabs-widget.kt-tab.tab-type14-bg .tab-pane,
.ktheme-tabs-widget.kt-tab.tab-type18 .tab-pane {
	border-top: 1px solid #ebeef2;
}

.ktheme-tabs-widget.kt-tab .nav-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

@media (max-width: 767.98px) {
	.ktheme-tabs-widget.kt-tab .nav-tabs {
		align-items: stretch;
		flex-direction: column;
	}

	.ktheme-tabs-widget.kt-tab .nav-tabs .nav-link {
		width: 100%;
	}
}

/* ========================================
   Alert Widget
   ======================================== */
.ktheme-alert-widget {
	--ktheme-alert-accent: #0081f1;
	--ktheme-alert-bg: #eef7ff;
	--ktheme-alert-border: rgba(0, 129, 241, 0.22);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 14px;
	align-items: flex-start;
	padding: 18px 20px;
	border: 1px solid var(--ktheme-alert-border);
	border-left: 4px solid var(--ktheme-alert-accent);
	border-radius: 8px;
	background: var(--ktheme-alert-bg);
	color: #0e0e10;
}

.ktheme-alert-icon {
	position: relative;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border-radius: 999px;
	background: var(--ktheme-alert-accent);
	flex: 0 0 auto;
}

.ktheme-alert-icon::after {
	content: "";
	position: absolute;
	left: 9px;
	top: 4px;
	width: 2px;
	height: 8px;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 10px 0 #fff;
}

.ktheme-alert-content {
	min-width: 0;
}

.ktheme-alert-title {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #0e0e10;
}

.ktheme-alert-message {
	font-size: 14px;
	line-height: 1.6;
	color: #3c3e44;
}

.ktheme-alert-message p:last-child {
	margin-bottom: 0;
}

.ktheme-alert-action {
	align-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 12px;
	border: 1px solid rgba(14, 14, 16, 0.12);
	border-radius: 6px;
	background: #fff;
	color: var(--ktheme-alert-accent);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.ktheme-alert-action:hover,
.ktheme-alert-action:focus {
	border-color: var(--ktheme-alert-accent);
	color: var(--ktheme-alert-accent);
	text-decoration: none;
}

.ktheme-alert-variant-info {
	--ktheme-alert-accent: #0081f1;
	--ktheme-alert-bg: #eef7ff;
	--ktheme-alert-border: rgba(0, 129, 241, 0.22);
}

.ktheme-alert-variant-success {
	--ktheme-alert-accent: #4cb782;
	--ktheme-alert-bg: #f0fbf6;
	--ktheme-alert-border: rgba(76, 183, 130, 0.24);
}

.ktheme-alert-variant-warning {
	--ktheme-alert-accent: #f2994a;
	--ktheme-alert-bg: #fff7ed;
	--ktheme-alert-border: rgba(242, 153, 74, 0.28);
}

.ktheme-alert-variant-danger {
	--ktheme-alert-accent: #f7425d;
	--ktheme-alert-bg: #fff1f3;
	--ktheme-alert-border: rgba(247, 66, 93, 0.24);
}

.ktheme-alert-variant-neutral {
	--ktheme-alert-accent: #6b6f76;
	--ktheme-alert-bg: #fafbfc;
	--ktheme-alert-border: #ebeef2;
}

@media (max-width: 767.98px) {
	.ktheme-alert-widget {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.ktheme-alert-action {
		grid-column: 2;
		justify-self: flex-start;
		margin-top: 4px;
	}
}
/* ========================================
   Design Showcase Widget
   ======================================== */
.ktheme-design-showcase {
	--ktheme-demo-text: #0e0e10;
	--ktheme-demo-muted: #6b6f76;
	--ktheme-demo-border: #ebeef2;
	--ktheme-demo-surface: #ffffff;
	--ktheme-demo-subtle: #fafbfc;
	--ktheme-demo-brand: #5e6ad2;
	display: grid;
	gap: 24px;
	width: 100%;
}

.ktheme-design-showcase-head {
	max-width: 720px;
}

.ktheme-design-showcase-eyebrow,
.ktheme-design-card-label {
	display: inline-flex;
	align-items: center;
	height: 22px;
	padding: 0 8px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 4px;
	background: var(--ktheme-demo-subtle);
	color: var(--ktheme-demo-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.ktheme-design-showcase-title {
	margin: 12px 0 0;
	color: var(--ktheme-demo-text);
	font-size: 28px;
	font-weight: 650;
	line-height: 1.2;
}

.ktheme-design-showcase-description {
	max-width: 680px;
	margin: 10px 0 0;
	color: #3c3e44;
	font-size: 15px;
	line-height: 1.65;
}

.ktheme-design-card-grid,
.ktheme-design-color-grid,
.ktheme-design-metrics-grid,
.ktheme-design-pricing-grid,
.ktheme-design-icon-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.ktheme-design-card,
.ktheme-design-color-card,
.ktheme-design-metrics-grid article,
.ktheme-design-pricing-grid article {
	min-width: 0;
	padding: 20px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: var(--ktheme-demo-surface);
}

.ktheme-design-card-media {
	position: relative;
	display: block;
	overflow: hidden;
	height: 320px;
	margin-bottom: 16px;
	border-radius: 8px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--ktheme-demo-color) 18%, white), var(--ktheme-demo-subtle));
}

.ktheme-design-card-media img,
.ktheme-design-card-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: var(--ktheme-demo-image-fit, cover);
}

.ktheme-design-card h3,
.ktheme-design-pricing-grid h3 {
	margin: 12px 0 8px;
	color: var(--ktheme-demo-text);
	font-size: 18px;
	font-weight: 650;
	line-height: 1.35;
}

.ktheme-design-card p,
.ktheme-design-pricing-grid p,
.ktheme-design-metrics-grid p,
.ktheme-design-list-description,
.ktheme-design-search span {
	margin: 0;
	color: var(--ktheme-demo-muted);
	font-size: 14px;
	line-height: 1.55;
}

.ktheme-design-color-card {
	display: grid;
	gap: 8px;
}

.ktheme-design-swatch {
	display: block;
	height: 72px;
	border-radius: 8px;
	box-shadow: inset 0 0 0 1px rgba(14, 14, 16, 0.08);
}

.ktheme-design-color-card strong,
.ktheme-design-list strong,
.ktheme-design-search strong,
.ktheme-design-timeline strong {
	color: var(--ktheme-demo-text);
	font-size: 15px;
	font-weight: 650;
}

.ktheme-design-color-card code {
	color: #3c3e44;
	font-size: 13px;
}

.ktheme-design-type-list,
.ktheme-design-progress-list,
.ktheme-design-search,
.ktheme-design-list {
	display: grid;
	gap: 12px;
}

.ktheme-design-type-row {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) minmax(160px, 0.45fr);
	gap: 18px;
	align-items: baseline;
	padding: 16px 0;
	border-bottom: 1px solid var(--ktheme-demo-border);
}

.ktheme-design-type-row span,
.ktheme-design-type-row em {
	color: var(--ktheme-demo-muted);
	font-size: 13px;
	font-style: normal;
}

.ktheme-design-type-row strong {
	color: var(--ktheme-demo-text);
	font-weight: 650;
}

.ktheme-design-type-row.type-1 strong { font-size: 32px; line-height: 1.15; }
.ktheme-design-type-row.type-2 strong { font-size: 24px; line-height: 1.2; }
.ktheme-design-type-row.type-3 strong { font-size: 18px; line-height: 1.35; }
.ktheme-design-type-row.type-4 strong { font-size: 15px; line-height: 1.5; }

.ktheme-design-button-row,
.ktheme-design-label-row,
.ktheme-design-tooltip-row,
.ktheme-design-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.ktheme-design-demo-button,
.ktheme-design-pricing-grid a,
.ktheme-design-contact button,
.ktheme-design-modal a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
}

.ktheme-design-demo-button.primary,
.ktheme-design-pricing-grid .is-featured a,
.ktheme-design-contact button,
.ktheme-design-modal a {
	border: 1px solid var(--ktheme-demo-brand);
	background: var(--ktheme-demo-brand);
	color: #fff;
}

.ktheme-design-demo-button.secondary,
.ktheme-design-pricing-grid a {
	border: 1px solid var(--ktheme-demo-border);
	background: #fff;
	color: var(--ktheme-demo-text);
}

.ktheme-design-demo-button.ghost {
	border: 1px solid transparent;
	background: transparent;
	color: var(--ktheme-demo-muted);
}

.ktheme-design-breadcrumb,
.ktheme-design-pagination {
	padding: 14px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: var(--ktheme-demo-subtle);
}

.ktheme-design-breadcrumb a,
.ktheme-design-pagination a,
.ktheme-design-pagination span {
	color: var(--ktheme-demo-muted);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.ktheme-design-breadcrumb a + a::before {
	content: "/";
	margin: 0 10px 0 6px;
	color: #b4b5b8;
}

.ktheme-design-breadcrumb [aria-current="page"],
.ktheme-design-pagination .is-active {
	color: var(--ktheme-demo-brand);
}

.ktheme-design-metrics-grid strong {
	display: block;
	color: var(--ktheme-demo-text);
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
}

.ktheme-design-metrics-grid span {
	display: block;
	margin-top: 10px;
	color: var(--ktheme-demo-text);
	font-weight: 650;
}

.ktheme-design-label-row span {
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 10px;
	border: 1px solid color-mix(in srgb, var(--ktheme-demo-color) 24%, #ebeef2);
	border-radius: 4px;
	background: color-mix(in srgb, var(--ktheme-demo-color) 10%, #fff);
	color: var(--ktheme-demo-color);
	font-size: 13px;
	font-weight: 650;
}

.ktheme-design-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ktheme-design-list li {
	position: relative;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: #fff;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.ktheme-design-list li:hover {
	border-color: color-mix(in srgb, var(--ktheme-demo-color) 30%, var(--ktheme-demo-border));
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
	transform: translateY(-1px);
}

.ktheme-design-list-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid color-mix(in srgb, var(--ktheme-demo-color) 24%, #ebeef2);
	border-radius: 6px;
	background: color-mix(in srgb, var(--ktheme-demo-color) 9%, #fff);
	color: var(--ktheme-demo-color);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.ktheme-design-list strong {
	display: block;
	line-height: 1.4;
}

.ktheme-design-list-description {
	display: block;
	margin-top: 5px;
}

.ktheme-design-map {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
	gap: 16px;
}

.ktheme-design-map-canvas {
	position: relative;
	min-height: 260px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: linear-gradient(90deg, #f5f7fa 23px, transparent 1%) center / 48px 48px, linear-gradient(#eef1f5 23px, transparent 1%) center / 48px 48px, #fafbfc;
	overflow: hidden;
}

.ktheme-design-map-canvas span,
.ktheme-design-map-canvas i {
	position: absolute;
	display: block;
	border-radius: 999px;
}

.ktheme-design-map-canvas span {
	left: 22%;
	top: 58%;
	width: 180px;
	height: 46px;
	background: rgba(94, 106, 210, 0.16);
	transform: rotate(-14deg);
}

.ktheme-design-map-canvas i {
	left: 52%;
	top: 42%;
	width: 18px;
	height: 18px;
	background: var(--ktheme-demo-brand);
	box-shadow: 0 0 0 8px rgba(94, 106, 210, 0.14);
}

.ktheme-design-map aside {
	display: grid;
	gap: 12px;
}

.ktheme-design-map p,
.ktheme-design-search a {
	margin: 0;
	padding: 16px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: #fff;
}

.ktheme-design-search label,
.ktheme-design-contact label {
	display: grid;
	gap: 8px;
	color: var(--ktheme-demo-text);
	font-size: 13px;
	font-weight: 650;
}

.ktheme-design-search input,
.ktheme-design-contact input,
.ktheme-design-contact textarea {
	width: 100%;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 6px;
	background: #fff;
	color: var(--ktheme-demo-text);
	font-size: 14px;
}

.ktheme-design-search a {
	display: grid;
	gap: 4px;
	text-decoration: none;
}

.ktheme-design-pricing-grid article.is-featured {
	border-color: rgba(94, 106, 210, 0.36);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.ktheme-design-pricing-grid article > span {
	color: var(--ktheme-demo-muted);
	font-size: 12px;
	font-weight: 650;
}

.ktheme-design-pricing-grid article > strong {
	display: block;
	margin-top: 12px;
	color: var(--ktheme-demo-text);
	font-size: 30px;
	line-height: 1;
}

.ktheme-design-progress-list > div {
	display: grid;
	gap: 8px;
}

.ktheme-design-progress-list span {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	color: var(--ktheme-demo-text);
	font-size: 14px;
}

.ktheme-design-progress-list em {
	color: var(--ktheme-demo-muted);
	font-style: normal;
}

.ktheme-design-progress-list i {
	display: block;
	height: 10px;
	border-radius: 999px;
	background: #f0f2f5;
	overflow: hidden;
}

.ktheme-design-progress-list b {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--ktheme-demo-color);
}

.ktheme-design-timeline {
	position: relative;
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ktheme-design-timeline li {
	position: relative;
	padding: 0 0 0 32px;
}

.ktheme-design-timeline li::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 4px;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--ktheme-demo-brand);
	box-shadow: 0 0 0 5px rgba(94, 106, 210, 0.12);
}

.ktheme-design-timeline li + li::after {
	content: "";
	position: absolute;
	left: 9px;
	bottom: calc(100% + 2px);
	width: 1px;
	height: 20px;
	background: var(--ktheme-demo-border);
}

.ktheme-design-timeline span {
	display: block;
	margin-bottom: 4px;
	color: var(--ktheme-demo-muted);
	font-size: 12px;
	font-weight: 650;
}

.ktheme-design-timeline p {
	margin: 6px 0 0;
	color: var(--ktheme-demo-muted);
	font-size: 14px;
	line-height: 1.55;
}

.ktheme-design-tooltip-row button {
	position: relative;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 6px;
	background: #fff;
	color: var(--ktheme-demo-text);
	font-size: 14px;
	font-weight: 650;
	cursor: help;
}

.ktheme-design-tooltip-row [role="tooltip"] {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	z-index: 2;
	width: max-content;
	max-width: 220px;
	padding: 8px 10px;
	border-radius: 6px;
	background: #0e0e10;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 4px);
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.ktheme-design-tooltip-row button:hover [role="tooltip"],
.ktheme-design-tooltip-row button:focus [role="tooltip"] {
	opacity: 1;
	transform: translate(-50%, 0);
}

.ktheme-design-word-rotator {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: baseline;
	color: var(--ktheme-demo-text);
	font-size: 34px;
	font-weight: 650;
	line-height: 1.15;
}

.ktheme-design-word-rotator strong {
	position: relative;
	display: inline-grid;
	min-width: 210px;
	min-height: 40px;
	color: var(--ktheme-demo-brand);
}

.ktheme-design-word-rotator em {
	grid-area: 1 / 1;
	font-style: normal;
	opacity: 0;
	animation: ktheme-word-rotate 6s infinite;
}

.ktheme-design-word-rotator em:nth-child(2) { animation-delay: 2s; }
.ktheme-design-word-rotator em:nth-child(3) { animation-delay: 4s; }

@keyframes ktheme-word-rotate {
	0%, 8% { opacity: 0; transform: translateY(8px); }
	12%, 30% { opacity: 1; transform: translateY(0); }
	34%, 100% { opacity: 0; transform: translateY(-8px); }
}

.ktheme-design-contact {
	display: grid;
	gap: 14px;
	max-width: 560px;
	padding: 20px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: #fff;
}

.ktheme-design-contact textarea {
	min-height: 110px;
	padding-top: 10px;
}

.ktheme-design-contact button {
	justify-self: flex-start;
	border: 0;
}

.ktheme-design-modal {
	position: relative;
	z-index: 1;
	isolation: isolate;
	min-height: 260px;
	padding: 20px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: linear-gradient(135deg, #fafbfc, #fff);
}

.ktheme-design-modal summary {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 6px;
	background: var(--ktheme-demo-brand);
	color: #fff;
	font-size: 14px;
	font-weight: 650;
	cursor: pointer;
}

.ktheme-design-modal summary::-webkit-details-marker {
	display: none;
}

.ktheme-design-modal div[role="dialog"] {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(420px, calc(100% - 32px));
	padding: 22px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.05);
	z-index: 2;
	transform: translate(-50%, -50%);
}

.ktheme-design-modal button,
.ktheme-design-modal a {
	z-index: 3;
}

.ktheme-design-modal button {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 28px;
	height: 28px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 6px;
	background: #fff;
	color: var(--ktheme-demo-muted);
}

.ktheme-design-modal strong {
	display: block;
	padding-right: 32px;
	color: var(--ktheme-demo-text);
	font-size: 18px;
}

.ktheme-design-modal a {
	position: relative;
}

.ktheme-design-modal p {
	margin: 10px 0 18px;
	color: var(--ktheme-demo-muted);
	font-size: 14px;
	line-height: 1.55;
}

.ktheme-design-section-demo {
	display: grid;
	gap: 12px;
}

.ktheme-design-section-demo section {
	min-height: 150px;
	padding: 24px;
	border: 1px solid color-mix(in srgb, var(--ktheme-demo-color) 24%, #ebeef2);
	border-radius: 8px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--ktheme-demo-color) 10%, #fff), #fff);
}

.ktheme-design-section-demo span {
	color: var(--ktheme-demo-color);
	font-size: 12px;
	font-weight: 700;
}

.ktheme-design-section-demo strong {
	display: block;
	margin-top: 18px;
	color: var(--ktheme-demo-text);
	font-size: 22px;
}

.ktheme-design-section-demo p {
	max-width: 560px;
	margin: 8px 0 0;
	color: var(--ktheme-demo-muted);
	font-size: 14px;
	line-height: 1.55;
}

.ktheme-design-icon-grid span {
	display: grid;
	gap: 10px;
	place-items: center;
	min-height: 112px;
	padding: 16px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: #fff;
	color: var(--ktheme-demo-text);
	font-size: 13px;
	font-weight: 650;
	text-align: center;
}

.ktheme-design-icon-grid i {
	width: 24px;
	height: 24px;
	border: 2px solid var(--ktheme-demo-color);
	border-radius: 7px;
	box-shadow: inset 8px 8px 0 color-mix(in srgb, var(--ktheme-demo-color) 16%, transparent);
}

@media (max-width: 991.98px) {
	.ktheme-design-card-grid,
	.ktheme-design-color-grid,
	.ktheme-design-metrics-grid,
	.ktheme-design-pricing-grid,
	.ktheme-design-icon-grid,
	.ktheme-design-map {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.ktheme-design-card-grid,
	.ktheme-design-color-grid,
	.ktheme-design-metrics-grid,
	.ktheme-design-pricing-grid,
	.ktheme-design-icon-grid,
	.ktheme-design-map,
	.ktheme-design-type-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.ktheme-design-showcase-title {
		font-size: 24px;
	}

	.ktheme-design-word-rotator {
		font-size: 26px;
	}
}
.ktheme-design-cta-demo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px;
	border: 1px solid var(--ktheme-demo-border);
	border-radius: 8px;
	background: var(--ktheme-demo-subtle);
}

.ktheme-design-cta-demo span {
	color: var(--ktheme-demo-brand);
	font-size: 12px;
	font-weight: 700;
}

.ktheme-design-cta-demo strong {
	display: block;
	margin-top: 8px;
	color: var(--ktheme-demo-text);
	font-size: 24px;
	line-height: 1.25;
}

.ktheme-design-cta-demo p {
	max-width: 640px;
	margin: 8px 0 0;
	color: var(--ktheme-demo-muted);
	font-size: 15px;
	line-height: 1.6;
}

.ktheme-design-cta-demo a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 6px;
	background: var(--ktheme-demo-brand);
	color: #fff;
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
}

@media (max-width: 767.98px) {
	.ktheme-design-cta-demo {
		align-items: flex-start;
		flex-direction: column;
	}
}
/* ========================================
   KTheme Post Modal
   ======================================== */
body.k-post-modal-open {
	overflow: hidden;
}

.k-post-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.k-post-modal.is-open {
	display: flex;
}

.k-post-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 9, 10, 0.62);
	backdrop-filter: blur(6px);
}

.k-post-modal-dialog {
	position: relative;
	z-index: 1;
	width: min(860px, 100%);
	max-height: min(820px, calc(100vh - 48px));
	overflow: auto;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.05);
	outline: none;
}

.k-post-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid #ebeef2;
	border-radius: 6px;
	background: #fff;
	color: #3c3e44;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.k-post-modal-close:hover,
.k-post-modal-close:focus-visible {
	border-color: #d8dbe0;
	color: #0e0e10;
	box-shadow: 0 0 0 3px rgba(94, 106, 210, 0.12);
}

.k-post-modal-content {
	padding: 28px;
}

.k-post-modal-loading,
.k-post-modal-error {
	padding: 52px 20px;
	color: #6b6f76;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
}

.k-post-modal-article {
	display: grid;
	gap: 22px;
}

.k-post-modal-image {
	margin: -28px -28px 0;
	background: #fafbfc;
}

.k-post-modal-image img {
	display: block;
	width: 100%;
	max-height: 440px;
	object-fit: cover;
}

.k-post-modal-header {
	padding-right: 42px;
}

.k-post-modal-title {
	margin: 0;
	color: #0e0e10;
	font-size: 28px;
	font-weight: 650;
	line-height: 1.25;
}

.k-post-modal-meta {
	margin-top: 8px;
	color: #6b6f76;
	font-size: 13px;
	line-height: 1.5;
}

.k-post-modal-body {
	color: #3c3e44;
	font-size: 15px;
	line-height: 1.7;
}

.k-post-modal-body p:last-child {
	margin-bottom: 0;
}

.k-post-modal-footer {
	display: flex;
	justify-content: flex-start;
	background: none;
}

.k-post-modal-link {
	text-decoration: none;
}

.k-post-modal-link:hover,
.k-post-modal-link:focus-visible {
	text-decoration: none;
}

@media (max-width: 767.98px) {
	.k-post-modal {
		padding: 14px;
	}

	.k-post-modal-dialog {
		max-height: calc(100vh - 28px);
		border-radius: 10px;
	}

	.k-post-modal-content {
		padding: 22px;
	}

	.k-post-modal-image {
		margin: -22px -22px 0;
	}

	.k-post-modal-title {
		font-size: 22px;
	}
}
/* ========================================
   KTheme Post Layout Presets
   ======================================== */
.k-post-wrapper[class*="k-post-preset-"] {
	--k-post-preset-text: #0e0e10;
	--k-post-preset-muted: #6b6f76;
	--k-post-preset-border: #ebeef2;
	--k-post-preset-surface: #ffffff;
	--k-post-preset-subtle: #fafbfc;
	--k-post-preset-brand: #5e6ad2;
}

.k-post-wrapper[class*="k-post-preset-"] .k-post-inner,
.k-post-wrapper[class*="k-post-preset-"] .k-post-card {
	border-color: var(--k-post-preset-border) !important;
	color: var(--k-post-preset-text);
}

.k-post-wrapper[class*="k-post-preset-"] .k-post-title-link {
	color: var(--k-post-preset-text) !important;
}

.k-post-wrapper[class*="k-post-preset-"] .k-post-title-link:hover,
.k-post-wrapper[class*="k-post-preset-"] .k-post-title-link:focus-visible {
	color: var(--k-post-preset-brand) !important;
}

.k-post-preset-classic-grid .k-post-inner,
.k-post-preset-classic-grid .k-post-card {
	background: transparent !important;
	box-shadow: none !important;
}

.k-post-preset-classic-grid .k-post-thumbnail,
.k-post-preset-classic-grid .k-post-card .k-post-thumbnail {
	border-radius: 6px !important;
}

/* A badge already supplies the title's preceding vertical rhythm. */
.k-post-preset-classic-grid .k-post-badge + .k-post-header {
	margin-top: 0;
}

.k-post-preset-rounded-card .k-post-inner,
.k-post-preset-rounded-card .k-post-card {
	overflow: hidden !important;
	border: 1px solid var(--k-post-preset-border) !important;
	border-radius: 8px !important;
	background: var(--k-post-preset-surface) !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

.k-post-preset-rounded-card .k-post-inner:hover,
.k-post-preset-rounded-card .k-post-card:hover {
	border-color: #d8dbe0 !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05) !important;
}

.k-post-preset-rounded-card .k-post-content,
.k-post-preset-rounded-card .card-body {
	padding: 20px !important;
}

.k-post-preset-overlay .k-post-inner,
.k-post-preset-overlay .k-post-card {
	position: relative !important;
	overflow: hidden !important;
	min-height: 280px;
	border-radius: 8px !important;
	background: #111 !important;
}

.k-post-preset-overlay .k-post-thumbnail {
	position: absolute !important;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
}

.k-post-preset-overlay .k-post-thumbnail::before {
	display: none !important;
}

.k-post-preset-overlay .k-post-thumbnail .img-effect-wrapper,
.k-post-preset-overlay .k-post-thumbnail-link,
.k-post-preset-overlay .k-post-image,
.k-post-preset-overlay .k-post-placeholder {
	position: absolute !important;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
}

.k-post-preset-overlay .k-post-content,
.k-post-preset-overlay .card-body {
	position: relative !important;
	z-index: 2;
	justify-content: flex-end;
	min-height: 280px;
	padding: 24px !important;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.78) 100%);
	color: #fff !important;
}

.k-post-preset-overlay .k-post-title-link,
.k-post-preset-overlay .k-post-meta,
.k-post-preset-overlay .k-post-excerpt,
.k-post-preset-overlay .card-text {
	color: #fff !important;
}

.k-post-preset-overlay .k-post-meta,
.k-post-preset-overlay .k-post-excerpt,
.k-post-preset-overlay .card-text {
	opacity: 0.82;
}

.k-post-preset-masonry-gallery .k-post-inner,
.k-post-preset-masonry-gallery .k-post-card {
	break-inside: avoid;
	overflow: hidden !important;
	border: 0 !important;
	border-radius: 6px !important;
	background: var(--k-post-preset-surface) !important;
	box-shadow: none !important;
}

.k-post-preset-masonry-gallery .k-post-thumbnail {
	border-radius: 6px !important;
}

.k-post-preset-masonry-gallery .k-post-content,
.k-post-preset-masonry-gallery .card-body {
	padding: 12px 0 0 !important;
}

.k-post-preset-masonry-gallery .k-post-excerpt,
.k-post-preset-masonry-gallery .card-text,
.k-post-preset-masonry-gallery .k-post-read-more {
	font-size: 13px;
}

.k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child {
	grid-column: span 2;
}

.k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child .k-post-inner,
.k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child .k-post-card {
	border: 1px solid var(--k-post-preset-border) !important;
	border-radius: 8px !important;
	background: var(--k-post-preset-surface) !important;
}

.k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child .k-post-title,
.k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child .card-title {
	font-size: 24px !important;
	line-height: 1.25 !important;
}

.k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child .k-post-content,
.k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child .card-body {
	padding: 24px !important;
}

.k-post-preset-compact-list .k-post-grid {
	grid-template-columns: minmax(0, 1fr) !important;
	row-gap: 14px;
	column-gap: 14px;
}

.k-post-preset-compact-list .k-post-item {
	overflow: hidden;
	border: 1px solid var(--k-post-preset-border);
	border-radius: 8px;
	background: var(--k-post-preset-surface);
	box-shadow: none;
}

.k-post-preset-compact-list .k-post-inner,
.k-post-preset-compact-list .k-post-card {
	display: grid !important;
	grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
	align-items: stretch;
	overflow: hidden !important;
	border: 0 !important;
	border-radius: inherit;
	background: transparent !important;
	box-shadow: none !important;
}

.k-post-preset-compact-list .k-post-thumbnail {
	width: 100% !important;
	min-height: 128px;
}

.k-post-preset-compact-list .k-post-content,
.k-post-preset-compact-list .card-body {
	width: auto !important;
	padding: 18px 20px;
}

.k-post-preset-compact-list .k-post-header,
.k-post-preset-compact-list .k-post-title,
.k-post-preset-compact-list .card-title {
	margin-top: 0 !important;
}

.k-post-preset-classic-list .k-post-grid {
	display: block;
	border-bottom: 1px solid var(--k-post-preset-border);
}

.k-post-preset-classic-list .k-post-grid.k-post-masonry {
	column-count: 1;
	column-gap: 0;
}

.k-post-preset-classic-list .k-post-grid.k-post-masonry .k-post-item {
	break-inside: auto;
	margin-bottom: 0;
}

.k-post-preset-classic-list .k-post-classic-list-header,
.k-post-preset-classic-list .k-post-classic-list-row {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr) 140px 140px;
	align-items: center;
	min-height: 80px;
	border-top: 1px solid var(--k-post-preset-border);
}

.k-post-preset-classic-list .k-post-classic-list-header {
	min-height: 80px;
	background: var(--k-post-preset-subtle);
	border-top: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--k-post-preset-text);
}

.k-post-preset-classic-list .k-post-classic-list-row {
	font-size: 16px;
	color: var(--k-post-preset-muted);
	transition: background-color 0.15s ease;
}

.k-post-preset-classic-list .k-post-classic-list-row:hover {
	background: var(--k-post-preset-subtle);
}

.k-post-preset-classic-list .k-post-classic-list-number {
	padding-inline: 24px;
	text-align: center;
}

.k-post-preset-classic-list .k-post-classic-list-title {
	margin: 0;
	padding: 20px 24px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
	min-width: 0;
}

.k-post-preset-classic-list .k-post-classic-list-title a {
	display: block;
	overflow: hidden;
	color: var(--k-post-preset-text);
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.k-post-preset-classic-list .k-post-classic-list-title a:hover,
.k-post-preset-classic-list .k-post-classic-list-title a:focus-visible {
	color: var(--k-post-preset-brand);
}

.k-post-preset-classic-list .k-post-classic-list-author,
.k-post-preset-classic-list .k-post-classic-list-date {
	padding-inline: 16px;
	text-align: center;
	white-space: nowrap;
}

.k-post-preset-accordion .k-post-grid {
	display: block;
	border-top: 1px solid var(--k-post-preset-text);
	border-bottom: 1px solid var(--k-post-preset-border);
}

.k-post-preset-accordion .k-post-grid.k-post-masonry {
	column-count: 1;
	column-gap: 0;
}

.k-post-preset-accordion .k-post-grid.k-post-masonry .k-post-item {
	break-inside: auto;
	margin-bottom: 0;
}

.k-post-preset-accordion .k-post-item {
	border-top: 1px solid var(--k-post-preset-border);
}

.k-post-preset-accordion .k-post-item:first-child {
	border-top: 0;
}

.k-post-preset-accordion .k-post-accordion-item {
	display: block;
	background: var(--k-post-preset-surface);
}

.k-post-preset-accordion .k-post-accordion-summary {
	display: flex;
	align-items: center;
	min-height: 80px;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
	color: var(--k-post-preset-text);
}

.k-post-preset-accordion .k-post-accordion-summary::-webkit-details-marker {
	display: none;
}

.k-post-preset-accordion .k-post-accordion-bullet {
	flex: 0 0 auto;
	width: 24px;
	font-size: 18px;
	line-height: 1;
}

.k-post-preset-accordion .k-post-accordion-title {
	min-width: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
}

.k-post-preset-accordion .k-post-accordion-icon {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	margin-left: auto;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform 0.16s ease;
}

.k-post-preset-accordion .k-post-accordion-item[open] .k-post-accordion-icon {
	transform: rotate(225deg) translate(-2px, -2px);
}

.k-post-preset-accordion .k-post-accordion-summary:focus-visible {
	outline: 2px solid var(--k-post-preset-brand);
	outline-offset: -2px;
}

.k-post-preset-accordion .k-post-accordion-content {
	padding: 36px 56px;
	background: var(--k-post-preset-subtle);
	color: var(--k-post-preset-text);
	font-size: 17px;
	line-height: 1.65;
}

.k-post-preset-accordion .k-post-accordion-content > :first-child {
	margin-top: 0;
}

.k-post-preset-accordion .k-post-accordion-content > :last-child {
	margin-bottom: 0;
}

.k-post-preset-document-list .k-post-grid {
	display: block;
	border-bottom: 1px solid var(--k-post-preset-border);
}

.k-post-preset-document-list .k-post-grid.k-post-masonry {
	column-count: 1;
	column-gap: 0;
}

.k-post-preset-document-list .k-post-grid.k-post-masonry .k-post-item {
	break-inside: auto;
	margin-bottom: 0;
}

.k-post-preset-document-list .k-post-document-list-header,
.k-post-preset-document-list .k-post-document-list-row {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr) 140px 140px;
	align-items: center;
	min-height: 80px;
	border-top: 1px solid var(--k-post-preset-border);
}

.k-post-preset-document-list .k-post-document-list-header {
	min-height: 80px;
	background: var(--k-post-preset-subtle);
	border-top: 0;
	color: var(--k-post-preset-text);
	font-size: 16px;
	font-weight: 700;
}

.k-post-preset-document-list .k-post-document-list-row {
	color: var(--k-post-preset-muted);
	font-size: 16px;
	transition: background-color 0.15s ease;
}

.k-post-preset-document-list .k-post-document-list-row:hover {
	background: var(--k-post-preset-subtle);
}

.k-post-preset-document-list .k-post-document-list-number {
	padding-inline: 24px;
	text-align: center;
}

.k-post-preset-document-list .k-post-document-list-title {
	min-width: 0;
	margin: 0;
	padding: 20px 24px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
}

.k-post-preset-document-list .k-post-document-list-title a {
	display: block;
	overflow: hidden;
	color: var(--k-post-preset-text);
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.k-post-preset-document-list .k-post-document-list-title a:hover,
.k-post-preset-document-list .k-post-document-list-title a:focus-visible {
	color: var(--k-post-preset-brand);
}

.k-post-preset-document-list .k-post-document-list-file,
.k-post-preset-document-list .k-post-document-list-date {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding-inline: 16px;
	text-align: center;
	white-space: nowrap;
}

.k-post-preset-document-list .k-post-document-file-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--k-post-preset-text);
	border-radius: 6px;
	color: var(--k-post-preset-text);
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}

.k-post-preset-document-list .k-post-document-file-link:hover,
.k-post-preset-document-list .k-post-document-file-link:focus-visible {
	border-color: var(--k-post-preset-brand);
	color: var(--k-post-preset-brand);
	box-shadow: 0 0 0 3px rgba(94, 106, 210, 0.12);
}

@media (max-width: 991.98px) {
	.k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child {
		grid-column: span 1;
	}
}

@media (max-width: 767.98px) {
	.k-post-preset-overlay .k-post-inner,
	.k-post-preset-overlay .k-post-card,
	.k-post-preset-overlay .k-post-content,
	.k-post-preset-overlay .card-body {
		min-height: 240px;
	}

	.k-post-preset-compact-list .k-post-inner,
	.k-post-preset-compact-list .k-post-card {
		grid-template-columns: minmax(0, 1fr);
	}

	.k-post-preset-classic-list .k-post-classic-list-header {
		display: none;
	}

	.k-post-preset-classic-list .k-post-grid {
		border-top: 1px solid var(--k-post-preset-border);
	}

	.k-post-preset-classic-list .k-post-classic-list-row {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			'title title'
			'author date';
		row-gap: 10px;
		min-height: 80px;
		padding: 18px 16px;
	}

	.k-post-preset-classic-list .k-post-classic-list-number {
		display: none;
	}

	.k-post-preset-classic-list .k-post-classic-list-title {
		grid-area: title;
		padding: 0;
		font-size: 16px;
	}

	.k-post-preset-classic-list .k-post-classic-list-author,
	.k-post-preset-classic-list .k-post-classic-list-date {
		padding: 0;
		font-size: 13px;
		text-align: start;
	}

	.k-post-preset-classic-list .k-post-classic-list-author {
		grid-area: author;
	}

	.k-post-preset-classic-list .k-post-classic-list-date {
		grid-area: date;
		text-align: end;
	}

	.k-post-preset-accordion .k-post-accordion-summary {
		min-height: 80px;
		padding: 18px 16px;
	}

	.k-post-preset-accordion .k-post-accordion-title {
		font-size: 16px;
	}

	.k-post-preset-accordion .k-post-accordion-content {
		padding: 24px 16px;
		font-size: 15px;
	}

	.k-post-preset-document-list .k-post-document-list-header {
		display: none;
	}

	.k-post-preset-document-list .k-post-grid {
		border-top: 1px solid var(--k-post-preset-border);
	}

	.k-post-preset-document-list .k-post-document-list-row {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			'title title'
			'file date';
		row-gap: 10px;
		min-height: 80px;
		padding: 18px 16px;
	}

	.k-post-preset-document-list .k-post-document-list-number {
		display: none;
	}

	.k-post-preset-document-list .k-post-document-list-title {
		grid-area: title;
		padding: 0;
		font-size: 16px;
	}

	.k-post-preset-document-list .k-post-document-list-file,
	.k-post-preset-document-list .k-post-document-list-date {
		padding: 0;
		font-size: 13px;
		justify-content: flex-start;
	}

	.k-post-preset-document-list .k-post-document-list-file {
		grid-area: file;
	}

	.k-post-preset-document-list .k-post-document-list-date {
		grid-area: date;
		justify-content: flex-end;
	}

	.k-post-preset-document-list .k-post-document-file-link {
		width: 30px;
		height: 30px;
		font-size: 20px;
	}
}


/* KTheme Post Query Toolbar */
.k-post-query-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.k-post-filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.k-post-filter-button,
.k-post-filter-select,
.k-post-sort-select {
    min-height: 36px;
    border: 1px solid #d9dee7;
    border-radius: 6px;
    background: #ffffff;
    color: #24292f;
    font-size: 14px;
    line-height: 1.4;
}

.k-post-filter-button {
    padding: 7px 13px;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.k-post-filter-button:hover,
.k-post-filter-button:focus-visible {
    border-color: #b7c0d1;
    background: #f6f8fa;
}

.k-post-filter-button.is-active {
    border-color: #5e6ad2;
    background: #f0f2ff;
    color: #3f49b5;
}

.k-post-filter-style-pills .k-post-filter-button {
    border-radius: 999px;
}

.k-post-filter-select,
.k-post-sort-select {
    padding: 7px 32px 7px 11px;
}

.k-post-sort-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    margin-left: auto;
}

.k-post-sort-label {
    color: #57606a;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .k-post-query-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .k-post-filter-select,
    .k-post-sort-control,
    .k-post-sort-select {
        width: 100%;
    }
}

/* Mobile card rhythm: mirrors the theme-wide mobile gutter and section scale. */
@media (max-width: 767.98px) {
    .ktheme-cardbox-grid,
    .ktheme-cardbox-vertical-wrapper,
    .k-post-wrapper[class*="k-post-preset-"] .k-post-grid {
        gap: var(--kt-mobile-stack-gap) !important;
    }

    .ktheme-cardbox-style-1 .ktheme-cardbox-link,
    .ktheme-cardbox-text-wrapper,
    .ktheme-cardbox-text-wrapper-style4,
    .k-post-preset-rounded-card .k-post-content,
    .k-post-preset-rounded-card .card-body,
    .k-post-preset-overlay .k-post-content,
    .k-post-preset-overlay .card-body,
    .k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child .k-post-content,
    .k-post-preset-featured-lead .k-post-grid:not(.k-post-masonry) .k-post-item:first-child .card-body,
    .k-post-preset-compact-list .k-post-content,
    .k-post-preset-compact-list .card-body {
        padding: var(--kt-mobile-card-padding) !important;
    }

    .ktheme-steps-container {
        gap: 2rem !important;
    }

    .step-title {
        font-size: 1.6rem !important;
    }

    .step-description {
        font-size: 1rem !important;
    }
}
