/*
Theme Name: Sangu Ilmu
Theme URI: https://sanguilmu.com
Author: Thoha Firdaus
Author URI: https://thoha.my.id/
Description: Tema portal dan blog modern untuk Sangu Ilmu. Dibuat agar tetap ringan, profesional, dan mempertahankan palet warna lama.
Version: 1.1.5
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: sanguilmu-fresh
*/

:root {
	--si-ink: #1f2937;
	--si-muted: #5b6878;
	--si-line: rgba(47, 68, 104, 0.14);
	--si-paper: #ffffff;
	--si-bg: #fafafa;
	--si-soft: #e8f4fc;
	--si-soft-2: #eef8fd;
	--si-primary: #05647c;
	--si-primary-2: #0085a6;
	--si-accent: #54aec3;
	--si-navy: #2f4468;
	--si-radius: 20px;
	--si-shadow: 0 24px 70px -42px rgba(47, 68, 104, 0.55);
	--si-font: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

html.si-modal-active {
	overflow: hidden;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 7% 0%, rgba(232, 244, 252, 0.92), transparent 34rem),
		linear-gradient(180deg, #ffffff 0%, var(--si-bg) 36rem);
	color: var(--si-ink);
	font-family: var(--si-font);
	font-size: 17px;
	line-height: 1.68;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 1000;
	background-image: linear-gradient(rgba(31, 41, 55, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 41, 55, 0.025) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent 60%);
}

a {
	color: var(--si-primary-2);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--si-primary);
}

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

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

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

.si-site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(250, 250, 250, 0.84);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(47, 68, 104, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.si-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 82px;
}

.si-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--si-navy);
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 0;
}

.si-brand img {
	width: auto;
	max-width: 230px;
	max-height: 54px;
}

.si-brand-mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 15px;
	background: var(--si-soft);
	color: var(--si-primary);
	border: 1px solid rgba(84, 174, 195, 0.35);
	font-weight: 900;
}

.si-nav {
	justify-self: end;
}

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

.si-menu {
	display: flex;
	align-items: center;
	gap: 6px;
}

.si-menu li {
	position: relative;
}

.si-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 13px;
	border-radius: 999px;
	color: var(--si-navy);
	font-size: 0.94rem;
	font-weight: 650;
	text-decoration: none;
	transition: color 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-menu a:hover,
.si-menu .current-menu-item > a,
.si-menu .current-menu-ancestor > a {
	background: var(--si-soft);
	color: var(--si-primary);
	transform: translateY(-1px);
}

.si-menu .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	min-width: 238px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--si-line);
	border-radius: 18px;
	box-shadow: var(--si-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.si-menu .sub-menu a {
	width: 100%;
	justify-content: flex-start;
	border-radius: 12px;
}

.si-search-link,
.si-menu-toggle,
.si-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(5, 100, 124, 0.16);
	background: var(--si-primary);
	color: #ffffff;
	font-weight: 750;
	text-decoration: none;
	box-shadow: 0 12px 30px -20px rgba(5, 100, 124, 0.75);
	cursor: pointer;
	transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-search-link:hover,
.si-button:hover {
	background: var(--si-navy);
	color: #ffffff;
	transform: translateY(-2px);
}

.si-search-link:active,
.si-menu-toggle:active,
.si-button:active {
	transform: translateY(1px) scale(0.99);
}

.si-menu-toggle {
	display: none;
	width: 46px;
	padding: 0;
	background: var(--si-soft);
	color: var(--si-primary);
}

.si-menu-toggle svg,
.si-search-link svg,
.si-button svg,
.si-card-icon svg {
	width: 20px;
	height: 20px;
}

.si-search-modal {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: grid;
	place-items: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 240ms cubic-bezier(0.16, 1, 0.3, 1), visibility 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-search-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.si-search-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(31, 41, 55, 0.32);
	backdrop-filter: blur(16px);
}

.si-search-dialog {
	position: relative;
	width: min(100%, 660px);
	padding: clamp(26px, 5vw, 42px);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 30px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 252, 0.9)),
		#ffffff;
	box-shadow: 0 34px 90px -48px rgba(31, 41, 55, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.92);
	transform: translateY(14px) scale(0.98);
	transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-search-modal.is-open .si-search-dialog {
	transform: translateY(0) scale(1);
}

.si-search-dialog h2 {
	margin: 0;
	color: var(--si-navy);
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1;
	letter-spacing: 0;
}

.si-search-dialog p {
	max-width: 520px;
	margin: 16px 0 0;
	color: var(--si-muted);
}

.si-search-close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(47, 68, 104, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--si-navy);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-search-close:hover {
	background: var(--si-primary);
	color: #ffffff;
	transform: rotate(6deg) scale(1.03);
}

.si-modal-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	margin-top: 28px;
}

.si-modal-search-field {
	width: 100%;
	min-height: 58px;
	padding: 15px 18px;
	border: 1px solid rgba(5, 100, 124, 0.2);
	border-radius: 18px;
	background: #ffffff;
	color: var(--si-ink);
	font-size: 1.08rem;
	box-shadow: inset 0 1px 0 rgba(47, 68, 104, 0.04);
}

.si-modal-search-field:focus {
	outline: 3px solid rgba(84, 174, 195, 0.24);
	border-color: var(--si-accent);
}

