:root {
	--kc-bg: #f6f0e4;
	--kc-surface: #ffffff;
	--kc-text: #173a2f;
	--kc-muted: #58675f;
	--kc-line: rgba(23, 58, 47, 0.14);
	--kc-gold: #b58a2b;
	--kc-radius: 18px;
}

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

html {
	scroll-behavior: smooth;
}

body.kalisawah-core-theme {
	margin: 0;
	background: var(--kc-bg);
	color: var(--kc-text);
	font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.7;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

.kc-main {
	min-height: 60vh;
	padding: clamp(42px, 7vw, 88px) 20px;
}

.kc-main--front {
	padding: 0;
}

.kc-container {
	width: min(1180px, 100%);
	margin-inline: auto;
}

.kc-container--content {
	width: min(1040px, 100%);
}

.kc-container--article {
	width: min(820px, 100%);
}

.kc-container--package {
	width: min(1180px, 100%);
}

.kc-entry {
	margin: 0 0 48px;
}

.kc-entry__header {
	margin-bottom: 24px;
}

.kc-entry__title,
.kc-archive-header h1,
.kc-error-page h1 {
	margin: 0;
	color: var(--kc-text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(38px, 6vw, 68px);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.035em;
}

.kc-entry__title a {
	text-decoration: none;
}

.kc-entry__media {
	margin: 0 0 28px;
	overflow: hidden;
	border-radius: var(--kc-radius);
}

.kc-entry__media img {
	display: block;
	width: 100%;
}

.kc-entry__content {
	font-size: 17px;
	color: #31483f;
}

.kc-entry__content h2,
.kc-entry__content h3,
.kc-entry__content h4 {
	color: var(--kc-text);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.15;
}

.kc-entry__content h2 {
	margin-top: 2.1em;
	font-size: clamp(30px, 4vw, 44px);
}

.kc-entry__content h3 {
	margin-top: 1.8em;
	font-size: clamp(24px, 3vw, 32px);
}

.kc-entry__content p,
.kc-entry__content ul,
.kc-entry__content ol {
	margin-top: 0;
	margin-bottom: 1.2em;
}

.kc-entry__content iframe,
.kc-entry__content video {
	max-width: 100%;
}

.kc-archive-header {
	margin-bottom: 36px;
}

.kc-archive-description {
	max-width: 760px;
	color: var(--kc-muted);
}

.kc-post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.kc-post-grid .kc-entry {
	margin: 0;
	padding: 24px;
	background: var(--kc-surface);
	border: 1px solid var(--kc-line);
	border-radius: var(--kc-radius);
}

.kc-post-grid .kc-entry__title {
	font-size: clamp(28px, 3vw, 38px);
}

.kc-post-grid .kc-entry__content {
	font-size: 15px;
}

.kc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	background: var(--kc-text);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
}

.kc-eyebrow {
	color: var(--kc-gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.kc-fallback-header,
.kc-fallback-footer {
	background: #07382c;
	color: #fff;
}

.kc-fallback-header__inner,
.kc-fallback-footer__inner {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
	padding: 20px 0;
}

.kc-fallback-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.kc-fallback-brand {
	font-weight: 700;
	text-decoration: none;
}

.kc-front-page__content:empty::before {
	content: "";
	display: block;
	min-height: 1px;
}

.kalisawah-core-package .kc-entry__title {
	font-size: clamp(40px, 5vw, 62px);
}

.kalisawah-core-package .kc-entry__media {
	max-height: 620px;
}

@media (max-width: 760px) {
	.kc-main {
		padding: 36px 18px 60px;
	}

	.kc-main--front {
		padding: 0;
	}

	.kc-post-grid {
		grid-template-columns: 1fr;
	}

	.kc-fallback-header__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}
