@charset "UTF-8";

/*
 * Hery Bery — modern visual layer
 * Loaded after the legacy stylesheets so the original PHP modules can keep
 * their markup and behaviour while sharing one consistent responsive system.
 */

:root {
	--hb-ink: #132a3a;
	--hb-ink-soft: #506675;
	--hb-green-900: #084c3b;
	--hb-green-800: #0f6b4f;
	--hb-green-700: #137a4a;
	--hb-green-100: #dff5e8;
	--hb-green-50: #effaf3;
	--hb-yellow: #f4b740;
	--hb-coral: #ef765f;
	--hb-sky: #dff3f5;
	--hb-surface: #ffffff;
	--hb-surface-soft: #f6faf7;
	--hb-line: #dfeae3;
	--hb-shadow-sm: 0 8px 24px rgba(19, 42, 58, 0.07);
	--hb-shadow-md: 0 18px 50px rgba(15, 75, 58, 0.11);
	--hb-shadow-lg: 0 30px 80px rgba(15, 75, 58, 0.16);
	--hb-radius-sm: 12px;
	--hb-radius-md: 20px;
	--hb-radius-lg: 30px;
	--hb-transition: 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

html {
	background: #f6faf7;
	scroll-behavior: smooth;
}

body {
	margin: 0 !important;
	background:
		radial-gradient(circle at 6% 7%, rgba(244, 183, 64, 0.14), transparent 26rem),
		radial-gradient(circle at 93% 25%, rgba(64, 176, 150, 0.11), transparent 32rem),
		linear-gradient(180deg, #fbfdfb 0%, #f5faf7 48%, #fbfcfb 100%) !important;
	color: var(--hb-ink) !important;
	font: 400 16px/1.7 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	letter-spacing: 0 !important;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

::selection {
	background: #bde9cd;
	color: var(--hb-green-900);
}

img,
iframe,
video {
	max-width: 100%;
}

img {
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

a {
	color: var(--hb-green-700);
	text-decoration-color: rgba(19, 122, 74, 0.35);
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--hb-green-900);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--hb-green-900) !important;
	outline-offset: 3px !important;
	box-shadow: 0 0 0 6px #fff !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.time-stamp,
.main-menu-custom .wrapper > ul > li > a,
blockquote {
	color: var(--hb-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-weight: 750 !important;
	letter-spacing: -0.025em !important;
}

p,
li,
label,
input,
textarea {
	letter-spacing: 0 !important;
}

.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 16px;
	z-index: 9999;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--hb-ink);
	color: #fff;
	font-weight: 700;
	transform: translateY(-150%);
	transition: transform var(--hb-transition);
}

.skip-link:focus {
	color: #fff;
	transform: translateY(0);
}

.clear-float {
	clear: both;
}

.wrapper,
.active.boxed .wrapper {
	width: calc(100% - 48px) !important;
	max-width: 1180px !important;
	margin-right: auto !important;
	margin-left: auto !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.boxed,
.active.boxed {
	width: 100% !important;
	max-width: none !important;
	min-height: 100vh;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
	background: transparent !important;
	box-shadow: none !important;
}

/* Header */
.header {
	position: relative;
	z-index: 110;
	min-height: 0 !important;
	padding: 15px 0 !important;
	border-bottom: 1px solid rgba(15, 107, 79, 0.09) !important;
	background: rgba(255, 255, 255, 0.9) !important;
	box-shadow: none !important;
}

.header .header-logo {
	display: flex !important;
	float: none !important;
	align-items: center !important;
	justify-content: space-between !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
	color: var(--hb-ink) !important;
	text-decoration: none;
}

.site-brand-mark {
	display: grid;
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(15, 107, 79, 0.12);
	border-radius: 18px;
	background: linear-gradient(145deg, #ffffff, #eef8f1);
	box-shadow: var(--hb-shadow-sm);
}

.header .site-brand-mark img {
	display: block;
	width: 52px !important;
	height: 52px !important;
	max-height: none !important;
	object-fit: contain;
}

.site-brand-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	line-height: 1.15;
}

.site-brand-copy strong {
	font-size: 22px;
	font-weight: 850;
	letter-spacing: -0.045em;
}

.site-brand-copy small {
	margin-top: 6px;
	color: var(--hb-ink-soft);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.01em;
}

.header-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--hb-ink-soft);
	font-size: 12px;
	font-weight: 650;
}

.header-kicker,
.header .header-logo .tanggal {
	display: inline-flex !important;
	align-items: center;
	gap: 7px;
	width: auto !important;
	margin: 0 !important;
	padding: 8px 12px !important;
	border: 1px solid var(--hb-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	color: var(--hb-ink-soft) !important;
	font-size: 12px !important;
	line-height: 1.2;
	white-space: nowrap;
}

.header-kicker span {
	color: var(--hb-yellow);
}

.meta-separator {
	color: #9aada3;
}

/* Navigation */
.main-menu-custom {
	position: sticky !important;
	top: 0;
	z-index: 1000 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	background: rgba(255, 255, 255, 0.88) !important;
	box-shadow: 0 1px 0 rgba(15, 107, 79, 0.09), 0 12px 35px rgba(19, 42, 58, 0.05) !important;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.main-menu-custom .wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 66px;
	margin-top: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.main-menu-custom .ribbon-left,
.main-menu-custom .ribbon-right,
.main-menu-custom .wrapper::before,
.main-menu-custom .wrapper::after,
.main-menu-custom .wrapper > ul::before,
.main-menu-custom .wrapper > ul::after,
.main-menu-custom .wrapper > ul > li::after,
.main-menu-custom .wrapper > a[href="#tgl-menu"] {
	display: none !important;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 9px 15px;
	border: 1px solid var(--hb-line);
	border-radius: 12px;
	background: #fff;
	color: var(--hb-ink);
	font-weight: 750;
	cursor: pointer;
}

.menu-toggle-lines {
	display: flex;
	width: 20px;
	flex-direction: column;
	gap: 4px;
}

.menu-toggle-lines span {
	display: block;
	height: 2px;
	border-radius: 99px;
	background: currentColor;
	transition: transform var(--hb-transition), opacity var(--hb-transition);
}

.main-menu-custom.is-open .menu-toggle-lines span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.main-menu-custom.is-open .menu-toggle-lines span:nth-child(2) {
	opacity: 0;
}

.main-menu-custom.is-open .menu-toggle-lines span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.main-menu-custom .wrapper > ul {
	display: flex !important;
	position: relative !important;
	align-items: center;
	justify-content: center !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 8px 0 !important;
	list-style: none;
	background: transparent !important;
}

.main-menu-custom .wrapper > ul > li {
	display: block !important;
	position: relative;
	float: none !important;
	height: auto !important;
	margin: 0 2px !important;
	padding: 0 !important;
}

.main-menu-custom .wrapper > ul > li > a {
	display: flex !important;
	align-items: center;
	gap: 7px;
	min-height: 46px;
	padding: 10px 16px !important;
	border: 0 !important;
	border-radius: 12px !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--hb-ink) !important;
	font-size: 14px !important;
	font-weight: 730 !important;
	line-height: 1.2 !important;
	text-shadow: none !important;
	transition: color var(--hb-transition), background var(--hb-transition), transform var(--hb-transition) !important;
}

.main-menu-custom .wrapper > ul > li:hover > a,
.main-menu-custom .wrapper > ul > li:focus-within > a,
.main-menu-custom .wrapper > ul > li > a.is-current {
	background: var(--hb-green-50) !important;
	color: var(--hb-green-800) !important;
	transform: translateY(-1px);
}

.nav-chevron {
	margin-top: -3px;
	color: #789186;
	font-size: 16px;
	transition: transform var(--hb-transition);
}

.has-submenu:hover > a .nav-chevron,
.has-submenu:focus-within > a .nav-chevron {
	transform: rotate(180deg);
}

.main-menu-custom .wrapper ul ul {
	display: block !important;
	position: absolute !important;
	top: calc(100% + 8px) !important;
	left: 0 !important;
	width: 235px !important;
	min-width: 210px;
	margin: 0 !important;
	padding: 8px !important;
	border: 1px solid var(--hb-line) !important;
	border-radius: 16px !important;
	background: rgba(255, 255, 255, 0.98) !important;
	box-shadow: var(--hb-shadow-md) !important;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-7px);
	transition: opacity var(--hb-transition), transform var(--hb-transition), visibility var(--hb-transition);
}

.main-menu-custom .wrapper li:hover > ul,
.main-menu-custom .wrapper li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-menu-custom .wrapper ul ul li {
	display: block !important;
	float: none !important;
	width: 100% !important;
	height: auto !important;
	margin: 0 !important;
	border: 0 !important;
}

.main-menu-custom .wrapper ul ul li a {
	display: block !important;
	padding: 11px 12px !important;
	border: 0 !important;
	border-radius: 10px;
	background: transparent !important;
	color: var(--hb-ink-soft) !important;
	font-size: 13px !important;
	font-weight: 650;
	line-height: 1.35 !important;
}

.main-menu-custom .wrapper ul ul li a:hover,
.main-menu-custom .wrapper ul ul li a:focus-visible {
	background: var(--hb-green-50) !important;
	color: var(--hb-green-800) !important;
}

/* Hero */
.slider-content {
	height: auto !important;
	margin: 0 !important;
	padding: 5px 0 !important;
	background: transparent !important;
}

.slider-content .wrapper {
	width: calc(100% - 48px) !important;
	max-width: 1180px !important;
}

.hero-card {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	border: 1px solid rgba(15, 107, 79, 0.12);
	border-radius: var(--hb-radius-lg);
	background: #f7f3e9;
	box-shadow: var(--hb-shadow-lg);
	isolation: isolate;
}

.slider-content .hero-media {
	display: block !important;
	position: absolute;
	inset: 0;
	z-index: -3;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	object-position: center;
	transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-card:hover .hero-media {
	transform: scale(1.018);
}

.hero-shade {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.94) 34%, rgba(255, 253, 247, 0.65) 55%, rgba(255, 253, 247, 0.03) 79%);
}