.si-main {
	min-height: 58dvh;
}

.si-hero {
	position: relative;
	overflow: hidden;
	padding: 90px 0 72px;
}

.si-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
	align-items: center;
	gap: clamp(36px, 7vw, 96px);
}

.si-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
	color: var(--si-primary);
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.si-kicker::before {
	content: "";
	width: 38px;
	height: 2px;
	background: var(--si-accent);
}

.si-hero h1,
.si-page-title {
	max-width: 780px;
	margin: 0;
	color: var(--si-navy);
	font-size: clamp(2.55rem, 7vw, 5.7rem);
	line-height: 0.96;
	letter-spacing: 0;
	font-weight: 850;
}

.si-hero h1 span,
.si-page-title span {
	color: var(--si-primary-2);
}

.si-lead {
	max-width: 670px;
	margin: 24px 0 0;
	color: var(--si-muted);
	font-size: clamp(1.05rem, 1.6vw, 1.24rem);
	line-height: 1.76;
}

.si-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 34px;
}

.si-button-secondary {
	background: #ffffff;
	color: var(--si-navy);
	border-color: var(--si-line);
	box-shadow: none;
}

.si-button-secondary:hover {
	background: var(--si-soft);
	color: var(--si-primary);
}

.si-hero-panel {
	position: relative;
	display: grid;
	gap: 16px;
	padding: 18px;
	border-radius: 30px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(232, 244, 252, 0.92));
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: var(--si-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.si-hero-logo {
	display: grid;
	place-items: center;
	min-height: 280px;
	padding: 36px;
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(5, 100, 124, 0.08), transparent),
		#ffffff;
	border: 1px solid rgba(47, 68, 104, 0.1);
}

.si-hero-logo img {
	width: min(100%, 320px);
	filter: drop-shadow(0 18px 32px rgba(47, 68, 104, 0.18));
}

.si-mini-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.si-mini-stat {
	padding: 16px;
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.78);
}

.si-mini-stat strong {
	display: block;
	color: var(--si-navy);
	font-size: 1.35rem;
	line-height: 1;
}

.si-mini-stat span {
	display: block;
	margin-top: 6px;
	color: var(--si-muted);
	font-size: 0.84rem;
	line-height: 1.35;
}

.si-section {
	padding: 74px 0;
}

.si-section-head {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.42fr);
	gap: 34px;
	align-items: end;
	margin-bottom: 34px;
}

.si-section h2 {
	margin: 0;
	color: var(--si-navy);
	font-size: clamp(2rem, 4vw, 3.55rem);
	line-height: 1;
	letter-spacing: 0;
}

.si-section-head p {
	margin: 0;
	color: var(--si-muted);
}

.si-section-action {
	display: grid;
	justify-items: start;
	gap: 18px;
}

.si-portal-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.si-portal-group {
	display: grid;
	gap: 22px;
	align-content: start;
	padding: clamp(20px, 3vw, 30px);
	border-radius: 30px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(232, 244, 252, 0.74)),
		#ffffff;
	border: 1px solid rgba(47, 68, 104, 0.1);
	box-shadow: 0 30px 80px -62px rgba(47, 68, 104, 0.78), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.si-portal-group:nth-child(even) {
	margin-top: 0;
}

.si-group-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	color: var(--si-navy);
	font-size: 0.86rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.si-group-title::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--si-line);
}

.si-card-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.si-portal-card {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 16px;
	align-items: center;
	min-height: 136px;
	padding: 22px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(47, 68, 104, 0.1);
	color: var(--si-ink);
	text-decoration: none;
	overflow: hidden;
	transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-card-list .si-portal-card:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.si-portal-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(84, 174, 195, 0.14), transparent 45%);
	opacity: 0;
	transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-portal-card:hover {
	color: var(--si-ink);
	border-color: rgba(0, 133, 166, 0.32);
	box-shadow: 0 24px 54px -38px rgba(5, 100, 124, 0.72);
	transform: translateY(-3px);
}

.si-portal-card:hover::before {
	opacity: 1;
}

.si-card-icon,
.si-card-arrow {
	position: relative;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: var(--si-soft);
	color: var(--si-primary);
}

.si-card-arrow {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: rgba(47, 68, 104, 0.06);
	color: var(--si-navy);
	transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-portal-card:hover .si-card-arrow {
	background: var(--si-primary);
	color: #ffffff;
	transform: translateX(4px);
}

.si-card-copy {
	position: relative;
}

.si-card-copy strong {
	display: block;
	color: var(--si-navy);
	font-size: 1.15rem;
	line-height: 1.2;
}

.si-card-copy span {
	display: block;
	margin-top: 6px;
	color: var(--si-muted);
	font-size: 0.94rem;
	line-height: 1.48;
}

.si-mobile-apps {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 252, 0.5) 46%, rgba(255, 255, 255, 0));
	border-top: 1px solid rgba(47, 68, 104, 0.07);
}

