/**
 * 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,
.ktheme-iconbox-style-1 .ktheme-iconbox-item.ktheme-iconbox-item-hover-state {

	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 */
@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-style-1 .ktheme-iconbox-icon svg,
	.ktheme-iconbox-style-1 .ktheme-iconbox-icon i {
		width: 35px;
		height: 35px;
		font-size: 35px;
	}

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

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

/* Shared Slider repeater buttons keep icon and copy in one horizontal row. */
.ktheme-button--managed.ktheme-button--with-icon {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    gap: var(--ktheme-button-icon-gap, 8px);
}

.ktheme-button--managed.ktheme-button--with-icon .btn-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
}

.ktheme-button--managed.ktheme-button--with-icon .btn-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: currentColor;
    font-size: var(--ktheme-button-icon-size, 16px);
    line-height: 1;
}

.ktheme-button--managed.ktheme-button--with-icon .btn-icon svg,
.ktheme-button--managed.ktheme-button--with-icon .btn-icon i {
    display: block;
    width: 1em;
    height: 1em;
    color: currentColor;
    fill: currentColor;
    font-size: 1em;
    line-height: 1;
}

.ktheme-button--managed.has-icon-text-divider {
    gap: 0;
}

.ktheme-button--managed.has-icon-text-divider .btn-icon.icon-left {
    padding-right: var(--ktheme-button-divider-space, 12px);
    margin-right: var(--ktheme-button-divider-space, 12px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ktheme-button--managed.has-icon-text-divider .btn-icon:not(.icon-left) {
    padding-left: var(--ktheme-button-divider-space, 12px);
    margin-left: var(--ktheme-button-divider-space, 12px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* The legacy button library resets every .btn shadow with !important. */
.ktheme-button--managed.shadow-sm {
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04)) !important;
}

.ktheme-button--managed.shadow {
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04)) !important;
}

.ktheme-button--managed.shadow-lg {
    box-shadow: var(--shadow-lg, 0 16px 32px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.05)) !important;
}

.ktheme-button.ktheme-rounded-8 {
    --bs-btn-border-radius: 8px;
    border-radius: 8px !important;
}

/* 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,
.ktheme-iconbox-item-style-2.ktheme-iconbox-item-hover-state {
	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,
.ktheme-iconbox-item-style-2.ktheme-iconbox-item-hover-state .ktheme-iconbox-icon {
	color: #ffffff;
}

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

.ktheme-iconbox-item-style-2:hover .ktheme-iconbox-description,
.ktheme-iconbox-item-style-2.ktheme-iconbox-item-hover-state .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;
}


/* 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;
	opacity: 0.5;
}

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

/* Style 1 optional title reveal effects. Touch users keep titles visible. */
@media (hover: hover) and (pointer: fine) {
	.ktheme-cardbox-title-hover-fade .ktheme-cardbox-style-1 .ktheme-cardbox-title,
	.ktheme-cardbox-title-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-title {
		opacity: 0;
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	.ktheme-cardbox-title-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-title {
		transform: translateY(16px);
	}

	.ktheme-cardbox-title-hover-fade .ktheme-cardbox-style-1 .ktheme-cardbox-item:hover .ktheme-cardbox-title,
	.ktheme-cardbox-title-hover-fade .ktheme-cardbox-style-1 .ktheme-cardbox-item:focus-within .ktheme-cardbox-title,
	.ktheme-cardbox-title-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-item:hover .ktheme-cardbox-title,
	.ktheme-cardbox-title-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-item:focus-within .ktheme-cardbox-title {
		opacity: 1;
		transform: translateY(0);
	}

	.ktheme-cardbox-category-hover-fade .ktheme-cardbox-style-1 .ktheme-cardbox-category,
	.ktheme-cardbox-category-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-category {
		opacity: 0;
		transition: opacity 0.2s ease, transform 0.2s ease;
		transition-delay: 0s;
	}

	.ktheme-cardbox-category-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-category {
		transform: translateY(16px);
	}

	.ktheme-cardbox-category-hover-fade .ktheme-cardbox-style-1 .ktheme-cardbox-item:hover .ktheme-cardbox-category,
	.ktheme-cardbox-category-hover-fade .ktheme-cardbox-style-1 .ktheme-cardbox-item:focus-within .ktheme-cardbox-category,
	.ktheme-cardbox-category-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-item:hover .ktheme-cardbox-category,
	.ktheme-cardbox-category-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-item:focus-within .ktheme-cardbox-category {
		opacity: 1;
		transform: translateY(0);
		transition-delay: var(--ktheme-cardbox-category-delay, 0.3s);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ktheme-cardbox-title-hover-fade .ktheme-cardbox-style-1 .ktheme-cardbox-title,
	.ktheme-cardbox-title-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-title,
	.ktheme-cardbox-category-hover-fade .ktheme-cardbox-style-1 .ktheme-cardbox-category,
	.ktheme-cardbox-category-hover-fade-up .ktheme-cardbox-style-1 .ktheme-cardbox-category {
		transition: none;
		transition-delay: 0s;
	}
}

/* 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;
}

/* ==========================================
   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, background-color 0.3s ease;
}

.ktheme-cardbox-item-vertical:hover,
.ktheme-cardbox-item-vertical.is-auto-active {
	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,
.ktheme-cardbox-item-vertical.is-auto-active .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, box-shadow 0.3s ease, background-color 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, box-shadow 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: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	flex: 0 0 1em;
	color: inherit;
	line-height: 1;
}

.step-circle .step-icon-wrapper i,
.step-circle .step-icon-wrapper svg {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 1;
	color: currentColor;
	fill: currentColor;
}

.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;
	}
}
/* ==========================================
   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;
	}
}
/* ========================================
   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 .k-post-item {
	overflow: visible;
}

.k-post-wrapper .k-post-surface {
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.k-post-wrapper[class*="k-post-preset-"] .k-post-surface {
	border-color: var(--k-post-preset-border);
	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-surface {
	background: transparent;
	box-shadow: none;
}

.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-surface {
	overflow: hidden;
	border: 1px solid var(--k-post-preset-border);
	border-radius: 8px;
	background: var(--k-post-preset-surface);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

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

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

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

.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-surface {
	break-inside: avoid;
	overflow: hidden;
	border: 0;
	border-radius: 6px;
	background: var(--k-post-preset-surface);
	box-shadow: none;
}

.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-surface {
	border: 1px solid var(--k-post-preset-border);
	border-radius: 8px;
	background: var(--k-post-preset-surface);
}

.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-surface {
	display: grid;
	grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
	align-items: stretch;
	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-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-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;
    }
}