.hero-copy {
	display: flex;
	width: min(58%, 680px);
	min-height: 520px;
	padding: 62px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;
	padding: 8px 13px;
	border: 1px solid rgba(15, 107, 79, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--hb-green-800);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 6px 20px rgba(15, 107, 79, 0.06);
	backdrop-filter: blur(10px);
}

.hero-eyebrow span {
	color: var(--hb-coral);
	font-size: 9px;
}

.hero-copy h1,
.hero-copy .hero-title {
	max-width: 650px;
	margin: 0 0 21px !important;
	color: var(--hb-ink) !important;
	font-size: clamp(43px, 5vw, 68px) !important;
	font-weight: 850 !important;
	line-height: 1.02 !important;
	letter-spacing: -0.058em !important;
}

.hero-copy p {
	max-width: 575px;
	margin: 0 0 30px !important;
	color: #526979;
	font-size: 17px;
	line-height: 1.7;
}

.hero-copy-segment {
	display: inline;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 780;
	line-height: 1.2;
	text-decoration: none;
	transition: transform var(--hb-transition), box-shadow var(--hb-transition), background var(--hb-transition);
}

.hero-button:hover {
	transform: translateY(-2px);
}

.hero-button-primary {
	background: var(--hb-green-800);
	box-shadow: 0 12px 26px rgba(15, 107, 79, 0.23);
	color: #fff !important;
}

.hero-button-primary:hover {
	background: var(--hb-green-900);
	box-shadow: 0 16px 32px rgba(15, 107, 79, 0.28);
}

.hero-button-secondary {
	border-color: rgba(19, 42, 58, 0.12);
	background: rgba(255, 255, 255, 0.74);
	color: var(--hb-ink) !important;
	backdrop-filter: blur(12px);
}

.hero-button-secondary:hover {
	background: #fff;
	box-shadow: var(--hb-shadow-sm);
}