.si-mobile-feature {
	display: grid;
	grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(28px, 6vw, 74px);
	align-items: center;
	padding: clamp(22px, 4vw, 38px);
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 34px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 244, 252, 0.78)),
		#ffffff;
	box-shadow: 0 34px 86px -68px rgba(47, 68, 104, 0.82), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.si-phone-showcase {
	position: relative;
	min-height: 480px;
	border-radius: 30px;
	background:
		radial-gradient(circle at 42% 22%, rgba(84, 174, 195, 0.26), transparent 16rem),
		linear-gradient(145deg, rgba(5, 100, 124, 0.1), rgba(255, 255, 255, 0.72));
	overflow: hidden;
}

.si-phone-shot {
	position: absolute;
	width: min(48%, 250px);
	max-height: 92%;
	object-fit: contain;
	filter: drop-shadow(0 24px 34px rgba(47, 68, 104, 0.22));
}

.si-phone-shot-primary {
	left: 18%;
	bottom: -8%;
	transform: rotate(-6deg);
}

.si-phone-shot-secondary {
	right: 12%;
	top: 7%;
	transform: rotate(7deg);
}

.si-mobile-copy h3 {
	max-width: 680px;
	margin: 0;
	color: var(--si-navy);
	font-size: clamp(2.25rem, 5vw, 4.2rem);
	line-height: 0.98;
	letter-spacing: 0;
}

.si-mobile-copy p {
	max-width: 610px;
	margin: 22px 0 30px;
	color: var(--si-muted);
	font-size: 1.08rem;
	line-height: 1.76;
}