.hero-spark {
	position: absolute;
	z-index: -1;
	width: 16px;
	height: 16px;
	border: 4px solid rgba(255, 255, 255, 0.78);
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(19, 42, 58, 0.18);
	animation: hb-float 4.8s ease-in-out infinite;
}

.hero-spark-one {
	top: 18%;
	right: 38%;
	background: var(--hb-coral);
}

.hero-spark-two {
	right: 8%;
	bottom: 12%;
	width: 21px;
	height: 21px;
	background: var(--hb-yellow);
	animation-delay: -2.2s;
}

.inner-page .hero-card,
.inner-page .hero-copy {
	min-height: 360px;
}

.inner-page .hero-copy {
	padding-top: 44px;
	padding-bottom: 44px;
}

.inner-page .hero-copy .hero-title {
	font-size: clamp(38px, 4.3vw, 58px) !important;
}

@keyframes hb-float {
	0%, 100% { transform: translateY(0) rotate(0); }
	50% { transform: translateY(-12px) rotate(8deg); }
}

/* Main layout */
.content {
	padding: 58px 0 84px !important;
	background: transparent !important;
}

.active.boxed .content {
	padding: 58px 0 84px !important;
}

.split-content {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 350px;
	align-items: start !important;
	gap: 34px !important;
}

.split-content > .content-white,
.content-white.left,
.content-white.small.right {
	float: none !important;
	width: auto !important;
	min-width: 0;
	height: auto !important;
	margin: 0 !important;
}

.content-white.left {
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.content-white.small.right {
	position: sticky;
	top: 92px;
	overflow: hidden;
	padding: 0 !important;
	border: 1px solid var(--hb-line) !important;
	border-radius: 24px !important;
	background: rgba(255, 255, 255, 0.94) !important;
	box-shadow: var(--hb-shadow-md) !important;
	backdrop-filter: blur(18px);
}

.main-content {
	width: 100%;
	min-width: 0;
	padding: 0 !important;
}

.content-white.small.right > .main-content {
	padding: 26px !important;
}

.main-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	margin: 0 0 22px;
	padding: 0;
}

.main-title {
	display: block !important;
	position: relative !important;
	order: 1;
	width: auto !important;
	margin: 0 !important;
	padding: 0 0 12px !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--hb-ink) !important;
}

.main-title::after {
	display: block !important;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 42px;
	height: 4px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--hb-green-700), #4eb184);
	content: "";
}

.main-title::before,
.main-title h1::before,
.main-title h2::before,
.main-title .ribbon,
.main-title .ribbon-tail,
.main-title .ribbon-tail::before,
.main-title .ribbon-tail::after {
	display: none !important;
}

.main-title h1,
.main-title h2 {
	margin: 0 !important;
	padding: 0 !important;
	color: var(--hb-ink) !important;
	font-size: clamp(25px, 3vw, 34px) !important;
	font-weight: 820 !important;
	line-height: 1.15 !important;
	text-shadow: none !important;
}

.main-head > a.right {
	display: inline-flex !important;
	order: 2;
	float: none !important;
	align-items: center;
	min-height: 38px;
	margin: 0 0 3px auto !important;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--hb-green-50);
	color: var(--hb-green-800) !important;
	font-size: 12px;
	font-weight: 780;
	line-height: 1.2;
	text-transform: capitalize;
	text-decoration: none;
}

.main-head > a.right:hover {
	background: var(--hb-green-100);
	color: var(--hb-green-900) !important;
}

.content-white.small.right .main-head {
	margin-top: 30px;
	margin-bottom: 15px;
}

.content-white.small.right .main-head:first-child {
	margin-top: 0;
}

.content-white.small.right .main-title {
	padding-bottom: 9px !important;
}

.content-white.small.right .main-title h1,
.content-white.small.right .main-title h2 {
	font-size: 20px !important;
}

.content-white.small.right .main-title::after {
	width: 32px;
	height: 3px;
}

/* Headline and archive cards */
.blog-list-1 {
	display: grid;
	gap: 18px;
	margin: 0 0 46px;
}

.blog-list-1 .item {
	display: grid !important;
	grid-template-columns: 86px 176px minmax(0, 1fr);
	align-items: stretch !important;
	gap: 20px !important;
	min-width: 0;
	margin: 0 !important;
	padding: 21px !important;
	overflow: hidden;
	border: 1px solid var(--hb-line) !important;
	border-radius: 21px !important;
	background: rgba(255, 255, 255, 0.94) !important;
	box-shadow: var(--hb-shadow-sm) !important;
	transition: transform var(--hb-transition), border-color var(--hb-transition), box-shadow var(--hb-transition) !important;
}

.blog-list-1 .item::before,
.blog-list-1 .item::after {
	display: none !important;
}

.blog-list-1 .item:hover {
	border-color: rgba(15, 107, 79, 0.26) !important;
	box-shadow: var(--hb-shadow-md) !important;
	transform: translateY(-4px) !important;
}

.blog-list-1 .item .date {
	display: flex !important;
	float: none !important;
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 2px 16px 2px 0 !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	border: 0 !important;
	border-right: 1px solid var(--hb-line) !important;
	background: transparent !important;
}

.blog-list-1 .item .date p {
	margin: 0 !important;
	padding: 0 !important;
}

.blog-list-1 .item .date .day {
	float: none !important;
	width: auto !important;
	margin: 0 0 1px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--hb-green-800) !important;
	font-size: 35px !important;
	font-weight: 830 !important;
	line-height: 1 !important;
}

.blog-list-1 .item .date .month,
.blog-list-1 .item .date .year {
	float: none !important;
	width: auto !important;
	color: var(--hb-ink-soft) !important;
	font-size: 11px !important;
	font-weight: 760 !important;
	line-height: 1.35 !important;
	text-transform: uppercase;
}

.blog-list-1 .item .date .comments {
	float: none !important;
	width: auto !important;
	margin: 10px 0 9px !important;
	padding: 4px 8px !important;
	border-radius: 999px;
	background: #fff6df !important;
	color: #855c0d !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
}

.blog-list-1 .item .date .section,
.blog-list-1 .item .date .author {
	float: none !important;
	width: 100% !important;
	margin: 0 0 5px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

.blog-list-1 .item .date .section a,
.blog-list-1 .item .date .author a {
	display: block !important;
	overflow: hidden;
	padding: 0 !important;
	background: transparent !important;
	color: var(--hb-ink-soft) !important;
	font-size: 11px !important;
	font-weight: 650;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.blog-list-1 .item .date .section a::before,
.blog-list-1 .item .date .author a::before {
	display: none !important;
}

.blog-list-1 .item .image {
	display: block !important;
	float: none !important;
	width: 176px !important;
	height: 146px !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	border: 0 !important;
	border-radius: 15px !important;
	background: var(--hb-surface-soft) !important;
	box-shadow: none !important;
}

.blog-list-1 .item .image img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	object-fit: cover !important;
	transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1) !important;
}

.blog-list-1 .item:hover .image img {
	transform: scale(1.06) !important;
}

.blog-list-1 .item .text {
	display: flex !important;
	float: none !important;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	flex-direction: column;
	align-items: flex-start;
}

.blog-list-1 .item .text h3 {
	margin: 0 0 9px !important;
	font-size: 19px !important;
	font-weight: 790 !important;
	line-height: 1.34 !important;
}

.blog-list-1 .item .text h3 a {
	color: var(--hb-ink) !important;
	text-decoration: none;
}

.blog-list-1 .item .text h3 a:hover {
	color: var(--hb-green-700) !important;
}

.blog-list-1 .item .text p {
	margin: 0 0 12px !important;
	color: var(--hb-ink-soft) !important;
	font-size: 14px !important;
	line-height: 1.65 !important;
}

.blog-list-1 .item .text p:last-child {
	margin-top: auto !important;
	margin-bottom: 0 !important;
}

.more-link,
.blog-list-1 .item .text .more-link,
.widget .button,
.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 41px;
	margin: 0 !important;
	padding: 9px 15px !important;
	border: 1px solid transparent !important;
	border-radius: 11px !important;
	background: var(--hb-green-800) !important;
	box-shadow: 0 8px 18px rgba(15, 107, 79, 0.16) !important;
	color: #fff !important;
	font-size: 12px !important;
	font-style: normal !important;
	font-weight: 780 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	text-shadow: none !important;
	cursor: pointer;
	transition: transform var(--hb-transition), background var(--hb-transition), box-shadow var(--hb-transition) !important;
}

.more-link:hover,
.widget .button:hover,
.button:hover {
	background: var(--hb-green-900) !important;
	box-shadow: 0 11px 24px rgba(15, 107, 79, 0.22) !important;
	color: #fff !important;
	transform: translateY(-2px);
}

.more-link::before,
.more-link::after,
.more-link > span,
.more-link i::before,
.more-link i span {
	display: none !important;
}

.more-link i {
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font-style: normal !important;
}

/* Gallery and video grids */
.menu-display-1-wrapper {
	width: 100% !important;
	margin: 0 0 48px !important;
	padding: 0 !important;
}

.menu-display-1 {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.menu-display-1 .item {
	display: flex !important;
	float: none !important;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 12px !important;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--hb-line) !important;
	border-radius: 18px;
	background: #fff !important;
	box-shadow: var(--hb-shadow-sm);
	transition: transform var(--hb-transition), box-shadow var(--hb-transition) !important;
}

.menu-display-1 .item:hover {
	box-shadow: var(--hb-shadow-md);
	transform: translateY(-4px) !important;
}

.menu-display-1 .item h3,
.menu-display-1 .item .image h3 {
	margin: 4px 3px 11px !important;
	color: var(--hb-ink) !important;
	font-size: 14px !important;
	font-weight: 750 !important;
	line-height: 1.4 !important;
	text-align: left !important;
}

.menu-display-1 .item > a.image {
	display: block;
	width: 100%;
	margin: 0 !important;
	text-decoration: none;
}

.menu-display-1 .item > a.image:has(img) {
	overflow: hidden;
	border-radius: 13px;
}

.menu-display-1 .item .image img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 4 / 3;
	border: 0 !important;
	border-radius: 13px !important;
	box-shadow: none !important;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.menu-display-1 .item:hover .image img {
	transform: scale(1.055);
}

.main-spacer,
.main-spacer.ribbon {
	height: 8px !important;
	margin: 0 !important;
	background: transparent !important;
}

.main-spacer::before,
.main-spacer::after {
	display: none !important;
}

/* Sidebar */
.searchform p {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 9px;
	margin: 0 !important;
}

.searchform input.search,
.add-comment input[type="text"],
.add-comment input[type="email"],
.add-comment input[type="number"],
.add-comment textarea {
	width: 100% !important;
	min-width: 0;
	min-height: 46px;
	margin: 0 !important;
	padding: 10px 13px !important;
	border: 1px solid #cfddd4 !important;
	border-radius: 12px !important;
	background: #fbfdfb !important;
	box-shadow: inset 0 1px 2px rgba(19, 42, 58, 0.025) !important;
	color: var(--hb-ink) !important;
	font-size: 13px !important;
	transition: border-color var(--hb-transition), box-shadow var(--hb-transition), background var(--hb-transition);
}

.searchform input.search::placeholder,
.add-comment input::placeholder,
.add-comment textarea::placeholder {
	color: #5f746a;
}

.searchform input.search:focus,
.add-comment input:focus,
.add-comment textarea:focus {
	border-color: var(--hb-green-700) !important;
	background: #fff !important;
	box-shadow: 0 0 0 4px rgba(19, 122, 74, 0.1) !important;
}

.searchform .button {
	min-width: 68px;
}

.tabs {
	margin-top: 20px;
}

.tabs .tab-navi {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 5px;
	width: 100% !important;
	margin: 0 0 4px !important;
	padding: 5px !important;
	border: 0 !important;
	border-radius: 13px;
	background: #edf5f0;
}