.si-app-strip {
	margin-top: 20px;
	padding: clamp(20px, 3vw, 28px);
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.si-app-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.si-app-card {
	display: grid;
	grid-template-columns: 76px 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 14px;
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 22px;
	background: #ffffff;
	color: var(--si-ink);
	text-decoration: none;
	transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-app-card:hover {
	color: var(--si-ink);
	border-color: rgba(0, 133, 166, 0.28);
	box-shadow: 0 20px 46px -36px rgba(5, 100, 124, 0.72);
	transform: translateY(-2px);
}

.si-app-card img,
.si-app-placeholder {
	width: 76px;
	height: 76px;
	border-radius: 20px;
	background: var(--si-soft);
}

.si-app-card img {
	object-fit: cover;
}

.si-app-placeholder {
	display: grid;
	place-items: center;
	color: var(--si-primary);
}

.si-app-placeholder svg {
	width: 28px;
	height: 28px;
}

.si-app-card strong,
.si-app-card small {
	display: block;
}

.si-app-card strong {
	color: var(--si-navy);
	font-size: 1.08rem;
	line-height: 1.2;
}

.si-app-card small {
	margin-top: 6px;
	color: var(--si-muted);
	font-size: 0.9rem;
}

.si-app-card svg {
	width: 22px;
	height: 22px;
	color: var(--si-primary);
}

.si-post-band {
	background: linear-gradient(180deg, rgba(232, 244, 252, 0.38), rgba(255, 255, 255, 0));
	border-top: 1px solid rgba(47, 68, 104, 0.08);
}

.si-latest-list {
	display: grid;
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.8);
	overflow: hidden;
	box-shadow: 0 28px 76px -62px rgba(47, 68, 104, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.si-latest-item {
	display: grid;
	grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	padding: 22px clamp(18px, 3vw, 28px);
	color: var(--si-ink);
	text-decoration: none;
	border-bottom: 1px solid rgba(47, 68, 104, 0.08);
	transition: background 240ms cubic-bezier(0.16, 1, 0.3, 1), transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-latest-item:last-child {
	border-bottom: 0;
}

.si-latest-item:hover {
	background: rgba(232, 244, 252, 0.56);
	color: var(--si-ink);
	transform: translateX(3px);
}

.si-latest-meta {
	display: grid;
	gap: 5px;
	color: var(--si-muted);
	font-size: 0.83rem;
	font-weight: 750;
	line-height: 1.35;
}

.si-latest-meta time {
	color: var(--si-primary);
}

.si-latest-item strong {
	color: var(--si-navy);
	font-size: clamp(1.05rem, 2vw, 1.34rem);
	line-height: 1.22;
}

.si-latest-arrow {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: var(--si-soft);
	color: var(--si-primary);
	transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1), color 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-latest-arrow svg {
	width: 20px;
	height: 20px;
}

.si-latest-item:hover .si-latest-arrow {
	background: var(--si-primary);
	color: #ffffff;
	transform: translateX(4px);
}

.si-post-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
}

.si-post-card {
	grid-column: span 4;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 22px;
	background: #ffffff;
	text-decoration: none;
	color: var(--si-ink);
	box-shadow: 0 22px 58px -48px rgba(47, 68, 104, 0.72);
	transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-post-card:first-child {
	grid-column: span 6;
}

.si-post-card:nth-child(2) {
	grid-column: span 6;
}

.si-post-card:hover {
	color: var(--si-ink);
	border-color: rgba(0, 133, 166, 0.3);
	transform: translateY(-3px);
}

.si-post-thumb {
	aspect-ratio: 16 / 9;
	background: var(--si-soft);
	overflow: hidden;
}

.si-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-post-card:hover .si-post-thumb img {
	transform: scale(1.035);
}

.si-post-body {
	display: grid;
	gap: 10px;
	padding: 21px;
}

.si-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	color: #697789;
	font-size: 0.84rem;
	font-weight: 650;
}

.si-post-body h3,
.si-entry-title {
	margin: 0;
	color: var(--si-navy);
	font-size: clamp(1.25rem, 2vw, 1.58rem);
	line-height: 1.18;
	letter-spacing: 0;
}

.si-post-body p,
.si-excerpt {
	margin: 0;
	color: var(--si-muted);
	font-size: 0.96rem;
	line-height: 1.62;
}

.si-page-hero {
	padding: 66px 0 42px;
}

.si-breadcrumbs {
	margin-bottom: 24px;
	color: var(--si-muted);
	font-size: 0.88rem;
	font-weight: 700;
}

.si-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.si-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
}

.si-breadcrumbs li + li::before {
	content: "/";
	color: rgba(47, 68, 104, 0.35);
}

.si-breadcrumbs a {
	color: var(--si-primary);
	text-decoration: none;
}

.si-breadcrumbs span {
	display: inline-block;
	max-width: min(52vw, 520px);
	overflow: hidden;
	color: var(--si-muted);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.si-meta-categories {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.si-meta-categories a {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 10px;
	border: 1px solid rgba(0, 133, 166, 0.18);
	border-radius: 999px;
	background: rgba(232, 244, 252, 0.72);
	color: var(--si-primary);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: background 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-meta-categories a:hover {
	background: var(--si-primary);
	color: #ffffff;
	transform: translateY(-1px);
}

.si-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 46px;
	align-items: start;
	padding-bottom: 78px;
}

.si-content-layout.si-no-sidebar {
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
}

.si-entry,
.si-sidebar-widget,
.comment-respond,
.si-comments-list {
	background: #ffffff;
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 24px;
	box-shadow: 0 24px 64px -50px rgba(47, 68, 104, 0.65);
}

.si-entry {
	padding: clamp(24px, 5vw, 48px);
}

.si-entry-content {
	color: var(--si-ink);
}

.si-entry-content > *:first-child {
	margin-top: 0;
}

.si-entry-content > *:last-child {
	margin-bottom: 0;
}

.si-entry-content h1,
.si-entry-content h2,
.si-entry-content h3,
.si-entry-content h4 {
	scroll-margin-top: 132px;
	color: var(--si-navy);
	line-height: 1.12;
	letter-spacing: 0;
}

.si-entry-content h1 {
	margin-top: 2.2em;
	margin-bottom: 0.85em;
	font-size: clamp(2.15rem, 4.8vw, 3.35rem);
	font-weight: 850;
}

.si-entry-content h2 {
	margin-top: 1.9em;
	margin-bottom: 0.75em;
	font-size: clamp(1.58rem, 3.1vw, 2.18rem);
	font-weight: 800;
}

.si-entry-content h3 {
	margin-top: 1.8em;
	margin-bottom: 0.7em;
	font-size: clamp(1.28rem, 2.2vw, 1.58rem);
	font-weight: 780;
}

.si-entry-content h4 {
	margin-top: 1.55em;
	margin-bottom: 0.6em;
	font-size: clamp(1.08rem, 1.8vw, 1.24rem);
	font-weight: 760;
}

.si-entry-content p,
.si-entry-content li {
	color: var(--si-ink);
}

.si-entry-content blockquote {
	margin: 30px 0;
	padding: 20px 24px;
	border-left: 4px solid var(--si-accent);
	background: var(--si-soft-2);
	border-radius: 0 18px 18px 0;
	color: var(--si-navy);
}

.si-entry-content figure {
	margin-inline: 0;
}

.si-entry-featured {
	margin: 0 0 34px;
	overflow: hidden;
	border-radius: 22px;
	background: var(--si-soft);
	border: 1px solid rgba(47, 68, 104, 0.1);
	box-shadow: 0 22px 52px -42px rgba(47, 68, 104, 0.72);
}

.si-entry-featured img {
	width: 100%;
	aspect-ratio: 16 / 8.6;
	object-fit: cover;
}

.si-entry-content img {
	border-radius: 16px;
}

.wp-block-code {
	position: relative;
	margin: 28px 0;
	padding: 48px 20px 20px;
	overflow: hidden;
	border: 1px solid rgba(84, 174, 195, 0.28);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36px),
		#112635;
	box-shadow: 0 22px 60px -42px rgba(5, 100, 124, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wp-block-code::before {
	content: "Kode";
	position: absolute;
	top: 13px;
	left: 18px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.wp-block-code::after {
	content: "";
	position: absolute;
	top: 18px;
	right: 18px;
	width: 42px;
	height: 10px;
	border-radius: 999px;
	background:
		radial-gradient(circle at 5px 5px, #54aec3 0 4px, transparent 4.5px),
		radial-gradient(circle at 21px 5px, rgba(232, 244, 252, 0.8) 0 4px, transparent 4.5px),
		radial-gradient(circle at 37px 5px, rgba(255, 255, 255, 0.34) 0 4px, transparent 4.5px);
}

.wp-block-code code {
	display: block;
	min-width: 100%;
	overflow-x: auto;
	color: #d8f2f7;
	font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
	font-size: 0.94rem;
	line-height: 1.78;
	tab-size: 2;
	white-space: pre;
}

.wp-block-verse {
	margin: 28px 0;
	padding: 24px 26px;
	border: 1px solid rgba(84, 174, 195, 0.22);
	border-left: 4px solid var(--si-accent);
	border-radius: 0 22px 22px 0;
	background: linear-gradient(135deg, rgba(232, 244, 252, 0.78), rgba(255, 255, 255, 0.86));
	color: var(--si-ink);
	font-family: var(--si-font);
	font-size: 1rem;
	line-height: 1.72;
	white-space: pre-wrap;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.si-entry-content code:not(pre code) {
	padding: 0.12em 0.36em;
	border-radius: 7px;
	background: rgba(84, 174, 195, 0.14);
	color: var(--si-primary);
	font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
	font-size: 0.9em;
}

.si-entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.si-entry-content th,
.si-entry-content td {
	padding: 12px;
	border: 1px solid var(--si-line);
}

.si-archive-list {
	display: grid;
	gap: 18px;
}

.si-archive-item {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 22px;
	padding: 18px;
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 22px;
	background: #ffffff;
	color: var(--si-ink);
	text-decoration: none;
	transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-archive-item:hover {
	color: var(--si-ink);
	border-color: rgba(0, 133, 166, 0.28);
	transform: translateY(-2px);
}

.si-archive-thumb {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 16px;
	background: var(--si-soft);
}

.si-archive-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.si-sidebar {
	position: sticky;
	top: 108px;
	display: grid;
	gap: 20px;
	align-self: start;
}

.si-post-navigation {
	margin-top: 42px;
	padding-top: 28px;
	border-top: 1px solid var(--si-line);
}

.si-post-nav-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	color: var(--si-primary);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.si-post-nav-header::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--si-line);
}

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

.si-post-nav-card {
	position: relative;
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	gap: 16px;
	align-items: stretch;
	min-height: 136px;
	padding: 12px;
	overflow: hidden;
	border: 1px solid rgba(47, 68, 104, 0.12);
	border-radius: 24px;
	background: linear-gradient(135deg, #ffffff, rgba(232, 244, 252, 0.64));
	color: var(--si-ink);
	text-decoration: none;
	box-shadow: 0 24px 66px -54px rgba(47, 68, 104, 0.8);
	transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-post-nav-card:hover {
	color: var(--si-ink);
	border-color: rgba(0, 133, 166, 0.34);
	box-shadow: 0 28px 72px -48px rgba(5, 100, 124, 0.75);
	transform: translateY(-3px);
}

.si-post-nav-card-next {
	text-align: right;
}

.si-post-nav-thumb,
.si-post-nav-fallback {
	display: grid;
	place-items: center;
	overflow: hidden;
	border-radius: 18px;
	background: var(--si-soft);
	color: var(--si-primary);
}

.si-post-nav-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-post-nav-card:hover .si-post-nav-thumb img {
	transform: scale(1.04);
}

.si-post-nav-fallback svg {
	width: 28px;
	height: 28px;
}

.si-post-nav-card-previous .si-post-nav-fallback svg {
	transform: rotate(180deg);
}

.si-post-nav-copy {
	display: grid;
	align-content: center;
	gap: 9px;
	min-width: 0;
	padding: 4px 6px;
}

.si-post-nav-label {
	color: var(--si-primary);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.si-post-nav-copy strong {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	color: var(--si-navy);
	font-size: 1.02rem;
	line-height: 1.34;
}

.si-sidebar-widget {
	position: relative;
	overflow: hidden;
	padding: 24px;
	border-color: rgba(47, 68, 104, 0.09);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 252, 0.56)),
		#ffffff;
	box-shadow: 0 28px 76px -58px rgba(47, 68, 104, 0.76), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.si-sidebar-widget::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, var(--si-accent), rgba(0, 133, 166, 0.18));
	opacity: 0.9;
}

.comment-respond,
.si-comments-list {
	margin-top: 30px;
	padding: clamp(22px, 4vw, 34px);
	border-color: rgba(47, 68, 104, 0.09);
	background:
		linear-gradient(180deg, rgba(232, 244, 252, 0.46), rgba(255, 255, 255, 0) 42%),
		#ffffff;
	box-shadow: 0 30px 78px -58px rgba(47, 68, 104, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#comments {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 44px 0 18px;
	color: var(--si-navy);
	font-size: clamp(1.45rem, 3vw, 1.95rem);
	line-height: 1.18;
	letter-spacing: 0;
}

#comments::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--si-line);
}

.commentlist {
	display: grid;
	gap: 18px;
	padding: 0;
	margin: 0 0 30px;
	list-style: none;
	counter-reset: comment;
}

.commentlist .comment {
	list-style: none;
}

.commentlist > .comment {
	counter-increment: comment;
}

.comment-body {
	position: relative;
	padding: 24px 24px 22px 82px;
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(232, 244, 252, 0.62), rgba(255, 255, 255, 0.92)),
		#ffffff;
	box-shadow: 0 26px 70px -56px rgba(47, 68, 104, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.commentlist > .comment > .comment-body::before {
	content: counter(comment);
	position: absolute;
	top: 24px;
	left: 24px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background: var(--si-primary);
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 850;
	box-shadow: 0 14px 28px -18px rgba(5, 100, 124, 0.9);
}

.comment-meta {
	display: grid;
	gap: 7px;
	margin-bottom: 16px;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--si-muted);
	font-size: 0.96rem;
}

.comment-author .avatar {
	width: 42px;
	height: 42px;
	margin-left: -58px;
	border: 3px solid #ffffff;
	border-radius: 999px;
	background: var(--si-soft);
	box-shadow: 0 12px 26px -20px rgba(47, 68, 104, 0.76);
}

.comment-author .fn,
.comment-author .fn a {
	color: var(--si-navy);
	font-weight: 850;
	text-decoration: none;
}

.comment-author .says {
	color: var(--si-muted);
}

.comment-metadata a {
	color: var(--si-primary);
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none;
}

.comment-content {
	color: var(--si-ink);
}

.comment-content p {
	margin: 0 0 14px;
}

.comment-content p:last-child {
	margin-bottom: 0;
}

.comment-content a {
	overflow-wrap: anywhere;
}

.commentlist .reply {
	margin-top: 16px;
}

.comment-reply-link {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 7px 13px;
	border: 1px solid rgba(5, 100, 124, 0.18);
	border-radius: 999px;
	background: rgba(232, 244, 252, 0.78);
	color: var(--si-primary);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
	transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.comment-reply-link:hover {
	background: var(--si-primary);
	color: #ffffff;
	transform: translateY(-1px);
}

.commentlist .children {
	position: relative;
	display: grid;
	gap: 14px;
	margin: 14px 0 0 52px;
	padding: 0 0 0 22px;
	border-left: 2px solid rgba(84, 174, 195, 0.24);
	list-style: none;
}

.commentlist .children .comment-body {
	padding-left: 74px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 244, 252, 0.5)),
		#ffffff;
}

.commentlist .children .comment-body::before {
	content: "";
	position: absolute;
	top: 34px;
	left: -23px;
	width: 22px;
	height: 2px;
	background: rgba(84, 174, 195, 0.32);
}

.commentlist .bypostauthor > .comment-body {
	border-color: rgba(0, 133, 166, 0.22);
	background:
		linear-gradient(135deg, rgba(232, 244, 252, 0.84), rgba(255, 255, 255, 0.94)),
		#ffffff;
}

.commentlist .bypostauthor > .comment-body .fn::after {
	content: "Penulis";
	display: inline-flex;
	align-items: center;
	margin-left: 8px;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--si-primary);
	color: #ffffff;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	vertical-align: middle;
}

.comment-respond .comment-reply-title {
	margin: 0 0 12px;
	color: var(--si-navy);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	line-height: 1.1;
}

.comment-respond .comment-notes,
.comment-respond .logged-in-as {
	margin: 0 0 20px;
	color: var(--si-muted);
}

.comment-form {
	display: grid;
	gap: 18px;
}

.comment-form p {
	margin: 0;
}

.comment-form label {
	display: block;
	margin-bottom: 8px;
	color: var(--si-navy);
	font-weight: 750;
}

.comment-form textarea {
	min-height: 190px;
	resize: vertical;
}

.si-sidebar-widget h2,
.si-sidebar-widget .wp-block-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	color: var(--si-navy);
	font-size: 1.08rem;
	line-height: 1.18;
	letter-spacing: 0;
}

.si-sidebar-widget h2::after,
.si-sidebar-widget .wp-block-heading::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--si-line);
}

.si-sidebar-widget ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.si-sidebar-widget li {
	position: relative;
	margin: 0;
}

.si-sidebar-widget li::marker {
	content: "";
}

.si-sidebar-widget li a {
	position: relative;
	display: block;
	padding: 12px 13px 12px 38px;
	border: 1px solid rgba(47, 68, 104, 0.08);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--si-primary);
	font-size: 0.94rem;
	font-weight: 680;
	line-height: 1.42;
	text-decoration: none;
	transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.si-sidebar-widget li a::before {
	content: "";
	position: absolute;
	top: 17px;
	left: 15px;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--si-accent);
	box-shadow: 0 0 0 5px rgba(84, 174, 195, 0.14);
}

.si-sidebar-widget li a:hover {
	background: #ffffff;
	border-color: rgba(0, 133, 166, 0.22);
	color: var(--si-navy);
	transform: translateY(-1px);
}

.si-sidebar-widget li a[aria-current="page"],
.si-sidebar-widget .current-menu-item > a {
	background: var(--si-primary);
	border-color: var(--si-primary);
	color: #ffffff;
	box-shadow: 0 18px 34px -26px rgba(5, 100, 124, 0.92);
}

.si-sidebar-widget li a[aria-current="page"]::before,
.si-sidebar-widget .current-menu-item > a::before {
	background: #ffffff;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.si-toc {
	max-height: calc(100vh - 132px);
}

.si-toc-list {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: si-toc;
}

.si-sidebar-widget .si-toc-list {
	gap: 8px;
}

.si-sidebar-widget .si-toc-item a {
	padding: 10px 12px 10px 42px;
	font-size: 0.9rem;
}

.si-sidebar-widget .si-toc-item a::before {
	content: counter(si-toc);
	top: 10px;
	left: 12px;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	background: rgba(84, 174, 195, 0.16);
	box-shadow: none;
	color: var(--si-primary);
	font-size: 0.68rem;
	font-weight: 850;
}

.si-toc-item {
	counter-increment: si-toc;
}

.si-sidebar-widget .si-toc-level-3 a {
	margin-left: 12px;
	font-size: 0.86rem;
}

.si-sidebar-widget .si-toc-level-4 a {
	margin-left: 24px;
	font-size: 0.84rem;
}

.si-sidebar-widget .si-toc-item a:hover::before {
	background: var(--si-accent);
	color: #ffffff;
}

.si-mobile-toc {
	display: none;
}

.si-mobile-toc-toggle {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 46px -34px rgba(47, 68, 104, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.94);
	color: var(--si-navy);
	padding: 11px 14px;
	font: inherit;
	font-weight: 850;
	cursor: pointer;
	list-style: none;
	backdrop-filter: blur(16px);
}

.si-mobile-toc-toggle::-webkit-details-marker {
	display: none;
}

.si-mobile-toc-toggle .si-mobile-toc-current {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.si-mobile-toc-toggle .si-mobile-toc-current::before {
	content: "";
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--si-accent);
	box-shadow: 0 0 0 5px rgba(84, 174, 195, 0.14);
}

.si-mobile-toc-toggle strong {
	display: grid;
	place-items: center;
	min-width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--si-primary);
	color: #ffffff;
	font-size: 0.8rem;
}

.si-mobile-toc-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 5;
	max-height: min(62vh, 430px);
	overflow-y: auto;
	padding: 12px;
	border: 1px solid rgba(47, 68, 104, 0.1);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 28px 74px -42px rgba(47, 68, 104, 0.86);
	backdrop-filter: blur(18px);
}

.si-mobile-toc .si-toc-list {
	gap: 8px;
}

.si-mobile-toc .si-toc-item a {
	position: relative;
	display: block;
	padding: 11px 12px 11px 42px;
	border: 1px solid rgba(47, 68, 104, 0.08);
	border-radius: 15px;
	background: rgba(232, 244, 252, 0.54);
	color: var(--si-primary);
	font-size: 0.9rem;
	font-weight: 760;
	line-height: 1.35;
	text-decoration: none;
}

.si-toc-item a.is-active,
.si-mobile-toc .si-toc-item a.is-active {
	background: var(--si-primary);
	border-color: var(--si-primary);
	color: #ffffff;
	box-shadow: 0 18px 34px -26px rgba(5, 100, 124, 0.92);
}

.si-toc-item a.is-active::before,
.si-mobile-toc .si-toc-item a.is-active::before {
	background: #ffffff;
	color: var(--si-primary);
}

.si-mobile-toc .si-toc-item a::before {
	content: counter(si-toc);
	position: absolute;
	top: 10px;
	left: 12px;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #ffffff;
	color: var(--si-primary);
	font-size: 0.68rem;
	font-weight: 850;
}