.tabs .tab-navi li {
	display: block !important;
	float: none !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

.tabs .tab-navi li a {
	display: flex !important;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 7px !important;
	border: 0 !important;
	border-radius: 9px !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--hb-ink-soft) !important;
	font-size: 11px !important;
	font-weight: 760;
	line-height: 1.2 !important;
	text-align: center;
	text-shadow: none !important;
}

.tabs .tab-navi li.active a,
.tabs .tab-navi li a[aria-selected="true"] {
	background: #fff !important;
	box-shadow: 0 5px 15px rgba(19, 42, 58, 0.08) !important;
	color: var(--hb-green-800) !important;
}

.latest-activity {
	display: none;
	margin: 0 !important;
}

.latest-activity.active {
	display: block;
}

.no-js .tabs .tab-navi {
	display: none !important;
}

.no-js .latest-activity {
	display: block;
}

.latest-activity .activity-item {
	display: grid !important;
	position: relative;
	z-index: 1;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center !important;
	gap: 12px !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 14px 0 !important;
	border: 0 !important;
	border-bottom: 1px solid var(--hb-line) !important;
	background: transparent !important;
}

.latest-activity .activity-item:last-child {
	border-bottom: 0 !important;
}

.latest-activity .activity-item.topic-item {
	grid-template-columns: minmax(0, 1fr);
}

.latest-activity .activity-item::before,
.latest-activity .activity-item::after {
	display: none !important;
}

.latest-activity .activity-item .image {
	display: block !important;
	float: none !important;
	width: 64px !important;
	height: 64px !important;
	margin: 0 !important;
	overflow: hidden;
	border-radius: 12px;
	background: var(--hb-surface-soft);
}

.latest-activity .activity-item .image img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.latest-activity .activity-item .text {
	float: none !important;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
}

.latest-activity .activity-item h3 {
	margin: 0 0 5px !important;
	font-size: 13px !important;
	font-weight: 740 !important;
	line-height: 1.38 !important;
}

.latest-activity .activity-item h3 a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--hb-ink) !important;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.latest-activity .activity-item p {
	margin: 0 !important;
	color: var(--hb-ink-soft) !important;
	font-size: 11px !important;
	line-height: 1.4 !important;
}

#panel-terhangat .activity-item {
	display: block !important;
	margin: 8px 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

#panel-terhangat .topic-item .text {
	display: block !important;
}

#panel-terhangat .topic-item h3 {
	margin: 0 !important;
}

#panel-terhangat .topic-item h3 a {
	display: block;
	overflow: visible;
	padding: 10px 12px;
	border: 1px solid var(--hb-line);
	border-radius: 11px;
	background: var(--hb-surface-soft);
	color: var(--hb-green-800) !important;
	-webkit-line-clamp: unset;
}

.events .item {
	margin: 0 0 9px !important;
	padding: 13px 14px !important;
	border: 1px solid var(--hb-line) !important;
	border-radius: 13px;
	background: var(--hb-surface-soft);
	transition: background var(--hb-transition), border-color var(--hb-transition), transform var(--hb-transition);
}

.events .item:hover {
	border-color: rgba(15, 107, 79, 0.23) !important;
	background: var(--hb-green-50);
	transform: translateX(3px);
}

.events .item .event-date {
	display: block;
	margin: 0 0 5px !important;
	color: #934331 !important;
	font-size: 10px !important;
	font-weight: 820 !important;
	letter-spacing: 0.07em !important;
	text-transform: uppercase;
}

.events .item h3 {
	margin: 0 !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

.events .item h3 a {
	color: var(--hb-ink) !important;
	text-decoration: none;
}

.poll-form fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.poll-form legend {
	margin: 0 0 12px;
	color: var(--hb-ink);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.5;
}

.poll-option {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 0 0 7px;
	padding: 9px 10px;
	border: 1px solid var(--hb-line);
	border-radius: 10px;
	background: var(--hb-surface-soft);
	color: var(--hb-ink-soft);
	font-size: 12px;
	line-height: 1.45;
	cursor: pointer;
}

.poll-option input {
	width: 16px;
	height: 16px;
	margin: 2px 0 0;
	accent-color: var(--hb-green-700);
}

.poll-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 13px;
}

.button-secondary,
.widget .button-secondary {
	border-color: var(--hb-line) !important;
	background: #fff !important;
	box-shadow: none !important;
	color: var(--hb-green-800) !important;
}

.button-secondary:hover,
.widget .button-secondary:hover {
	background: var(--hb-green-50) !important;
	color: var(--hb-green-900) !important;
}

.empty-state {
	margin: 0 !important;
	padding: 13px;
	border-radius: 12px;
	background: var(--hb-surface-soft);
	color: var(--hb-ink-soft);
	font-size: 13px;
}

.banner p {
	margin: 0 0 12px !important;
	text-align: center;
}

.banner p:last-child {
	margin-bottom: 0 !important;
}

.banner img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 13px;
	box-shadow: var(--hb-shadow-sm);
}

/* Inner pages */
.post,
.add-comment,
.container-fluid {
	min-width: 0;
	margin: 0 0 28px !important;
	padding: 30px !important;
	border: 1px solid var(--hb-line);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--hb-shadow-sm);
}