.si-mobile-toc .si-toc-level-3 a {
	margin-left: 10px;
}

.si-mobile-toc .si-toc-level-4 a {
	margin-left: 20px;
}

.si-sidebar-widget select,
.si-sidebar-widget input[type="search"],
.si-sidebar-widget input[type="text"] {
	margin-top: 4px;
}

.si-sidebar-widget > * {
	position: relative;
}

.si-pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.page-numbers,
.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid var(--si-line);
	background: #ffffff;
	color: var(--si-navy);
	text-decoration: none;
	font-weight: 750;
}

.page-numbers.current,
.nav-links .current {
	background: var(--si-primary);
	color: #ffffff;
	border-color: var(--si-primary);
}

.si-site-footer {
	padding: 52px 0 28px;
	background: var(--si-primary);
	color: rgba(255, 255, 255, 0.86);
}

.si-footer-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 30px;
	align-items: start;
}

.si-footer-brand {
	max-width: 580px;
}

.si-footer-brand h2 {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1;
}

.si-footer-brand p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.si-footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px 18px;
	max-width: 420px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.si-footer-menu a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
}

.si-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 44px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.92rem;
}

.si-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 640ms cubic-bezier(0.16, 1, 0.3, 1), transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.si-empty {
	padding: 32px;
	border: 1px dashed rgba(47, 68, 104, 0.22);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.6);
	color: var(--si-muted);
}