.post .add-comment,
.post .container-fluid {
	margin-bottom: 24px !important;
	padding: 0 !important;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.post > h1,
.post > h2 {
	margin: 0 0 16px !important;
	color: var(--hb-ink) !important;
	font-size: clamp(28px, 4vw, 43px) !important;
	font-weight: 830 !important;
	line-height: 1.16 !important;
}

.post .date {
	margin: 0 0 22px !important;
	padding: 10px 12px !important;
	border: 1px solid var(--hb-line) !important;
	border-radius: 12px;
	background: var(--hb-surface-soft) !important;
	color: var(--hb-ink-soft);
}

.post .date p,
.post .date a {
	color: var(--hb-ink-soft) !important;
	font-size: 12px !important;
}

.post p,
.post li {
	color: #334e5e;
	font-size: 16px !important;
	line-height: 1.82 !important;
}

.post-body {
	max-width: 72ch;
	color: #334e5e;
	font-size: 16px;
	line-height: 1.82;
}

.post-body > :first-child {
	margin-top: 0 !important;
}

.post-body > :last-child {
	margin-bottom: 0 !important;
}

.post p,
.post ul,
.post ol,
.post blockquote {
	max-width: 72ch;
}

.post ul,
.post ol {
	margin: 16px 0 !important;
	padding-left: 1.45rem !important;
}

.post ul {
	list-style: disc outside !important;
}

.post ol {
	list-style: decimal outside !important;
}

.post ul > li,
.post ol > li {
	padding-left: 2px !important;
	background: none !important;
	font-weight: 400 !important;
}

.post ul > li {
	list-style: disc outside !important;
}

.post ol > li {
	list-style: decimal outside !important;
}

.post li + li {
	margin-top: 7px;
}

.post .caps a,
.post .post-body a,
.post > p a,
.post > ul a,
.post > ol a {
	color: var(--hb-green-800) !important;
	font-weight: 650;
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}

.post .post-image-1,
.post .post-image-2,
.post > p > img {
	display: block;
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
	margin: 24px auto !important;
	border-radius: 17px;
	box-shadow: var(--hb-shadow-md);
}

.post iframe {
	display: block;
	width: 100% !important;
	height: auto !important;
	min-height: 360px;
	margin: 24px 0;
	border: 0;
	border-radius: 17px;
	background: #0b171f;
	box-shadow: var(--hb-shadow-md);
}

.post blockquote {
	margin: 24px 0 !important;
	padding: 22px 24px !important;
	border: 0 !important;
	border-left: 5px solid var(--hb-yellow) !important;
	border-radius: 0 15px 15px 0;
	background: #fff9e9 !important;
	color: var(--hb-ink) !important;
}

.add-comment h3,
.container-fluid h3 {
	margin-top: 0 !important;
}

.add-comment label {
	display: block;
	position: static !important;
	left: auto !important;
	margin-bottom: 6px;
	color: var(--hb-ink);
	font-size: 13px;
	font-weight: 700;
}

.add-comment p {
	display: grid;
	position: static !important;
	gap: 7px;
	width: 100%;
	max-width: none;
	margin: 0 0 18px !important;
}

.add-comment p input,
.add-comment p textarea,
.add-comment p > .button {
	margin-left: 0 !important;
}

.add-comment textarea {
	min-height: 150px;
	resize: vertical;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
	margin: 30px 0 !important;
}

.pagination a,
.pagination .page-numbers,
.pagination .page-numbers.current {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	margin: 0 !important;
	padding: 7px 11px !important;
	border: 1px solid var(--hb-line) !important;
	border-radius: 11px !important;
	background: #fff !important;
	color: var(--hb-ink) !important;
	font-weight: 700;
	text-decoration: none;
}

.pagination .page-numbers.current,
.pagination a:hover {
	border-color: var(--hb-green-800) !important;
	background: var(--hb-green-800) !important;
	color: #fff !important;
}

.back-top a {
	color: var(--hb-green-800) !important;
	font-weight: 750;
}

/* Footer */
.footer {
	position: relative;
	padding: 64px 0 !important;
	overflow: hidden;
	border-radius: 40px 40px 0 0;
	background:
		radial-gradient(circle at 13% 18%, rgba(72, 177, 132, 0.22), transparent 25rem),
		radial-gradient(circle at 89% 77%, rgba(244, 183, 64, 0.13), transparent 24rem),
		linear-gradient(135deg, #0d4d3d 0%, #092f2d 56%, #102c39 100%) !important;
	color: #e9f4ee !important;
}

.footer::before {
	position: absolute;
	top: -140px;
	right: 8%;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	content: "";
}

.footer-grid {
	display: grid;
	grid-template-columns: 0.92fr 1.25fr 0.83fr;
	align-items: start;
	gap: 28px;
}

.footer-about,
.footer-feature {
	min-width: 0;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: #fff !important;
	font-size: 22px;
	font-weight: 850;
	letter-spacing: -0.035em;
	text-decoration: none;
}

.footer-brand img {
	width: 52px !important;
	height: 52px !important;
	object-fit: contain;
	filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.2));
}

.footer-about p {
	max-width: 32ch;
	margin: 0 0 22px !important;
	color: rgba(233, 244, 238, 0.76) !important;
	font-size: 14px;
	line-height: 1.75;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.footer-links a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 41px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff !important;
	font-size: 12px;
	font-weight: 720;
	text-decoration: none;
	transition: transform var(--hb-transition), background var(--hb-transition);
}

.footer-links a:hover {
	background: rgba(255, 255, 255, 0.13);
	transform: translateY(-2px);
}

.footer-feature {
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.065);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(12px);
}

.footer-kicker {
	display: block;
	margin-bottom: 5px;
	color: #9ed4ba;
	font-size: 10px;
	font-weight: 820;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-feature h2 {
	margin: 0 0 15px !important;
	color: #fff !important;
	font-size: 18px !important;
	font-weight: 780 !important;
	line-height: 1.3 !important;
}

.video-frame {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	background: #071c21;
	aspect-ratio: 16 / 9;
}

.video-frame iframe {
	display: block;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}

.footer-short .short-card {
	display: block;
	color: #fff !important;
	text-decoration: none;
}

.footer-short .short-thumbnail {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	aspect-ratio: 16 / 10;
}

.footer-short .short-thumbnail img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.footer-short .short-card:hover img {
	transform: scale(1.06);
}

.short-play {
	display: grid;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 50%;
	background: rgba(8, 76, 59, 0.82);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
	font-size: 15px;
	transform: translate(-50%, -50%);
	transition: transform var(--hb-transition), background var(--hb-transition);
	backdrop-filter: blur(10px);
}

.short-card:hover .short-play {
	background: var(--hb-coral);
	transform: translate(-50%, -50%) scale(1.08);
}

.short-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding-top: 12px;
	color: rgba(255, 255, 255, 0.83);
	font-size: 12px;
	font-weight: 720;
}

.footer-desc {
	height: auto !important;
	min-height: 0 !important;
	padding: 16px 0 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
	background: #082b2a !important;
}

.footer-desc .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: calc(100% - 48px) !important;
	max-width: 1180px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	text-align: left !important;
}

.footer-desc p {
	margin: 0 !important;
	color: rgba(233, 244, 238, 0.68) !important;
	font-size: 12px;
}

.back-to-top {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	opacity: 0.55;
	transition: opacity var(--hb-transition), transform var(--hb-transition), background var(--hb-transition);
}

.back-to-top.is-visible,
.back-to-top:hover {
	opacity: 1;
}

.back-to-top:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-2px);
}

/* Progressive motion enhancement */
.js .reveal-item {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Tablet */
@media (max-width: 1080px) {
	.header-kicker {
		display: none !important;
	}

	.hero-card,
	.hero-copy {
		min-height: 475px;
	}

	.hero-copy {
		width: 64%;
		padding: 48px;
	}

	.split-content {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 46px !important;
	}

	.split-content > .content-white {
		height: auto !important;
	}

	.content-white.small.right {
		position: static;
		width: 100% !important;
		max-width: 760px;
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.content-white.small.right > .main-content {
		display: block;
		padding: 28px !important;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-about {
		grid-column: 1 / -1;
	}
}

/* Collapsible navigation for tablets and touch-first devices. */
@media (max-width: 1080px), (hover: none) and (pointer: coarse) {
	.main-menu-custom .wrapper {
		display: block;
		min-height: 0;
		padding: 10px 0 !important;
	}

	.js .menu-toggle {
		display: flex !important;
		width: 100%;
	}

	.main-menu-custom .wrapper > ul {
		display: flex !important;
		width: 100% !important;
		margin-top: 9px !important;
		padding: 7px !important;
		flex-direction: column;
		align-items: stretch;
		border: 1px solid var(--hb-line);
		border-radius: 16px;
		background: #fff !important;
		box-shadow: var(--hb-shadow-sm);
	}

	.js .main-menu-custom .wrapper > ul {
		display: none !important;
	}

	.js .main-menu-custom.is-open .wrapper > ul,
	.js .main-menu-custom.m-active .wrapper > ul {
		display: flex !important;
	}

	.main-menu-custom .wrapper > ul > li {
		width: 100% !important;
		margin: 0 !important;
	}

	.main-menu-custom .wrapper > ul > li > a {
		justify-content: space-between;
		width: 100%;
		min-height: 44px;
		padding: 10px 12px !important;
		border-bottom: 0 !important;
		text-align: left;
	}

	.main-menu-custom .wrapper ul ul {
		display: block !important;
		position: static !important;
		width: 100% !important;
		margin: 0 0 5px !important;
		padding: 0 0 0 11px !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.main-menu-custom .wrapper ul ul li a {
		padding: 9px 12px !important;
		border-left: 2px solid var(--hb-green-100) !important;
		border-radius: 0 9px 9px 0;
		color: var(--hb-ink-soft) !important;
		text-align: left !important;
	}

	.nav-chevron {
		display: none;
	}
}

/* Navigation and compact layouts */
@media (max-width: 820px) {
	.wrapper,
	.active.boxed .wrapper,
	.slider-content .wrapper,
	.footer-desc .wrapper {
		width: calc(100% - 32px) !important;
	}

	.header {
		padding: 12px 0 !important;
	}

	.header-meta {
		gap: 0;
	}

	.header .tanggal {
		padding: 8px 10px !important;
		font-size: 11px !important;
	}

	.main-menu-custom .wrapper {
		display: block;
		min-height: 0;
		padding: 10px 0 !important;
	}

	.js .menu-toggle {
		display: flex !important;
		width: 100%;
	}

	.main-menu-custom .wrapper > ul {
		display: flex !important;
		width: 100% !important;
		margin-top: 9px !important;
		padding: 7px !important;
		flex-direction: column;
		align-items: stretch;
		border: 1px solid var(--hb-line);
		border-radius: 16px;
		background: #fff !important;
		box-shadow: var(--hb-shadow-sm);
	}

	.js .main-menu-custom .wrapper > ul {
		display: none !important;
	}

	.js .main-menu-custom.is-open .wrapper > ul,
	.js .main-menu-custom.m-active .wrapper > ul {
		display: flex !important;
	}

	.main-menu-custom .wrapper > ul > li {
		width: 100% !important;
		margin: 0 !important;
	}

	.main-menu-custom .wrapper > ul > li > a {
		justify-content: space-between;
		width: 100%;
		min-height: 44px;
		padding: 10px 12px !important;
		border-bottom: 0 !important;
		text-align: left;
	}

	.main-menu-custom .wrapper ul ul {
		display: block !important;
		position: static !important;
		width: 100% !important;
		margin: 0 0 5px !important;
		padding: 0 0 0 11px !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.main-menu-custom .wrapper ul ul li a {
		padding: 9px 12px !important;
		border-left: 2px solid var(--hb-green-100) !important;
		border-radius: 0 9px 9px 0;
		color: var(--hb-ink-soft) !important;
		text-align: left !important;
	}

	.nav-chevron {
		display: none;
	}

	.slider-content {
		padding-top: 3px !important;
	}

	.hero-card,
	.hero-copy,
	.inner-page .hero-card,
	.inner-page .hero-copy {
		min-height: 500px;
	}

	.slider-content .hero-media {
		object-position: 66% center;
		opacity: 0.65;
	}

	.hero-shade {
		background: linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.93) 64%, rgba(255, 253, 247, 0.38) 100%);
	}

	.hero-copy {
		width: 78%;
		padding: 40px;
	}

	.hero-copy h1,
	.hero-copy .hero-title {
		font-size: clamp(40px, 8vw, 58px) !important;
	}

	.content {
		padding: 46px 0 68px !important;
	}

	.active.boxed .content {
		padding: 46px 0 68px !important;
	}

	.content-white.small.right > .main-content {
		display: block;
	}

	.blog-list-1 .item {
		grid-template-columns: 78px 155px minmax(0, 1fr);
		gap: 16px !important;
	}

	.blog-list-1 .item .image {
		width: 155px !important;
		height: 142px !important;
	}

	.footer {
		padding: 52px 0 !important;
		border-radius: 28px 28px 0 0;
	}

	.footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.footer-about {
		grid-column: auto;
	}
}

/* Phone */
@media (max-width: 640px) {
	body {
		font-size: 15px !important;
	}

	.wrapper,
	.active.boxed .wrapper,
	.slider-content .wrapper,
	.footer-desc .wrapper {
		width: calc(100% - 24px) !important;
	}

	.site-brand-mark {
		flex-basis: 50px;
		width: 50px;
		height: 50px;
		border-radius: 15px;
	}

	.header .site-brand-mark img {
		width: 45px !important;
		height: 45px !important;
	}

	.site-brand-copy strong {
		font-size: 19px;
	}

	.site-brand-copy small {
		display: none;
	}

	.header .header-logo {
		justify-content: center !important;
	}

	.header-meta {
		display: none;
	}

	.hero-card,
	.hero-copy {
		min-height: 520px;
	}

	.inner-page .hero-card,
	.inner-page .hero-copy {
		min-height: 360px;
	}

	.inner-page .hero-copy {
		justify-content: center;
	}

	.inner-page .hero-actions {
		display: none;
	}

	.hero-card {
		width: calc(100vw - 24px) !important;
		max-width: calc(100vw - 24px) !important;
		border-radius: 23px;
	}

	.slider-content .wrapper {
		width: auto !important;
		max-width: none !important;
		margin-right: 12px !important;
		margin-left: 12px !important;
	}

	.slider-content .hero-media {
		object-position: 70% center;
		opacity: 0.44;
	}

	.hero-shade {
		background: linear-gradient(180deg, rgba(255, 253, 247, 0.97), rgba(255, 253, 247, 0.84));
	}

	.hero-copy {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		padding: 31px 24px;
		align-items: stretch !important;
		justify-content: flex-end;
	}

	.hero-copy h1,
	.hero-copy .hero-title {
		width: calc(100vw - 72px) !important;
		max-width: calc(100vw - 72px) !important;
		min-width: 0 !important;
		align-self: stretch !important;
		font-size: clamp(33px, 9.3vw, 42px) !important;
		line-height: 1.04 !important;
		white-space: normal !important;
		overflow-wrap: break-word;
	}

	.hero-copy p {
		width: calc(100vw - 72px) !important;
		max-width: calc(100vw - 72px) !important;
		min-width: 0 !important;
		align-self: stretch !important;
		font-size: 15px;
		line-height: 1.62;
		white-space: normal !important;
	}

	.hero-copy-segment {
		display: block;
	}

	.hero-actions {
		width: calc(100vw - 72px) !important;
		max-width: calc(100vw - 72px) !important;
		min-width: 0 !important;
		align-self: stretch !important;
	}

	.hero-button {
		width: 100% !important;
		max-width: 100% !important;
	}

	.hero-spark-one {
		right: 12%;
	}

	.main-head {
		align-items: flex-start;
	}

	.main-head > a.right {
		display: inline-flex !important;
		min-height: 34px;
		padding: 6px 10px;
		font-size: 11px;
	}

	.main-title h1,
	.main-title h2 {
		font-size: 27px !important;
	}

	.blog-list-1 .item {
		display: grid !important;
		grid-template-columns: 1fr;
		gap: 15px !important;
		padding: 15px !important;
	}

	.blog-list-1 .item .image {
		grid-row: 1;
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 16 / 9;
	}

	.blog-list-1 .item .date {
		grid-row: 2;
		display: grid !important;
		grid-template-columns: auto auto auto 1fr;
		align-items: center !important;
		gap: 5px 7px;
		width: 100% !important;
		padding: 0 0 13px !important;
		border-right: 0 !important;
		border-bottom: 1px solid var(--hb-line) !important;
	}

	.blog-list-1 .item .date .day {
		grid-row: 1 / 3;
		font-size: 31px !important;
	}

	.blog-list-1 .item .date .comments {
		grid-column: 4;
		grid-row: 1;
		justify-self: end;
		margin: 0 !important;
	}

	.blog-list-1 .item .date .section,
	.blog-list-1 .item .date .author {
		display: none !important;
	}

	.blog-list-1 .item .text {
		grid-row: 3;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		align-items: stretch !important;
	}

	.blog-list-1 .item .text h3 {
		width: 100% !important;
		max-width: 100% !important;
		font-size: 18px !important;
		white-space: normal !important;
		overflow-wrap: anywhere;
	}

	.blog-list-1 .item .text p {
		width: 100% !important;
		max-width: 100% !important;
		white-space: normal !important;
		overflow-wrap: anywhere;
	}

	.menu-display-1 {
		grid-template-columns: 1fr;
	}

	.menu-display-1 .item {
		padding: 10px !important;
	}

	.content-white.small.right {
		border-radius: 20px !important;
	}

	.content-white.small.right > .main-content {
		padding: 20px !important;
	}

	.searchform p {
		grid-template-columns: 1fr;
	}

	.searchform .button {
		width: 100%;
	}

	.post,
	.add-comment,
	.container-fluid {
		padding: 21px !important;
		border-radius: 18px;
	}

	.post > h1,
	.post > h2 {
		font-size: 29px !important;
	}

	.post iframe {
		min-height: 210px;
	}

	.footer-desc .wrapper {
		align-items: flex-start;
	}

	.footer-desc p {
		max-width: 240px;
		line-height: 1.55;
	}
}

@media (max-width: 380px) {
	.header .tanggal {
		display: none !important;
	}

	.hero-copy {
		padding: 28px 20px;
	}

	.tabs .tab-navi {
		grid-template-columns: 1fr;
	}
}

@media (hover: none) {
	.hero-card:hover .hero-media,
	.blog-list-1 .item:hover,
	.menu-display-1 .item:hover,
	.more-link:hover,
	.button:hover {
		transform: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.js .reveal-item {
		opacity: 1;
		transform: none;
	}
}