.search-form {
	display: flex;
	gap: 10px;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	width: 100%;
	border: 1px solid rgba(47, 68, 104, 0.18);
	border-radius: 14px;
	background: #ffffff;
	color: var(--si-ink);
	padding: 12px 14px;
}

.search-submit,
input[type="submit"],
button[type="submit"] {
	border: 0;
	border-radius: 999px;
	background: var(--si-primary);
	color: #ffffff;
	padding: 12px 18px;
	font-weight: 800;
	cursor: pointer;
}

@media (max-width: 960px) {
	.si-header-inner {
		grid-template-columns: auto 1fr auto auto;
		gap: 10px;
		justify-content: stretch;
	}

	.si-brand {
		grid-column: 1;
		min-width: 0;
	}

	.si-menu-toggle {
		grid-column: 4;
		justify-self: end;
		display: inline-flex;
	}

	.si-search-link {
		grid-column: 3;
		justify-self: end;
		width: 46px;
		padding: 0;
	}

	.si-search-link span {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.si-nav {
		grid-column: 1 / -1;
		order: 10;
		justify-self: stretch;
		display: none;
		padding: 10px 0 18px;
	}

	.si-nav.is-open {
		display: block;
	}

	.si-menu {
		display: grid;
		gap: 4px;
	}

	.si-menu a {
		width: 100%;
		justify-content: space-between;
		border-radius: 14px;
	}

	.si-menu .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		margin: 4px 0 8px 16px;
		padding: 6px;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(232, 244, 252, 0.55);
	}

	.si-hero-grid,
	.si-section-head,
	.si-portal-grid,
	.si-mobile-feature,
	.si-content-layout,
	.si-footer-grid {
		grid-template-columns: 1fr;
	}

	.si-phone-showcase {
		min-height: 400px;
	}

	.si-app-list {
		grid-template-columns: 1fr;
	}

	.si-latest-item {
		grid-template-columns: 1fr auto;
		gap: 12px 16px;
	}

	.si-latest-meta {
		grid-column: 1 / -1;
		display: flex;
		flex-wrap: wrap;
		gap: 6px 12px;
	}

	.si-portal-group:nth-child(even) {
		margin-top: 0;
	}

	.si-post-card,
	.si-post-card:first-child,
	.si-post-card:nth-child(2) {
		grid-column: span 6;
	}

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

	.si-post-nav-card-next {
		text-align: left;
	}

	.si-sidebar {
		position: static;
	}

	.si-toc-sidebar {
		display: none;
	}

	.si-mobile-toc {
		position: sticky;
		top: 82px;
		z-index: 80;
		display: block;
		width: min(100% - 32px, 1180px);
		margin: 12px auto 0;
	}

	.si-entry-content h1,
	.si-entry-content h2,
	.si-entry-content h3,
	.si-entry-content h4 {
		scroll-margin-top: 156px;
	}

	.admin-bar .si-mobile-toc {
		top: 128px;
	}

	.admin-bar .si-entry-content h1,
	.admin-bar .si-entry-content h2,
	.admin-bar .si-entry-content h3,
	.admin-bar .si-entry-content h4 {
		scroll-margin-top: 202px;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 16px;
	}

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

	.si-header-inner {
		min-height: 72px;
	}

	.si-mobile-toc {
		top: 72px;
	}

	.si-entry-content h1,
	.si-entry-content h2,
	.si-entry-content h3,
	.si-entry-content h4 {
		scroll-margin-top: 146px;
	}

	.admin-bar .si-mobile-toc {
		top: 118px;
	}

	.admin-bar .si-entry-content h1,
	.admin-bar .si-entry-content h2,
	.admin-bar .si-entry-content h3,
	.admin-bar .si-entry-content h4 {
		scroll-margin-top: 192px;
	}

	.si-brand img {
		max-width: 190px;
	}

	.si-hero {
		padding: 58px 0 44px;
	}

	.si-hero h1,
	.si-page-title {
		font-size: clamp(2.35rem, 15vw, 3.7rem);
	}

	.si-hero-logo {
		min-height: 210px;
		padding: 24px;
	}

	.si-phone-showcase {
		min-height: 330px;
		border-radius: 22px;
	}

	.si-phone-shot {
		width: min(52%, 185px);
	}

	.si-phone-shot-primary {
		left: 10%;
	}

	.si-phone-shot-secondary {
		right: 8%;
	}

	.si-mobile-feature {
		border-radius: 24px;
	}

	.si-mobile-copy h3 {
		font-size: clamp(2rem, 12vw, 3rem);
	}

	.si-app-card {
		grid-template-columns: 64px 1fr auto;
	}

	.si-app-card img,
	.si-app-placeholder {
		width: 64px;
		height: 64px;
		border-radius: 17px;
	}

	.si-mini-stats,
	.si-post-grid,
	.si-archive-item,
	.si-footer-bottom {
		grid-template-columns: 1fr;
	}

	.si-post-card,
	.si-post-card:first-child,
	.si-post-card:nth-child(2) {
		grid-column: span 12;
	}

	.si-section {
		padding: 52px 0;
	}

	.si-portal-group,
	.si-entry {
		border-radius: 20px;
	}

	.si-portal-card {
		grid-template-columns: auto 1fr;
	}

	.si-card-list {
		grid-template-columns: 1fr;
	}

	.si-card-list .si-portal-card:last-child:nth-child(odd) {
		grid-column: auto;
	}

	.si-post-nav-card {
		grid-template-columns: 84px minmax(0, 1fr);
		min-height: 116px;
		border-radius: 20px;
	}

	.si-search-modal {
		padding: 16px;
	}

	.si-search-dialog {
		border-radius: 24px;
	}

	.si-modal-search-form {
		grid-template-columns: 1fr;
	}

	.wp-block-code {
		margin-inline: -4px;
		padding-inline: 16px;
	}

	.comment-body {
		padding: 20px;
	}

	.commentlist > .comment > .comment-body::before {
		position: static;
		margin-bottom: 12px;
	}

	.comment-author .avatar {
		width: 38px;
		height: 38px;
		margin-left: 0;
	}

	.commentlist .children {
		margin-left: 12px;
		padding-left: 14px;
	}

	.commentlist .children .comment-body {
		padding-left: 18px;
	}

	.si-card-arrow {
		display: none;
	}

	.si-footer-menu {
		justify-content: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	.si-reveal {
		opacity: 1;
		transform: none;
	}
}
