@font-face {
	font-family: "DM Sans";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/dm-sans/dm-sans-latin.woff2") format("woff2");
}

:root {
	--bem-navy: #00034f;
	--bem-navy-dark: #00022f;
	--bem-blue: #263b91;
	--bem-gold: #d6c315;
	--bem-gold-light: #f1df3b;
	--bem-ink: #131010;
	--bem-muted: #6d7180;
	--bem-surface: #f5f6fa;
	--bem-white: #fff;
	--bem-radius: 28px;
	--bem-shadow: 0 24px 70px rgba(0, 3, 79, 0.12);
}

/* Laravel page parity layer. */
body.page .bem-page-main {
	width: 100%;
	max-width: none;
	padding: 0;
}

body.page .bem-page-main .wp-block-post-content {
	width: 100%;
	max-width: none;
}

.bem-history-page,
.bem-cabinet-page,
.bem-bidang-detail {
	width: min(1120px, calc(100% - 48px));
	margin-inline: auto;
}

.bem-history-intro {
	padding-top: 72px;
	color: #252525;
	font-size: 20px;
	font-weight: 700;
	line-height: 2;
	text-align: justify;
}

.bem-history-journey {
	max-width: 1040px;
	margin: 80px auto 0;
	padding-bottom: 48px;
	text-align: center;
}

.bem-history-journey__label {
	display: inline-flex;
	min-width: 190px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 32px;
	color: #fff;
	background: var(--bem-blue);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(0, 6, 150, 0.18);
	font-size: 16px;
}

.bem-history-timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 128px;
	margin-top: 64px;
}

.bem-history-timeline.is-connected::before {
	position: absolute;
	top: 334px;
	bottom: 165px;
	left: 230px;
	z-index: 0;
	width: 2px;
	content: "";
	background: var(--bem-blue);
}

.bem-history-timeline__item {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 96px;
	align-items: center;
	width: 880px;
	max-width: 100%;
	margin: 0 auto;
	text-align: left;
}

.bem-history-timeline__item:nth-child(odd) {
	transform: translateX(-70px);
}

.bem-history-timeline__item:nth-child(even) {
	transform: translateX(70px);
}

.bem-history-photo {
	position: relative;
	width: 300px;
	height: 340px;
}

.bem-history-photo__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #dedede;
	border-radius: 12px;
}

.bem-history-photo__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.28s ease;
}

.bem-history-photo__image.is-active {
	opacity: 1;
}

.bem-history-photo__placeholder {
	display: grid;
	height: 100%;
	place-items: center;
	color: rgba(255, 255, 255, 0.9);
}

.bem-history-photo__placeholder svg {
	width: 72px;
	height: 72px;
}

.bem-history-photo__logo {
	position: absolute;
	right: -52px;
	bottom: -26px;
	z-index: 4;
	display: grid;
	width: 116px;
	height: 116px;
	place-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.45));
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
	backdrop-filter: blur(13px) saturate(150%);
}

.bem-history-photo__logo img {
	width: 78px;
	height: 78px;
	object-fit: contain;
}

.bem-history-photo__nav {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 30px;
	height: 30px;
	color: #fff;
	background: rgba(0, 3, 79, 0.72);
	border: 0;
	border-radius: 50%;
	transform: translateY(-50%);
}

.bem-history-photo__nav.is-prev {
	left: -14px;
}

.bem-history-photo__nav.is-next {
	right: -14px;
}

.bem-history-copy__heading {
	display: flex;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
	color: var(--bem-navy);
}

.bem-history-copy__heading span {
	font-size: clamp(56px, 6vw, 90px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.9;
}

.bem-history-copy__heading h3 {
	margin: 0;
	font-size: 25px;
	line-height: 1.25;
}

.bem-history-copy__description {
	max-width: 440px;
	color: #242424;
	font-weight: 600;
	line-height: 1.75;
}

.bem-history-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 72px 0 40px;
}

.bem-history-links a {
	padding: 12px 18px;
	color: #fff;
	background: var(--bem-navy);
	border-radius: 10px;
	font-weight: 700;
	text-align: center;
}

.bem-cabinet-identity {
	padding: 72px 0 56px;
	text-align: center;
}

.bem-cabinet-identity img {
	width: min(260px, 75%);
	max-height: 260px;
	object-fit: contain;
}

.bem-cabinet-identity h2 {
	margin: 24px 0 0;
	color: var(--bem-blue);
	font-size: clamp(32px, 4vw, 52px);
}

.bem-cabinet-members {
	max-width: 1020px;
	margin: 0 auto;
	padding-bottom: 40px;
	text-align: center;
}

.bem-cabinet-members__label {
	display: inline-block;
	margin-bottom: 40px;
	padding: 13px 22px;
	color: #fff;
	background: var(--bem-navy);
	border-radius: 999px;
	font-weight: 800;
}

.bem-cabinet-rank {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: center;
	margin-bottom: 40px;
}

.bem-cabinet-rank--1 .bem-cabinet-member {
	flex: 0 1 240px;
}

.bem-cabinet-rank:not(.bem-cabinet-rank--1) .bem-cabinet-member {
	flex: 0 1 170px;
}

.bem-cabinet-member,
.bem-staff-card {
	position: relative;
	overflow: hidden;
	background: var(--bem-navy);
	border-radius: 0 0 12px 12px;
}

.bem-cabinet-member img,
.bem-cabinet-member__fallback,
.bem-staff-card img,
.bem-staff-card__fallback {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: top center;
}

.bem-cabinet-member__fallback,
.bem-staff-card__fallback {
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.55);
	background: linear-gradient(135deg, var(--bem-blue), var(--bem-navy));
	font-size: 54px;
}

.bem-cabinet-member__content,
.bem-staff-card__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 55px 16px 16px;
	color: #fff;
	background: linear-gradient(transparent, rgba(0, 3, 79, 0.96));
	text-align: left;
}

.bem-cabinet-member strong,
.bem-cabinet-member small,
.bem-staff-card strong,
.bem-staff-card small {
	display: block;
}

.bem-cabinet-member strong,
.bem-staff-card strong {
	font-size: 20px;
	line-height: 1.1;
}

.bem-cabinet-member small,
.bem-staff-card small {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.78);
}

.bem-cabinet-description {
	margin: 30px auto 72px;
	color: #252525;
	font-size: 18px;
	font-weight: 600;
	line-height: 2;
	text-align: justify;
}

.bem-directory-page {
	padding: 70px max(24px, calc((100vw - 1240px) / 2)) 80px;
	background: #f0f1f4;
	box-shadow: 0 0 0 100vmax #f0f1f4;
	clip-path: inset(0 -100vmax);
}

.bem-directory-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px 20px;
}

.bem-directory-card {
	display: flex;
	min-height: 275px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	color: var(--bem-navy);
	background: #e1cf08;
	border-radius: 24px;
	box-shadow: 0 12px 24px rgba(0, 3, 79, 0.12);
	text-align: center;
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bem-directory-card:hover,
.bem-directory-card:focus,
.bem-directory-card:active,
.bem-directory-card:visited {
	color: var(--bem-navy);
	text-decoration: none !important;
}

.bem-directory-card:hover {
	box-shadow: 0 18px 34px rgba(0, 3, 79, 0.18);
	transform: translateY(-5px);
}

.bem-directory-card img {
	width: 140px !important;
	height: 140px !important;
	margin: 0 0 14px !important;
	object-fit: contain;
}

.bem-directory-card strong,
.bem-directory-card span {
	display: block;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none !important;
}

.bem-directory-card span {
	font-size: 15px;
	font-weight: 500;
}

.bem-bidang-directory + .bem-history-links {
	margin-bottom: 0;
}

.bem-bidang-detail {
	padding-top: 28px;
	padding-bottom: 80px;
}

.bem-staff-section {
	padding: 0 20px 38px;
}

.bem-staff-grid,
.bem-staff-skeleton {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: center;
	margin-bottom: 38px;
}

.bem-staff-card {
	width: min(240px, 100%);
}

.bem-staff-grid--rank-2 .bem-staff-card {
	width: min(200px, 100%);
}

.bem-staff-skeleton i {
	display: block;
	width: 240px;
	aspect-ratio: 4 / 5;
	background:
		linear-gradient(#e2e5ee 0 0) 18px calc(100% - 54px) / 55% 9px no-repeat,
		linear-gradient(#e2e5ee 0 0) 18px calc(100% - 32px) / 35% 7px no-repeat,
		#f1f3f7;
	border-radius: 12px;
}

.bem-staff-skeleton--team i {
	width: 200px;
}

.bem-bidang-divider {
	margin: 8px 0 30px;
	border-color: #d7dae3;
}

.bem-bidang-description {
	color: #252a3c;
	font-size: 17px;
	font-weight: 650;
	line-height: 2;
	text-align: justify;
}

.bem-bidang-description a {
	display: inline-block;
	margin-top: 10px;
	color: var(--bem-blue);
}

.bem-program-heading h2 {
	display: inline-block;
	margin: 38px 0 28px;
	padding-bottom: 10px;
	color: var(--bem-navy);
	border-bottom: 3px solid #252525;
	font-size: 28px;
}

.bem-program-section {
	margin-top: 42px;
}

.bem-program-section__heading {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.bem-program-section__heading h3 {
	margin: 0;
	color: var(--bem-navy);
	font-size: 26px;
}

.bem-program-section__heading span {
	padding: 8px 13px;
	color: var(--bem-blue);
	background: #f1f7fb;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}

.bem-program-coverflow {
	position: relative;
	padding: 16px 0 84px;
}

.bem-program-coverflow.is-single {
	padding-bottom: 16px;
}

.bem-program-coverflow__viewport {
	position: relative;
	height: 390px;
	overflow: hidden;
	perspective: 1200px;
}

.bem-program-coverflow__slide {
	position: absolute;
	top: 18px;
	left: 50%;
	width: min(900px, 68%);
	height: 350px;
	opacity: 0;
	pointer-events: none;
	filter: saturate(0.45);
	transform-origin: center;
	transform: translateX(-50%) scale(0.78);
	transition: opacity 0.4s ease, transform 0.5s ease, filter 0.4s ease;
}

.bem-program-coverflow__slide.is-active {
	z-index: 3;
	opacity: 1;
	pointer-events: auto;
	filter: none;
	transform: translateX(-50%) scale(1);
}

.bem-program-coverflow__slide.is-prev,
.bem-program-coverflow__slide.is-next {
	z-index: 1;
	opacity: 0.48;
}

.bem-program-coverflow__slide.is-prev {
	transform: translateX(-72%) scale(0.88) rotateY(4deg);
}

.bem-program-coverflow__slide.is-next {
	transform: translateX(-28%) scale(0.88) rotateY(-4deg);
}

.bem-program-coverflow__slide.is-single {
	z-index: 3;
	opacity: 1;
	pointer-events: auto;
	filter: none;
	transform: translateX(-50%) scale(1);
}

.bem-program-slide-card {
	display: grid;
	height: 100%;
	grid-template-columns: 42% 58%;
	min-height: 0;
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(circle at 80% 120%, rgba(39, 57, 200, 0.42), transparent 45%),
		var(--bem-blue);
	border-radius: 24px;
	box-shadow: 0 22px 48px rgba(0, 3, 79, 0.22);
}

.bem-program-slide-card__media {
	position: relative;
	display: grid;
	min-width: 0;
	min-height: 0;
	margin: 48px 0 48px 48px;
	place-items: center;
	overflow: hidden;
	background: #fff;
	border-radius: 8px;
}

.bem-program-slide-card__media img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	object-fit: cover !important;
	object-position: 50% 50% !important;
}

.bem-program-slide-card__fallback {
	display: grid;
	gap: 7px;
	place-items: center;
	color: #a5aabb;
}

.bem-program-slide-card__fallback span {
	font-size: 46px;
}

.bem-program-slide-card__content {
	display: flex;
	min-width: 0;
	min-height: 0;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: 44px;
}

.bem-program-slide-card__content h4 {
	flex: 0 0 auto;
	margin: 0 0 14px;
	color: #fff;
	font-size: 28px;
	line-height: 1.2;
}

.bem-program-slide-card__description {
	min-height: 0;
	flex: 0 1 auto;
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 12px;
	overscroll-behavior: contain;
	scrollbar-color: rgba(255, 255, 255, 0.58) rgba(255, 255, 255, 0.12);
	scrollbar-gutter: stable;
	scrollbar-width: thin;
}

.bem-program-slide-card__description::-webkit-scrollbar {
	width: 5px;
}

.bem-program-slide-card__description::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
}

.bem-program-slide-card__description::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.58);
	border-radius: 999px;
}

.bem-program-slide-card__description:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.82);
	outline-offset: 4px;
	border-radius: 4px;
}

.bem-program-slide-card__description p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	hyphens: auto;
	overflow-wrap: anywhere;
	text-align: justify;
	text-align-last: left;
	text-justify: inter-word;
	text-wrap: pretty;
}

.bem-program-slide-card__description p + p {
	margin-top: 0.8em;
}

.bem-program-coverflow__controls {
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: center;
}

.bem-program-coverflow__controls button {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: #fff;
	background: var(--bem-navy);
	border: 0;
	border-radius: 50%;
	font-size: 24px;
}

.bem-program-coverflow__controls span {
	min-width: 46px;
	color: #687084;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.bem-release-browser {
	padding: 60px max(24px, calc((100vw - 1260px) / 2)) 80px;
	background: #eef0f2;
	box-shadow: 0 0 0 100vmax #eef0f2;
	clip-path: inset(0 -100vmax);
}

.bem-release-filter {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	margin-bottom: 36px;
	padding: 34px;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 12px 28px rgba(0, 3, 79, 0.08);
}

.bem-release-filter > div:first-child,
.bem-release-filter__fields {
	grid-column: 1 / -1;
}

.bem-release-filter small {
	color: var(--bem-blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bem-release-filter h2 {
	margin: 4px 0 0;
	color: #252a3c;
	font-size: 20px;
}

.bem-release-filter__fields {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 18px;
}

.bem-release-filter label span {
	display: block;
	margin-bottom: 9px;
	color: #777d8f;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.bem-release-filter input,
.bem-release-filter select {
	width: 100%;
	height: 50px;
	padding: 0 17px;
	background: #fff;
	border: 1px solid #dce0e9;
	border-radius: 999px;
}

.bem-release-filter > button {
	grid-column: 2;
	padding: 13px 22px;
	color: #fff;
	background: var(--bem-navy);
	border: 0;
	border-radius: 999px;
	font-weight: 800;
}

.bem-release-list {
	display: grid;
	gap: 28px;
}

.bem-release-list__item {
	min-height: 150px;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 12px 24px rgba(0, 3, 79, 0.09);
}

.bem-release-list__item[hidden] {
	display: none;
}

.bem-release-list__item a {
	display: grid;
	min-height: 150px;
	place-items: center;
	padding: 25px;
	color: #292e41;
	font-size: 21px;
	font-weight: 750;
	text-align: center;
}

.bem-release-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin-top: 34px;
}

.bem-release-pagination button {
	min-width: 34px;
	height: 34px;
	color: #777d8e;
	background: transparent;
	border: 0;
	border-radius: 7px;
}

.bem-release-pagination button.is-active {
	color: #fff;
	background: #079bea;
}

@media (max-width: 900px) {
	.bem-history-timeline {
		gap: 80px;
		padding-left: 40px;
	}

	.bem-history-timeline__item,
	.bem-history-timeline__item:nth-child(odd),
	.bem-history-timeline__item:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 55px;
		justify-items: stretch;
		transform: none;
	}

	.bem-history-timeline.is-connected::before {
		top: 28px;
		bottom: 28px;
		left: 10px;
		width: 3px;
		background: linear-gradient(180deg, rgba(0, 3, 121, 0.16), var(--bem-blue) 15%, var(--bem-blue) 85%, rgba(0, 3, 121, 0.16));
		border-radius: 999px;
		transform: none;
	}

	.bem-history-timeline__item::before {
		position: absolute;
		top: 402px;
		left: -36px;
		z-index: 3;
		width: 15px;
		height: 15px;
		content: "";
		background: #fff;
		border: 4px solid var(--bem-blue);
		border-radius: 50%;
		box-shadow: 0 0 0 6px rgba(0, 3, 121, 0.08);
	}

	.bem-history-photo {
		justify-self: center;
	}

	.bem-history-copy {
		position: relative;
		padding: 28px;
		background: #fff;
		border: 1px solid rgba(0, 3, 121, 0.08);
		border-radius: 18px;
		box-shadow: 0 16px 42px rgba(0, 3, 79, 0.08);
		text-align: left;
	}

	.bem-history-copy__heading {
		flex-wrap: wrap;
		gap: 14px;
		justify-content: flex-start;
	}

	.bem-history-copy__description {
		max-width: none;
	}

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

	.bem-program-coverflow__slide {
		width: 82%;
	}

	.bem-release-filter__fields {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.bem-history-page,
	.bem-cabinet-page,
	.bem-bidang-detail {
		width: min(100% - 28px, 540px);
	}

	.bem-history-intro {
		padding-top: 48px;
		font-size: 16px;
		line-height: 1.85;
	}

	.bem-history-journey {
		margin-top: 55px;
	}

	.bem-history-timeline {
		gap: 64px;
		padding-left: 30px;
	}

	.bem-history-timeline.is-connected::before {
		left: 7px;
	}

	.bem-history-timeline__item::before {
		left: -29px;
	}

	.bem-history-photo {
		width: min(300px, calc(100vw - 92px));
	}

	.bem-history-photo__logo {
		right: 14px;
		bottom: -36px;
	}

	.bem-history-copy {
		padding: 24px 20px;
	}

	.bem-history-copy__heading span {
		font-size: clamp(48px, 16vw, 68px);
	}

	.bem-history-copy__heading h3 {
		font-size: 22px;
	}

	.bem-history-links {
		grid-template-columns: 1fr;
	}

	.bem-cabinet-rank {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.bem-cabinet-member {
		width: 220px;
	}

	.bem-cabinet-description,
	.bem-bidang-description {
		text-align: left;
	}

	.bem-directory-page {
		padding: 42px 20px 60px;
	}

	.bem-directory-grid {
		grid-template-columns: 1fr;
	}

	.bem-directory-card {
		min-height: 245px;
	}

	.bem-staff-skeleton i,
	.bem-staff-skeleton--team i {
		width: min(230px, 100%);
	}

	.bem-program-section__heading {
		align-items: flex-start;
	}

	.bem-program-coverflow {
		padding-bottom: 72px;
	}

	.bem-program-coverflow__viewport {
		height: 540px;
	}

	.bem-program-coverflow__slide,
	.bem-program-coverflow__slide.is-active {
		top: 0;
		width: 100%;
		height: 520px;
		opacity: 0;
		transform: translateX(-50%) scale(0.92);
	}

	.bem-program-coverflow__slide.is-active {
		opacity: 1;
		transform: translateX(-50%) scale(1);
	}

	.bem-program-coverflow__slide.is-prev,
	.bem-program-coverflow__slide.is-next {
		opacity: 0;
	}

	.bem-program-slide-card {
		grid-template-columns: 1fr;
		grid-template-rows: 210px 1fr;
	}

	.bem-program-slide-card__media {
		margin: 22px 22px 0;
	}

	.bem-program-slide-card__content {
		padding: 25px;
	}

	.bem-program-slide-card__content h4 {
		font-size: 22px;
	}

	.bem-release-browser {
		padding: 38px 14px 60px;
	}

	.bem-release-filter {
		grid-template-columns: 1fr;
		padding: 24px 18px;
	}

	.bem-release-filter > button {
		grid-column: 1;
	}

	.bem-release-list__item,
	.bem-release-list__item a {
		min-height: 120px;
	}

	.bem-release-list__item a {
		font-size: 17px;
	}
}

/* Public BEM FT short-link lookup and directory. */
.bem-shortener {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
	padding: 72px 0 96px;
}

.bem-shortener__lookup {
	position: relative;
	overflow: hidden;
	padding: clamp(32px, 5vw, 64px);
	color: #fff;
	background:
		radial-gradient(circle at 92% 12%, rgba(41, 153, 255, 0.42), transparent 32%),
		linear-gradient(135deg, var(--bem-navy), #071d78);
	border-radius: 28px;
	box-shadow: 0 28px 72px rgba(0, 3, 79, 0.2);
}

.bem-shortener__lookup h2 {
	margin: 10px 0 12px;
	color: #fff;
	font-size: clamp(36px, 6vw, 68px);
	letter-spacing: -0.04em;
}

.bem-shortener__lookup > p {
	max-width: 660px;
	margin: 0 0 30px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.7;
}

.bem-shortener__lookup form {
	display: grid;
	gap: 9px;
}

.bem-shortener__lookup form > label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bem-shortener__lookup form > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	max-width: 760px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 16px;
	backdrop-filter: blur(16px);
}

.bem-shortener__lookup input {
	min-width: 0;
	padding: 14px 16px;
	color: var(--bem-navy);
	background: #fff;
	border: 0;
	border-radius: 11px;
	font: inherit;
}

.bem-shortener__lookup button,
.bem-short-card button {
	padding: 13px 20px;
	color: var(--bem-navy);
	background: #fff;
	border: 0;
	border-radius: 11px;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.bem-shortener__lookup [data-short-error] {
	margin: 0;
	color: #ffd0d0;
	font-size: 14px;
}

.bem-shortener__directory {
	padding-top: 72px;
}

.bem-shortener__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.bem-short-card {
	display: flex;
	min-width: 0;
	min-height: 240px;
	flex-direction: column;
	padding: 28px;
	background: #fff;
	border: 1px solid rgba(0, 3, 79, 0.1);
	border-radius: 18px;
	box-shadow: 0 14px 40px rgba(0, 3, 79, 0.07);
}

.bem-short-card > span {
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bem-short-card h3 {
	margin: 14px 0 10px;
	color: var(--bem-navy);
	font-size: 24px;
}

.bem-short-card > a {
	overflow: hidden;
	color: #0969c7;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bem-short-card > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 24px;
}

.bem-short-card button {
	color: #fff;
	background: var(--bem-navy);
}

.bem-short-card small {
	color: #64748b;
	font-weight: 700;
}

@media (max-width: 900px) {
	.bem-shortener__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.bem-shortener {
		width: min(100% - 28px, 540px);
		padding: 48px 0 72px;
	}

	.bem-shortener__lookup {
		padding: 30px 20px;
		border-radius: 20px;
	}

	.bem-shortener__lookup form > div,
	.bem-shortener__grid {
		grid-template-columns: 1fr;
	}

	.bem-shortener__lookup button {
		width: 100%;
	}
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--bem-ink);
	background: var(--bem-white);
	font-family: "Poppins", Arial, sans-serif;
}

body,
button,
input,
textarea {
	font-family: "Poppins", Arial, sans-serif;
}

.wp-site-blocks > * {
	margin-block-start: 0 !important;
}

body.admin-bar .bem-header {
	top: 32px;
}

.bem-container {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
}

.bem-main {
	overflow: hidden;
}

.bem-main *,
.bem-header *,
.bem-footer * {
	box-sizing: border-box;
}

.bem-main a,
.bem-header a,
.bem-footer a {
	text-decoration: none;
}

.bem-skip-link {
	position: fixed;
	z-index: 10000;
	top: -80px;
	left: 24px;
	padding: 12px 18px;
	color: var(--bem-navy);
	background: var(--bem-gold);
	border-radius: 0 0 12px 12px;
	font-weight: 700;
	transition: top 0.2s ease;
}

.bem-skip-link:focus {
	top: 0;
}

.bem-header {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	left: 0;
	color: var(--bem-ink);
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(0, 3, 79, 0.08);
	box-shadow: 0 8px 35px rgba(0, 3, 79, 0.08);
	backdrop-filter: blur(18px);
	transition: box-shadow 0.2s ease, background 0.2s ease;
}

.bem-header.is-scrolled {
	background: rgba(255, 255, 255, 0.985);
	box-shadow: 0 14px 45px rgba(0, 3, 79, 0.14);
}

.bem-header__inner {
	display: flex;
	min-height: 82px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.bem-brand {
	display: flex;
	min-width: 290px;
	align-items: center;
	gap: 10px;
	color: var(--bem-navy);
}

.bem-brand > img {
	width: 54px;
	height: 46px;
	object-fit: contain;
}

.bem-brand > img.bem-brand__cabinet {
	width: 40px;
	height: 40px;
	padding-left: 9px;
	border-left: 1px solid #d9dbe7;
}

.bem-brand span {
	display: flex;
	flex-direction: column;
	line-height: 1.16;
}

.bem-brand strong {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.bem-brand small {
	max-width: 178px;
	margin-top: 4px;
	color: #666b7b;
	font-size: 9px;
	font-weight: 600;
}

.bem-nav {
	display: flex;
	align-items: center;
	gap: clamp(15px, 1.7vw, 28px);
}

.bem-nav > a,
.bem-nav__dropdown > button {
	padding: 30px 0;
	color: #252838;
	background: transparent;
	border: 0;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	cursor: pointer;
}

.bem-nav > a:hover,
.bem-nav__dropdown > button:hover {
	color: var(--bem-blue);
}

.bem-nav__dropdown {
	position: relative;
}

.bem-nav__dropdown > button span {
	display: inline-block;
	margin-left: 3px;
	color: var(--bem-gold);
	font-size: 15px;
	transition: transform 0.2s ease;
}

.bem-nav__dropdown > div {
	position: absolute;
	top: calc(100% - 8px);
	left: -22px;
	display: grid;
	width: 245px;
	padding: 11px;
	visibility: hidden;
	background: #fff;
	border: 1px solid #e7e8ef;
	border-radius: 16px;
	box-shadow: var(--bem-shadow);
	opacity: 0;
	transform: translateY(8px);
	transition: 0.2s ease;
}

.bem-nav__dropdown:hover > div,
.bem-nav__dropdown:focus-within > div,
.bem-nav__dropdown.is-open > div {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.bem-nav__dropdown > div a {
	padding: 11px 13px;
	color: #333746;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 600;
}

.bem-nav__dropdown > div a:hover {
	color: var(--bem-navy);
	background: #f4f5fb;
}

.bem-nav > a.bem-nav__cta {
	padding: 12px 18px;
	color: var(--bem-navy);
	background: var(--bem-gold);
	border-radius: 50px;
	box-shadow: 0 9px 25px rgba(214, 195, 21, 0.28);
}

.bem-nav > a.bem-nav__cta:hover {
	color: #fff;
	background: var(--bem-navy);
}

.bem-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 11px;
	background: var(--bem-navy);
	border: 0;
	border-radius: 12px;
	cursor: pointer;
}

.bem-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 4px 0;
	background: #fff;
	border-radius: 2px;
}

.bem-hero {
	position: relative;
	display: grid;
	min-height: 100svh;
	place-items: center;
	color: #fff;
	background-image: var(--bem-hero-image, url("../img/bemft-hero.png"));
	background-position: center;
	background-size: cover;
	isolation: isolate;
}

.bem-hero__overlay {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 2, 47, 0.7) 0%, rgba(0, 3, 79, 0.72) 58%, rgba(0, 2, 47, 0.92) 100%),
		linear-gradient(90deg, rgba(0, 3, 79, 0.32), transparent 50%, rgba(0, 3, 79, 0.22));
}

.bem-hero__content {
	position: relative;
	padding-top: 132px;
	padding-bottom: 68px;
	text-align: center;
}

.bem-hero__logos {
	display: inline-grid;
	width: min(560px, calc(100vw - 48px));
	min-height: 164px;
	grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
	align-items: center;
	margin-bottom: 32px;
	padding: 22px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.16));
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 26px;
	box-shadow:
		0 24px 70px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.62);
	-webkit-backdrop-filter: blur(22px) saturate(145%);
	backdrop-filter: blur(22px) saturate(145%);
}

.bem-hero__logos img {
	display: block;
	width: 100%;
	height: 112px;
	padding: 0 22px;
	object-fit: contain;
}

.bem-hero__logos > span {
	width: 1px;
	height: 96px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
	box-shadow: 1px 0 rgba(0, 3, 79, 0.12);
}

.bem-eyebrow {
	display: block;
	margin: 0 0 13px;
	color: var(--bem-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.bem-hero h1 {
	max-width: 1000px;
	margin: 0 auto;
	font-family: "Host Grotesk", "Poppins", sans-serif;
	font-size: clamp(52px, 7vw, 104px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 0.95;
	text-shadow: 0 6px 28px rgba(0, 0, 0, 0.32);
}

.bem-hero h2 {
	margin: 21px 0 0;
	color: var(--bem-gold-light);
	font-size: clamp(22px, 2.9vw, 42px);
	font-weight: 600;
	letter-spacing: 0.02em;
}

.bem-hero__tagline {
	margin: 15px auto 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(13px, 1.2vw, 17px);
	font-weight: 500;
}

.bem-scroll-cue {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 36px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.bem-scroll-cue i {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	color: var(--bem-navy);
	background: var(--bem-gold);
	border-radius: 50%;
	font-style: normal;
	animation: bem-bounce 1.8s infinite;
}

@keyframes bem-bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(6px);
	}
}

.bem-section-band {
	color: #fff;
	background: var(--bem-navy);
}

.bem-section-band > div {
	display: flex;
	min-height: 150px;
	align-items: center;
	gap: 30px;
}

.bem-section-band span {
	color: var(--bem-gold);
	font-family: "Host Grotesk", sans-serif;
	font-size: 18px;
	font-weight: 700;
}

.bem-section-band h2 {
	margin: 0;
	font-family: "Host Grotesk", "Poppins", sans-serif;
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 700;
	letter-spacing: -0.035em;
	text-transform: uppercase;
}

.bem-about {
	background:
		radial-gradient(circle at 92% 18%, rgba(214, 195, 21, 0.12), transparent 18%),
		#fff;
}

.bem-about__intro {
	padding-block: 86px;
}

.bem-about__intro p {
	max-width: 970px;
	margin: 0 auto;
	color: #313442;
	font-family: "Host Grotesk", "Poppins", sans-serif;
	font-size: clamp(16px, 2vw, 24px);
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

.bem-ribbon {
	display: flex;
	width: min(420px, 75%);
	height: 82px;
	align-items: center;
	justify-content: center;
	color: var(--bem-navy);
	background: var(--bem-gold);
	font-family: "Host Grotesk", sans-serif;
	font-size: 44px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.bem-ribbon--left {
	border-radius: 0 28px 28px 0;
}

.bem-ribbon--right {
	margin-left: auto;
	border-radius: 28px 0 0 28px;
}

.bem-vision {
	padding-bottom: 100px;
}

.bem-vision__quote {
	position: relative;
	padding-top: 74px;
}

.bem-quote-mark {
	position: absolute;
	top: 25px;
	left: 50%;
	color: var(--bem-gold);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 106px;
	line-height: 1;
	transform: translateX(-50%);
}

.bem-vision__quote p {
	position: relative;
	max-width: 1040px;
	margin: 42px auto 0;
	color: var(--bem-navy);
	font-family: "Host Grotesk", "Poppins", sans-serif;
	font-size: clamp(30px, 4vw, 58px);
	font-weight: 700;
	line-height: 1.23;
	text-align: center;
}

.bem-mission {
	padding-bottom: 120px;
}

.bem-mission__layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	align-items: center;
	gap: 70px;
	padding-top: 70px;
}

.bem-mission__orbit {
	position: relative;
	display: grid;
	width: 260px;
	height: 260px;
	place-content: center;
	color: var(--bem-navy);
	border: 4px solid var(--bem-gold);
	border-radius: 50%;
	text-align: center;
}

.bem-mission__orbit::before,
.bem-mission__orbit::after {
	position: absolute;
	width: 18px;
	height: 18px;
	content: "";
	background: var(--bem-gold);
	border: 5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1px var(--bem-gold);
}

.bem-mission__orbit::before {
	top: 25px;
	right: 28px;
}

.bem-mission__orbit::after {
	bottom: 29px;
	left: 24px;
}

.bem-mission__orbit span {
	font-family: "Host Grotesk", sans-serif;
	font-size: 92px;
	font-weight: 800;
	line-height: 0.8;
}

.bem-mission__orbit small {
	margin-top: 13px;
	color: var(--bem-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.45;
	text-transform: uppercase;
}

.bem-mission__list {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: mission;
}

.bem-mission__list li {
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 20px;
	padding: 15px 21px;
	background: var(--bem-surface);
	border: 1px solid #ebecf2;
	border-radius: 18px;
	counter-increment: mission;
	transition: 0.2s ease;
}

.bem-mission__list li::before {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	color: var(--bem-navy);
	content: counter(mission, decimal-leading-zero);
	background: var(--bem-gold);
	border-radius: 14px;
	font-family: "Host Grotesk", sans-serif;
	font-size: 19px;
	font-weight: 800;
}

.bem-mission__list li:hover {
	background: #fff;
	box-shadow: var(--bem-shadow);
	transform: translateX(5px);
}

.bem-mission__list span {
	color: #303342;
	font-size: clamp(15px, 1.4vw, 19px);
	font-weight: 600;
	line-height: 1.55;
}

.bem-section {
	padding-block: 110px;
}

.bem-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 48px;
}

.bem-section-heading h2,
.bem-info__heading h2 {
	margin: 0;
	color: var(--bem-navy);
	font-family: "Host Grotesk", "Poppins", sans-serif;
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}

.bem-section-heading > a {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
	padding-bottom: 8px;
	color: var(--bem-navy);
	border-bottom: 2px solid var(--bem-gold);
	font-size: 12px;
	font-weight: 700;
}

.bem-section-heading > a span {
	font-size: 18px;
}

.bem-section-heading > p {
	max-width: 415px;
	margin: 0;
	color: var(--bem-muted);
	font-size: 14px;
	line-height: 1.65;
}

.bem-post-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.bem-post-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e9eaf0;
	border-radius: 22px;
	box-shadow: 0 10px 40px rgba(0, 3, 79, 0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bem-post-card:hover {
	box-shadow: var(--bem-shadow);
	transform: translateY(-8px);
}

.bem-post-card__image {
	display: block;
	overflow: hidden;
	height: 285px;
	background: linear-gradient(135deg, var(--bem-navy), var(--bem-blue));
}

.bem-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.bem-post-card:hover .bem-post-card__image img {
	transform: scale(1.045);
}

.bem-post-card__body {
	padding: 23px;
}

.bem-post-card__body > p {
	margin: 0 0 13px;
	color: #8b8e99;
	font-size: 10px;
	font-style: italic;
}

.bem-post-card__body > p span {
	margin: 0 5px;
	color: var(--bem-gold);
}

.bem-post-card h3 {
	min-height: 70px;
	margin: 0 0 20px;
	font-size: 17px;
	line-height: 1.4;
}

.bem-post-card h3 a {
	color: #242735;
}

.bem-post-card h3 a:hover {
	color: var(--bem-blue);
}

.bem-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--bem-navy);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.bem-text-link span {
	color: var(--bem-gold);
	font-size: 17px;
}

.bem-empty {
	display: flex;
	min-height: 190px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 35px;
	color: var(--bem-muted);
	background: var(--bem-surface);
	border: 1px dashed #cfd2df;
	border-radius: var(--bem-radius);
	text-align: center;
}

.bem-empty strong {
	margin-bottom: 5px;
	color: var(--bem-navy);
	font-size: 20px;
}

.bem-services {
	position: relative;
	color: #fff;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%) 0 0 / 46px 46px,
		var(--bem-navy);
}

.bem-section-heading--light h2 {
	color: #fff;
}

.bem-section-heading--light > p {
	color: rgba(255, 255, 255, 0.68);
}

.bem-service-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.bem-service-card {
	position: relative;
	display: grid;
	min-height: 320px;
	padding: 34px;
	overflow: hidden;
	color: #fff;
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--bem-radius);
	transition: 0.25s ease;
}

.bem-service-card:hover {
	color: var(--bem-navy);
	background: var(--bem-gold);
	border-color: var(--bem-gold);
	transform: translateY(-6px);
}

.bem-service-card__number {
	position: absolute;
	top: 25px;
	right: 28px;
	color: rgba(255, 255, 255, 0.23);
	font-family: "Host Grotesk", sans-serif;
	font-size: 52px;
	font-weight: 800;
}

.bem-service-card:hover .bem-service-card__number {
	color: rgba(0, 3, 79, 0.18);
}

.bem-service-card__icon {
	display: grid;
	width: 72px;
	height: 72px;
	place-items: center;
	color: var(--bem-navy);
	background: var(--bem-gold);
	border-radius: 20px;
}

.bem-service-card:hover .bem-service-card__icon {
	color: var(--bem-gold);
	background: var(--bem-navy);
}

.bem-service-card__icon svg {
	width: 35px;
	height: 35px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bem-service-card h3 {
	align-self: end;
	margin: 34px 0 8px;
	color: var(--bem-gold);
	font-family: "Host Grotesk", sans-serif;
	font-size: 30px;
	font-weight: 800;
}

.bem-service-card:hover h3 {
	color: var(--bem-navy);
}

.bem-service-card p {
	max-width: 84%;
	margin: 0;
	color: rgba(255, 255, 255, 0.73);
	font-size: 13px;
	line-height: 1.7;
}

.bem-service-card:hover p {
	color: rgba(0, 3, 79, 0.75);
}

.bem-service-card__arrow {
	position: absolute;
	right: 32px;
	bottom: 30px;
	font-size: 28px;
}

.bem-info {
	background: var(--bem-surface);
}

.bem-info__layout {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	gap: clamp(60px, 9vw, 130px);
}

.bem-info__heading {
	position: sticky;
	top: 130px;
	align-self: start;
}

.bem-info__heading p {
	max-width: 390px;
	margin: 27px 0 0;
	color: var(--bem-muted);
	font-size: 14px;
	line-height: 1.8;
}

.bem-category-list {
	display: grid;
}

.bem-category-list > a,
.bem-category-list__placeholder {
	display: grid;
	grid-template-columns: 58px 1fr auto 36px;
	align-items: center;
	gap: 20px;
	padding: 19px 12px;
	color: var(--bem-ink);
	border-bottom: 1px solid #dfe1e9;
	transition: 0.2s ease;
}

.bem-category-list > a:hover {
	padding-inline: 20px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 35px rgba(0, 3, 79, 0.08);
}

.bem-category-list__icon {
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	color: #fff;
	background: var(--bem-navy);
	border-radius: 50%;
}

.bem-category-list__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bem-category-list strong {
	font-size: 17px;
}

.bem-category-list small {
	color: #9295a0;
	font-size: 11px;
}

.bem-category-list i {
	color: var(--bem-gold);
	font-size: 22px;
	font-style: normal;
}

.bem-calendar-section {
	background:
		radial-gradient(circle at 85% 12%, rgba(214, 195, 21, 0.11), transparent 24%),
		#fff;
}

.bem-calendar {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e6ed;
	border-radius: var(--bem-radius);
	box-shadow: var(--bem-shadow);
}

.bem-calendar__toolbar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 20px 24px;
	color: #fff;
	background: var(--bem-navy);
}

.bem-calendar__toolbar h3 {
	margin: 0;
	min-width: 180px;
	font-family: "Host Grotesk", sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-align: center;
}

.bem-calendar__toolbar button {
	display: inline-flex;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	color: var(--bem-navy);
	background: var(--bem-gold);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(214, 195, 21, 0.32);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bem-calendar__toolbar button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bem-calendar__toolbar button:hover {
	color: var(--bem-navy);
	background: #fff;
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
	transform: scale(1.08);
}

.bem-calendar__toolbar button:active {
	transform: scale(0.94);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bem-calendar__toolbar button:focus-visible {
	outline: 2px solid var(--bem-gold);
	outline-offset: 3px;
}

.bem-calendar__weekdays,
.bem-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

.bem-calendar__weekdays {
	color: var(--bem-navy);
	background: #f3f4f8;
	border-bottom: 1px solid #e2e4eb;
	font-size: 11px;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}

.bem-calendar__weekdays span {
	padding: 13px 5px;
}

.bem-calendar__day {
	position: relative;
	min-height: 112px;
	padding: 12px;
	border-right: 1px solid #e9eaf0;
	border-bottom: 1px solid #e9eaf0;
}

.bem-calendar__day:nth-child(7n) {
	border-right: 0;
}

.bem-calendar__day.is-outside {
	background: #fafafd;
}

.bem-calendar__day-number {
	display: grid;
	width: 29px;
	height: 29px;
	place-items: center;
	color: #717582;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
}

.bem-calendar__day.is-today .bem-calendar__day-number {
	color: var(--bem-navy);
	background: var(--bem-gold);
}

.bem-calendar__event {
	display: block;
	width: 100%;
	margin-top: 5px;
	padding: 6px 7px;
	overflow: hidden;
	color: #fff;
	background: var(--bem-blue);
	border: 0;
	border-radius: 7px;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.25;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}

.bem-calendar__event:hover {
	color: var(--bem-navy);
	background: var(--bem-gold);
}

.bem-calendar__empty {
	display: none;
	margin: 0;
	padding: 18px 25px;
	color: var(--bem-muted);
	background: #fafafd;
	font-size: 12px;
	text-align: center;
}

.bem-calendar__empty.is-visible {
	display: block;
}

.bem-event-dialog {
	width: min(560px, calc(100% - 32px));
	padding: 40px;
	color: var(--bem-ink);
	background: #fff;
	border: 0;
	border-radius: 24px;
	box-shadow: 0 30px 100px rgba(0, 3, 79, 0.35);
}

.bem-event-dialog::backdrop {
	background: rgba(0, 2, 47, 0.75);
	backdrop-filter: blur(5px);
}

.bem-event-dialog h3 {
	margin: 0 0 8px;
	color: var(--bem-navy);
	font-family: "Host Grotesk", sans-serif;
	font-size: 31px;
}

.bem-event-dialog [data-dialog-date] {
	color: var(--bem-muted);
	font-size: 12px;
	font-weight: 700;
}

.bem-event-dialog [data-dialog-description] {
	margin-top: 22px;
	color: #4f5361;
	font-size: 14px;
	line-height: 1.7;
}

.bem-event-dialog__close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	color: #fff;
	background: var(--bem-navy);
	border: 0;
	border-radius: 50%;
	font-size: 22px;
	cursor: pointer;
}

.bem-footer {
	color: rgba(255, 255, 255, 0.74);
	background: var(--bem-navy-dark);
}

.bem-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr;
	gap: 80px;
	padding-block: 78px;
}

.bem-footer h2,
.bem-footer h3 {
	color: var(--bem-gold);
	font-family: "Host Grotesk", sans-serif;
}

.bem-footer h2 {
	margin: 22px 0 8px;
	font-size: 25px;
}

.bem-footer h3 {
	margin: 0 0 16px;
	font-size: 19px;
}

.bem-footer p,
.bem-footer a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1.8;
}

.bem-footer a:hover {
	color: var(--bem-gold);
}

.bem-footer__brand > div {
	display: flex;
	align-items: center;
	gap: 15px;
}

.bem-footer__brand img:first-child {
	width: 105px;
	height: 76px;
	object-fit: contain;
	filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.16));
}

.bem-footer__brand img:last-child {
	width: 68px;
	height: 68px;
	object-fit: contain;
}

.bem-footer__social-title {
	margin-top: 29px !important;
}

.bem-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bem-footer__socials a {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	color: var(--bem-navy);
	background: var(--bem-gold);
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.bem-footer__socials a:hover {
	color: var(--bem-gold);
	background: #fff;
}

.bem-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bem-footer__bottom > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 19px;
}

.bem-footer__bottom p {
	margin: 0;
}

/* Interior WordPress templates. */
.bem-page-hero {
	padding: 165px 24px 75px;
	color: #fff;
	background:
		linear-gradient(135deg, rgba(0, 3, 79, 0.94), rgba(21, 40, 123, 0.88)),
		url("../img/bemft-hero.png") center / cover;
}

.bem-page-hero .wp-block-post-title,
.bem-page-hero .wp-block-query-title,
.bem-page-hero > .wp-block-heading {
	max-width: 1100px;
	margin: 0 auto;
	color: #fff;
	font-family: "Host Grotesk", sans-serif;
	font-size: clamp(40px, 6vw, 78px);
	font-weight: 800;
	letter-spacing: -0.04em;
	text-align: center;
}

.bem-page-hero .wp-block-post-date,
.bem-page-hero .wp-block-post-author-name,
.bem-page-hero .wp-block-post-author-name a {
	color: rgba(255, 255, 255, 0.78);
}

.bem-page-main {
	width: min(1000px, calc(100% - 48px));
	margin-inline: auto;
	padding-block: 90px;
}

.bem-page-main .wp-block-post-content {
	font-size: 16px;
	line-height: 1.8;
}

.bem-source-intro {
	max-width: 780px;
	margin: 0 auto 52px;
	color: #555b6d;
	font-size: 18px;
	text-align: center;
}

.bem-data-section {
	margin: 56px 0;
}

.bem-data-section:first-child {
	margin-top: 0;
}

.bem-data-section > h2 {
	margin-bottom: 24px;
	color: var(--bem-navy);
	font-size: clamp(28px, 4vw, 42px);
}

.bem-data-section > h3 {
	margin: 34px 0 18px;
	color: var(--bem-blue);
}

.bem-data-grid,
.bem-person-grid,
.bem-program-grid,
.bem-release-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.bem-data-card,
.bem-person-card,
.bem-program-card,
.bem-release-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e8eaf2;
	border-radius: 20px;
	box-shadow: 0 16px 42px rgba(0, 3, 79, 0.08);
}

.bem-data-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 26px;
}

.bem-data-card__logo {
	display: grid;
	width: 100%;
	height: 128px;
	place-items: center;
	flex: 0 0 128px;
	margin-bottom: 20px;
	padding: 12px;
	overflow: hidden;
	background: #f6f7fb;
	border-radius: 15px;
}

.bem-page-main .bem-data-card__logo img {
	width: 100% !important;
	height: 104px !important;
	max-width: 100% !important;
	max-height: 104px !important;
	margin: 0;
	object-fit: contain !important;
}

.bem-data-card h3,
.bem-program-card h4,
.bem-release-card h3 {
	margin: 0 0 10px;
	color: var(--bem-navy);
	line-height: 1.3;
}

.bem-data-card p,
.bem-program-card p {
	color: #62687a;
	font-size: 14px;
	line-height: 1.7;
}

.bem-data-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 16px;
	color: var(--bem-blue);
	font-weight: 750;
}

.bem-profile-panel {
	padding: clamp(26px, 5vw, 52px);
	color: #fff;
	background: linear-gradient(135deg, var(--bem-blue), var(--bem-navy));
	border-radius: 28px;
}

.bem-profile-panel h2,
.bem-profile-panel h3,
.bem-profile-panel p {
	color: inherit;
}

.bem-profile-list {
	display: grid;
	gap: 15px;
	padding: 0;
	list-style: none;
	counter-reset: profile-item;
}

.bem-profile-list li {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 14px;
	align-items: start;
	padding: 17px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 15px;
}

.bem-profile-list li::before {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	content: counter(profile-item);
	counter-increment: profile-item;
	color: var(--bem-navy);
	background: var(--bem-gold);
	border-radius: 50%;
	font-weight: 800;
}

.bem-person-card {
	position: relative;
	min-height: 310px;
	background: var(--bem-navy);
}

.bem-person-card img {
	width: 100%;
	height: 310px;
	object-fit: cover;
	object-position: top center;
}

.bem-person-card__fallback {
	display: grid;
	height: 310px;
	place-items: center;
	color: rgba(255, 255, 255, 0.45);
	font-size: 48px;
}

.bem-person-card__body {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 55px 18px 18px;
	color: #fff;
	background: linear-gradient(transparent, rgba(0, 3, 79, 0.96));
}

.bem-person-card__body strong,
.bem-person-card__body small {
	display: block;
}

.bem-person-card__body small {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.4;
}

.bem-program-card {
	padding: 22px;
}

.bem-program-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 17px;
	object-fit: cover;
	border-radius: 13px;
}

.bem-release-card a {
	display: block;
	min-height: 100%;
	padding: 24px;
}

.bem-release-card small {
	color: #7b8090;
}

.bem-empty-data {
	padding: 24px;
	color: #676d7e;
	background: #f6f7fb;
	border: 1px dashed #cdd1df;
	border-radius: 16px;
	text-align: center;
}

.bem-history-card {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 28px;
	align-items: center;
	margin-bottom: 22px;
	padding: 26px;
	background: #f7f8fc;
	border-radius: 20px;
}

.bem-history-card img {
	width: 100%;
	max-height: 130px;
	object-fit: contain;
}

.bem-source-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.bem-source-gallery img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.bem-archive-main {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
	padding-block: 90px;
}

.bem-archive-main .wp-block-post-template {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25px;
}

.bem-archive-main .wp-block-post {
	overflow: hidden;
	padding-bottom: 25px;
	background: #fff;
	border: 1px solid #e9eaf0;
	border-radius: 22px;
	box-shadow: 0 10px 40px rgba(0, 3, 79, 0.07);
}

.bem-archive-main .wp-block-post-featured-image img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.bem-archive-main .wp-block-post-title,
.bem-archive-main .wp-block-post-excerpt,
.bem-archive-main .wp-block-post-date {
	padding-inline: 24px;
}

.bem-archive-main .wp-block-post-title {
	font-size: 21px;
}

@media (max-width: 1120px) {
	.bem-brand {
		min-width: 225px;
	}

	.bem-brand small,
	.bem-nav > a:nth-last-child(2) {
		display: none;
	}

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

	.bem-post-card__image {
		height: 320px;
	}
}

@media (max-width: 900px) {
	body.admin-bar .bem-header {
		top: 46px;
	}

	.bem-container {
		width: min(100% - 32px, 720px);
	}

	.bem-menu-toggle {
		display: block;
	}

	.bem-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 0;
		left: 0;
		display: none;
		max-height: calc(100vh - 110px);
		align-items: stretch;
		padding: 18px 24px 25px;
		overflow: auto;
		background: #fff;
		border-bottom: 1px solid #e4e5ec;
		box-shadow: 0 20px 40px rgba(0, 3, 79, 0.12);
	}

	.bem-nav.is-open {
		display: grid;
	}

	.bem-nav > a,
	.bem-nav__dropdown > button {
		width: 100%;
		padding: 12px 8px;
		text-align: left;
	}

	.bem-nav__dropdown > div {
		position: static;
		display: none;
		width: 100%;
		visibility: visible;
		margin-bottom: 8px;
		background: #f5f6fa;
		border: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	.bem-nav__dropdown.is-open > div {
		display: grid;
	}

	.bem-nav > a.bem-nav__cta {
		width: max-content;
		padding: 12px 18px;
	}

	.bem-hero__content {
		padding-top: 120px;
	}

	.bem-hero__logos {
		min-height: auto;
		padding: 20px;
	}

	.bem-mission__layout {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 45px;
	}

	.bem-mission__list {
		width: 100%;
	}

	.bem-service-grid {
		grid-template-columns: 1fr;
	}

	.bem-info__layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.bem-info__heading {
		position: static;
	}

	.bem-info__heading h2 br {
		display: none;
	}

	.bem-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}

	.bem-footer__brand {
		grid-column: 1 / -1;
	}

	.bem-archive-main .wp-block-post-template {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bem-data-grid,
	.bem-person-grid,
	.bem-program-grid,
	.bem-release-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	body.admin-bar .bem-header {
		top: 0;
	}

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

	.bem-header__inner {
		min-height: 72px;
	}

	.bem-brand {
		min-width: 0;
	}

	.bem-brand > img {
		width: 45px;
		height: 40px;
	}

	.bem-brand > img.bem-brand__cabinet {
		width: 34px;
		height: 34px;
	}

	.bem-brand strong {
		font-size: 11px;
	}

	.bem-brand small {
		display: none;
	}

	.bem-hero__content {
		padding-top: 110px;
	}

	.bem-hero__logos {
		width: calc(100vw - 40px);
		margin-bottom: 28px;
		padding: 14px;
		border-radius: 20px;
	}

	.bem-hero__logos img {
		height: 86px;
		padding: 0 12px;
	}

	.bem-hero__logos > span {
		height: 68px;
	}

	.bem-hero h1 {
		font-size: clamp(43px, 15vw, 62px);
	}

	.bem-section-band > div {
		min-height: 120px;
		gap: 18px;
	}

	.bem-section-band h2 {
		font-size: 35px;
	}

	.bem-about__intro {
		padding-block: 65px;
	}

	.bem-ribbon {
		height: 65px;
		font-size: 34px;
	}

	.bem-vision {
		padding-bottom: 75px;
	}

	.bem-vision__quote p {
		font-size: 29px;
	}

	.bem-mission {
		padding-bottom: 72px;
	}

	.bem-mission__layout {
		gap: 38px;
		padding-top: 48px;
	}

	.bem-mission__orbit {
		width: clamp(174px, 49vw, 196px);
		height: auto;
		aspect-ratio: 1;
		border-width: 3px;
		background: radial-gradient(circle, rgba(255, 224, 0, 0.09) 0 42%, transparent 43%);
		box-shadow:
			0 0 0 9px rgba(255, 224, 0, 0.08),
			0 18px 42px rgba(0, 3, 79, 0.08);
	}

	.bem-mission__orbit span {
		font-size: clamp(60px, 18vw, 68px);
	}

	.bem-mission__orbit small {
		margin-top: 10px;
		font-size: 10px;
		letter-spacing: 0.16em;
	}

	.bem-mission__orbit::before,
	.bem-mission__orbit::after {
		width: 15px;
		height: 15px;
		border-width: 4px;
		box-shadow:
			0 0 0 1px var(--bem-gold),
			0 0 0 6px rgba(255, 224, 0, 0.09);
	}

	.bem-mission__orbit::before {
		top: 14.1%;
		right: auto;
		left: 85.9%;
		transform: translate(-50%, -50%);
	}

	.bem-mission__orbit::after {
		top: 85.9%;
		bottom: auto;
		left: 14.1%;
		transform: translate(-50%, -50%);
	}

	.bem-mission__list {
		gap: 10px;
	}

	.bem-mission__list li {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		padding: 12px 14px;
		border-radius: 16px;
	}

	.bem-mission__list li::before {
		width: 42px;
		height: 42px;
		border-radius: 12px;
		font-size: 17px;
	}

	.bem-mission__list span {
		font-size: clamp(14px, 3.8vw, 16px);
		line-height: 1.48;
	}

	.bem-section {
		padding-block: 78px;
	}

	.bem-section-heading {
		display: grid;
		gap: 20px;
		margin-bottom: 35px;
	}

	.bem-section-heading h2,
	.bem-info__heading h2 {
		font-size: 42px;
	}

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

	.bem-post-card__image {
		height: 300px;
	}

	.bem-service-card {
		min-height: 340px;
		padding: 27px;
	}

	.bem-service-card p {
		max-width: 100%;
	}

	.bem-category-list > a,
	.bem-category-list__placeholder {
		grid-template-columns: 50px 1fr 25px;
		gap: 13px;
	}

	.bem-category-list small {
		display: none;
	}

	.bem-calendar__toolbar {
		gap: 12px;
		padding: 16px 14px;
	}

	.bem-calendar__toolbar button {
		width: 36px;
		height: 36px;
	}

	.bem-calendar__toolbar button svg {
		width: 16px;
		height: 16px;
	}

	.bem-calendar__toolbar h3 {
		font-size: 18px;
		min-width: auto;
	}

	.bem-calendar__day {
		min-height: 74px;
		padding: 5px;
	}

	.bem-calendar__day-number {
		width: 23px;
		height: 23px;
		font-size: 9px;
	}

	.bem-calendar__event {
		padding: 4px;
		font-size: 0;
	}

	.bem-calendar__event::before {
		display: block;
		width: 7px;
		height: 7px;
		margin: auto;
		content: "";
		background: #fff;
		border-radius: 50%;
	}

	.bem-footer__grid {
		grid-template-columns: 1fr;
		gap: 38px;
		padding-block: 60px;
	}

	.bem-footer__brand {
		grid-column: auto;
	}

	.bem-footer__bottom > div {
		display: grid;
		gap: 10px;
	}

	.bem-data-grid,
	.bem-person-grid,
	.bem-program-grid,
	.bem-release-grid,
	.bem-source-gallery {
		grid-template-columns: 1fr;
	}

	.bem-history-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.bem-archive-main .wp-block-post-template {
		grid-template-columns: 1fr;
	}
}

/* Final parity overrides must follow the base Tourze rules. */
.bem-release-filter > button[type="submit"] {
	align-self: end;
	min-height: 46px;
	padding: 13px 24px;
	color: #fff;
	background: var(--bem-navy);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 10px 20px rgba(0, 3, 79, 0.16);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

@media (max-width: 640px) {
	.bem-history-intro,
	.bem-bidang-description {
		text-align: left;
	}
}

/* Keep all public-facing typography sans-serif. */
body,
body button,
body input,
body select,
body textarea,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p,
body a,
body span:not(.dashicons),
body strong,
body small,
body label,
body li {
	font-family: "Poppins", Arial, sans-serif !important;
}

/* Transparent PNG staff portraits must remain transparent. */
.bem-cabinet-member,
.bem-staff-card {
	overflow: visible;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

.bem-cabinet-member img,
.bem-staff-card img {
	object-fit: contain;
	background: transparent;
}

.bem-cabinet-member__fallback,
.bem-staff-card__fallback {
	color: #a9afbf;
	background: #f1f3f7;
	border-radius: 12px;
}

.bem-cabinet-member__content,
.bem-staff-card__content {
	position: static;
	padding: 12px 4px 0;
	color: var(--bem-navy);
	background: transparent;
	text-align: center;
}

.bem-cabinet-member small,
.bem-staff-card small {
	color: #707587;
}

/* Unified Laravel-style BPH and bidang/unit cards. */
.bem-staff-grid {
	--bem-member-card-width: 235px;
	align-items: flex-start;
}

.bem-staff-grid:not(.bem-staff-grid--rank-1) {
	--bem-member-card-width: 210px;
}

.bem-cabinet-rank {
	--bem-member-card-width: 240px;
	align-items: flex-start;
}

.bem-cabinet-rank:not(.bem-cabinet-rank--1) {
	--bem-member-card-width: 210px;
}

.bem-staff-grid .bem-staff-card,
.bem-cabinet-rank .bem-cabinet-member {
	position: relative;
	width: var(--bem-member-card-width);
	max-width: 100%;
	flex: 0 0 var(--bem-member-card-width);
	align-self: flex-start;
	overflow: hidden;
	border-radius: 12px;
}

.bem-staff-grid .bem-staff-card::after,
.bem-cabinet-rank .bem-cabinet-member::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 48%;
	content: "";
	background: linear-gradient(to top, rgba(0, 3, 79, 0.9), transparent);
	pointer-events: none;
}

.bem-staff-grid .bem-staff-card__content,
.bem-cabinet-rank .bem-cabinet-member__content {
	position: absolute;
	z-index: 1;
	right: 18px;
	bottom: 16px;
	left: 18px;
	padding: 0;
	color: #fff;
	background: transparent;
	font-family: "DM Sans", sans-serif !important;
	text-align: left;
}

.bem-staff-grid .bem-staff-card__name,
.bem-cabinet-rank .bem-cabinet-member__name {
	display: block;
	font-size: 20px;
	font-family: "DM Sans", sans-serif !important;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.05;
}

.bem-staff-grid .bem-staff-card__role,
.bem-cabinet-rank .bem-cabinet-member__role {
	display: block;
	margin-top: 5px;
	color: #fff;
	font-size: 13px;
	font-family: "DM Sans", sans-serif !important;
	font-weight: 600;
	line-height: 1.25;
}

.bem-staff-grid .bem-staff-card__image,
.bem-cabinet-rank .bem-cabinet-member__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: auto;
	object-fit: initial;
	border-radius: 12px;
}

.bem-staff-grid .bem-staff-card__fallback,
.bem-cabinet-rank .bem-cabinet-member__fallback {
	display: grid;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 12px;
}

@media (max-width: 620px) {
	.bem-staff-grid,
	.bem-staff-grid:not(.bem-staff-grid--rank-1),
	.bem-cabinet-rank,
	.bem-cabinet-rank:not(.bem-cabinet-rank--1) {
		--bem-member-card-width: 235px;
	}

	.bem-staff-grid .bem-staff-card__content,
	.bem-cabinet-rank .bem-cabinet-member__content {
		right: 16px;
		bottom: 14px;
		left: 16px;
	}

	.bem-staff-grid .bem-staff-card__name,
	.bem-cabinet-rank .bem-cabinet-member__name {
		font-size: 18px;
	}

	.bem-staff-grid .bem-staff-card__role,
	.bem-cabinet-rank .bem-cabinet-member__role {
		margin-top: 4px;
		font-size: 12px;
	}
}

/* Laravel-style nested Bidang dan Unit submenu. */
.bem-nav__dropdown > div {
	z-index: 20;
	width: 225px;
	padding: 8px;
	row-gap: 1px;
}

.bem-nav__dropdown > div > a,
.bem-nav__nested > button {
	display: flex;
	min-height: 38px;
	align-items: center;
	padding: 7px 12px;
	line-height: 1.3;
}

.bem-nav__nested {
	position: relative;
}

.bem-nav__nested > button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	color: #333746;
	background: transparent;
	border: 0;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.bem-nav__nested > button:hover,
.bem-nav__nested.is-open > button {
	color: var(--bem-navy);
	background: #f4f5fb;
}

.bem-nav__nested > button span {
	color: var(--bem-gold);
	font-size: 18px;
	transition: transform 0.2s ease;
}

.bem-nav__nested--linked {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 38px;
	align-items: center;
}

.bem-nav__nested--linked > .bem-nav__nested-link {
	display: flex;
	min-height: 38px;
	align-items: center;
	padding: 7px 4px 7px 12px;
	color: #333746;
	border-radius: 10px 0 0 10px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.bem-nav__nested--linked > .bem-nav__nested-toggle {
	display: grid;
	width: 38px;
	min-height: 38px;
	padding: 0;
	place-items: center;
	border-radius: 0 10px 10px 0;
}

.bem-nav__nested--linked > .bem-nav__nested-toggle span {
	margin: 0;
}

.bem-nav__nested--linked:hover > .bem-nav__nested-link,
.bem-nav__nested--linked:focus-within > .bem-nav__nested-link,
.bem-nav__nested--linked.is-open > .bem-nav__nested-link {
	color: var(--bem-navy);
	background: #f4f5fb;
}

.bem-nav__nested > div {
	position: absolute;
	top: -8px;
	left: calc(100% - 2px);
	display: grid;
	width: 320px;
	max-height: none;
	padding: 8px;
	row-gap: 1px;
	overflow: visible;
	visibility: hidden;
	background: #fff;
	border: 1px solid #e7e8ef;
	border-radius: 16px;
	box-shadow: var(--bem-shadow);
	opacity: 0;
	transform: translateX(8px);
	transition: 0.2s ease;
}

.bem-nav__nested:hover > div,
.bem-nav__nested:focus-within > div,
.bem-nav__nested.is-open > div {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}

.bem-nav__nested > div a {
	display: flex;
	min-height: 34px;
	align-items: center;
	padding: 6px 11px;
	font-size: 11px;
	line-height: 1.3;
}

@media (max-width: 900px) {
	.bem-nav__dropdown > div {
		width: 100%;
		padding: 8px;
	}

	.bem-nav__nested > button {
		min-height: 42px;
	}

	.bem-nav__nested > button span {
		transform: rotate(90deg);
	}

	.bem-nav__nested--linked {
		grid-template-columns: minmax(0, 1fr) 44px;
	}

	.bem-nav__nested--linked > .bem-nav__nested-link {
		min-height: 42px;
		padding: 7px 12px;
		border-radius: 10px;
	}

	.bem-nav__nested--linked > .bem-nav__nested-toggle {
		width: 44px;
		min-height: 42px;
	}

	.bem-nav__nested > div {
		position: static;
		display: none;
		grid-column: 1 / -1;
		width: 100%;
		max-height: none;
		margin: 4px 0 8px;
		padding: 8px 8px 8px 16px;
		visibility: visible;
		background: #e9ebf3;
		border: 0;
		border-radius: 10px;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	.bem-nav__nested.is-open > div {
		display: grid;
	}
}

@media (min-width: 901px) and (max-width: 1600px) {
	.bem-nav__nested > div {
		right: calc(100% - 2px);
		left: auto;
		transform: translateX(-8px);
	}

	.bem-nav__nested:hover > div,
	.bem-nav__nested:focus-within > div,
	.bem-nav__nested.is-open > div {
		transform: translateX(0);
	}
}

/* Match the Laravel sticky header: full-width at the top, floating after scroll. */
.bem-header {
	box-sizing: border-box;
	height: 80px;
	max-width: 100vw;
	margin: 0 auto;
	border: 1px solid transparent;
	border-bottom-color: rgba(0, 3, 79, 0.08);
	will-change: top, right, left, max-width, height, border-radius, box-shadow;
	transition:
		top 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		right 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		left 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		max-width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		height 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.38s ease,
		border-radius 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		background-color 0.38s ease;
}

.bem-header.is-scrolled {
	top: 16px;
	right: 16px;
	left: 16px;
	width: auto;
	max-width: 1540px;
	height: 68px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 999px;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.15);
}

.bem-header .bem-header__inner {
	width: 100%;
	max-width: none;
	min-height: 100%;
	padding-right: 40px;
	padding-left: 40px;
	transition:
		min-height 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		padding-right 0.48s cubic-bezier(0.22, 1, 0.36, 1),
		padding-left 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.bem-header.is-scrolled .bem-header__inner {
	min-height: 68px;
	padding-right: 32px;
	padding-left: 32px;
}

.bem-header .bem-brand {
	min-width: 330px;
	gap: 12px;
}

.bem-header .bem-brand > img {
	width: auto;
	height: 45px;
	transition: height 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.bem-header .bem-brand > img.bem-brand__cabinet {
	width: auto;
	height: 40px;
	padding-left: 0;
	border-left: 0;
	transition: height 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.bem-header .bem-brand > span {
	margin-left: 4px;
}

.bem-header .bem-nav {
	align-self: stretch;
	gap: 4px;
}

.bem-header .bem-nav__dropdown {
	display: flex;
	align-items: center;
}

.bem-header .bem-nav__dropdown > div {
	top: calc(100% - 2px);
}

.bem-header .bem-nav > a,
.bem-header .bem-nav__dropdown > button {
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 12px;
}

.bem-header .bem-nav > a:first-child {
	background: #f1f1f1;
}

.bem-header.is-scrolled .bem-brand > img {
	height: 40px;
}

.bem-header.is-scrolled .bem-brand > img.bem-brand__cabinet {
	height: 40px;
}

body.admin-bar .bem-header.is-scrolled {
	top: 48px;
}

@media (max-width: 900px) {
	.bem-header.is-scrolled {
		top: 10px;
		right: 10px;
		left: 10px;
		height: 68px;
		max-width: none;
		border-radius: 19px;
	}

	.bem-header .bem-header__inner,
	.bem-header.is-scrolled .bem-header__inner {
		min-height: 68px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.bem-header .bem-brand {
		min-width: 0;
	}

	.bem-header .bem-brand > img {
		width: 45px;
		height: 40px;
	}

	.bem-header .bem-brand > img.bem-brand__cabinet {
		width: 34px;
		height: 34px;
	}

	.bem-header .bem-nav__dropdown {
		display: block;
	}

	.bem-header.is-scrolled .bem-nav {
		top: calc(100% + 8px);
		border: 1px solid rgba(0, 3, 79, 0.08);
		border-radius: 18px;
	}

	body.admin-bar .bem-header.is-scrolled {
		top: 58px;
	}
}

@media (max-width: 620px) {
	body.admin-bar .bem-header.is-scrolled {
		top: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bem-header,
	.bem-header .bem-header__inner,
	.bem-header .bem-brand > img,
	.bem-header .bem-brand > img.bem-brand__cabinet {
		transition: none;
	}
}

/* Retool-inspired editorial footer. */
.bem-footer {
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(circle at 82% 125%, rgba(38, 59, 145, 0.56), transparent 42%),
		var(--bem-navy-dark);
	border-top: 3px solid var(--bem-gold);
}

.bem-footer__shell {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
	padding: clamp(56px, 6vw, 78px) 0 20px;
}

.bem-footer__directory {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(230px, 1.25fr);
	gap: 0;
}

.bem-footer__column {
	min-width: 0;
	padding: 0 20px 18px;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.bem-footer .bem-footer__label {
	margin: 0 0 18px;
	color: var(--bem-gold);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.bem-footer__column > a {
	display: block;
	width: fit-content;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(13px, 1vw, 16px);
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.4;
	transition: color 0.2s ease, transform 0.2s ease;
}

.bem-footer__column > a:hover {
	color: var(--bem-gold-light);
	transform: translateX(3px);
}

.bem-footer .bem-footer__contact > p:not(.bem-footer__label) {
	max-width: 290px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 11px;
	line-height: 1.65;
}

.bem-footer__email {
	overflow-wrap: anywhere;
}

.bem-footer__column > .bem-footer__cta {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	margin-top: 22px;
	padding: 10px 19px;
	color: var(--bem-navy);
	background: var(--bem-gold);
	border: 1px solid var(--bem-gold);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.bem-footer__column > .bem-footer__cta:hover {
	color: var(--bem-navy);
	background: #fff;
	border-color: #fff;
	transform: none;
}

.bem-footer .bem-footer__wordmark {
	margin: clamp(44px, 5vw, 62px) 0 14px;
	color: #fff;
	font-family: "Poppins", Arial, sans-serif !important;
	font-size: clamp(60px, 11.3vw, 180px);
	font-weight: 800;
	letter-spacing: -0.065em;
	line-height: 0.82;
	white-space: nowrap;
}

.bem-footer__legal {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.bem-footer .bem-footer__legal p,
.bem-footer .bem-footer__legal a {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 9px;
	font-weight: 550;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-transform: uppercase;
}

.bem-footer__legal p:nth-child(2) {
	color: var(--bem-gold);
	text-align: center;
}

.bem-footer__legal a {
	justify-self: end;
}

.bem-footer__legal a:hover {
	color: #e9e9e2;
}

@media (max-width: 1100px) {
	.bem-footer__directory {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 48px;
	}

	.bem-footer__contact {
		grid-column: span 2;
	}
}

@media (max-width: 700px) {
	.bem-footer__shell {
		width: min(100% - 28px, 620px);
		padding-top: 46px;
	}

	.bem-footer__directory {
		grid-template-columns: 1fr 1fr;
		row-gap: 24px;
	}

	.bem-footer__column {
		padding: 16px 14px 20px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		border-left: 0;
	}

	.bem-footer__contact {
		grid-column: 1 / -1;
	}

	.bem-footer .bem-footer__wordmark {
		margin-top: 38px;
		font-size: 12.1vw;
	}

	.bem-footer__legal {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.bem-footer__legal p:nth-child(2) {
		text-align: left;
	}

	.bem-footer__legal a {
		justify-self: start;
	}
}

/* Linked Info Cah Teknik navigation: label opens the hub, arrow opens categories. */
.bem-header .bem-nav__dropdown--linked {
	gap: 0;
}

.bem-header .bem-nav__dropdown--linked > .bem-nav__dropdown-link {
	padding: 12px 3px 12px 14px;
	color: #252838;
	border-radius: 8px 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.bem-header .bem-nav__dropdown--linked > .bem-nav__dropdown-toggle {
	min-width: 25px;
	padding: 12px 11px 12px 3px;
	border-radius: 0 8px 8px 0;
}

.bem-header .bem-nav__dropdown--linked > .bem-nav__dropdown-toggle span {
	margin-left: 0;
}

.bem-header .bem-nav__dropdown--linked:hover > .bem-nav__dropdown-link,
.bem-header .bem-nav__dropdown--linked:focus-within > .bem-nav__dropdown-link {
	color: var(--bem-blue);
}

/* Fixed article-preview frames keep portrait uploads from stretching cards. */
.bem-post-card__image,
.bem-info-card__media,
.bem-archive-main .wp-block-post-featured-image {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(135deg, var(--bem-navy), var(--bem-blue));
}

.bem-post-card__image img,
.bem-info-card__media img,
.bem-archive-main .wp-block-post-featured-image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	object-fit: cover !important;
	object-position: 50% 50% !important;
}

.wp-block-post-author-name {
	display: none !important;
}

/* Combined Info Cah Teknik browser. */
.bem-info-hub {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
	padding: 54px 0 84px;
	scroll-margin-top: 96px;
}

.bem-info-filter {
	margin-bottom: 24px;
	padding: clamp(17px, 2.2vw, 24px);
	background: #fff;
	border: 1px solid #e8eaf2;
	border-radius: 17px;
	box-shadow: 0 10px 30px rgba(0, 3, 79, 0.07);
}

.bem-info-filter__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

.bem-info-filter__heading span {
	display: block;
	margin-bottom: 3px;
	color: var(--bem-blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bem-info-filter__heading h2 {
	margin: 0;
	color: var(--bem-navy);
	font-size: clamp(20px, 2.2vw, 27px);
	font-weight: 800;
	letter-spacing: -0.035em;
}

.bem-info-filter__heading > button {
	padding: 0 0 4px;
	color: #6d7180;
	background: transparent;
	border: 0;
	border-bottom: 1px solid currentColor;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.bem-info-filter__fields {
	display: grid;
	grid-template-columns: 5fr 4fr 3fr;
	gap: 12px;
}

.bem-info-filter__fields label > span {
	display: block;
	margin-bottom: 6px;
	color: #667085;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bem-info-filter__fields input,
.bem-info-filter__fields select {
	width: 100%;
	min-height: 42px;
	padding: 0 14px;
	color: #344054;
	background: #fff;
	border: 1px solid #dfe5ee;
	border-radius: 999px;
	outline: 0;
	font-size: 13px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bem-info-filter__fields input:focus,
.bem-info-filter__fields select:focus {
	border-color: var(--bem-blue);
	box-shadow: 0 0 0 4px rgba(38, 59, 145, 0.1);
}

.bem-info-filter__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 12px;
}

.bem-info-filter__actions button {
	min-height: 39px;
	padding: 9px 18px;
	color: #fff;
	background: var(--bem-blue);
	border: 0;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	cursor: pointer;
}

.bem-info-results {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 18px;
}

.bem-info-results p {
	margin: 0;
	color: #727789;
	font-size: 11px;
	font-weight: 650;
}

.bem-info-results strong {
	color: var(--bem-navy);
}

@media (min-width: 901px) {
	.bem-info-filter {
		display: grid;
		grid-template-columns: minmax(150px, 0.9fr) minmax(0, 5fr) auto;
		gap: 16px;
		align-items: end;
	}

	.bem-info-filter__heading {
		display: grid;
		gap: 5px;
		align-self: center;
		justify-content: stretch;
		margin: 0;
	}

	.bem-info-filter__heading span {
		display: none;
	}

	.bem-info-filter__heading h2 {
		font-size: 19px;
		line-height: 1.15;
	}

	.bem-info-filter__heading > button {
		justify-self: start;
	}

	.bem-info-filter__actions {
		margin: 0;
	}

	.bem-info-filter__actions button {
		min-height: 42px;
		white-space: nowrap;
	}
}

.bem-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.bem-info-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e8eaf2;
	border-radius: 20px;
	box-shadow: 0 12px 34px rgba(0, 3, 79, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bem-info-card[hidden] {
	display: none;
}

.bem-info-card:hover {
	box-shadow: 0 22px 50px rgba(0, 3, 79, 0.14);
	transform: translateY(-5px);
}

.bem-info-card__media img {
	transition: transform 0.4s ease;
}

.bem-info-card:hover .bem-info-card__media img {
	transform: scale(1.04);
}

.bem-info-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.bem-info-card__meta {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.bem-info-card__meta span {
	padding: 6px 10px;
	color: var(--bem-blue);
	background: rgba(38, 59, 145, 0.08);
	border-radius: 999px;
	font-size: 9px;
	font-weight: 800;
}

.bem-info-card__meta time {
	color: #8b8e99;
	font-size: 9px;
	font-weight: 650;
}

.bem-info-card h3 {
	margin: 0 0 12px;
	font-size: 17px;
	line-height: 1.4;
}

.bem-info-card h3 a {
	color: var(--bem-navy);
	font-weight: 800;
}

.bem-info-card__body > p {
	margin: 0 0 20px;
	color: #676c7d;
	font-size: 12px;
	line-height: 1.7;
}

.bem-info-card__link {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	margin-top: auto;
	color: var(--bem-blue);
	font-size: 11px;
	font-weight: 800;
}

.bem-info-empty {
	margin: 30px 0 0;
	padding: 28px;
	color: #687084;
	background: #f5f6fa;
	border-radius: 18px;
	text-align: center;
}

.bem-info-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 38px;
}

.bem-info-pagination button {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	color: var(--bem-navy);
	background: #fff;
	border: 1px solid #dfe2eb;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 800;
	cursor: pointer;
}

.bem-info-pagination button.is-active,
.bem-info-pagination button:hover {
	color: #fff;
	background: var(--bem-navy);
	border-color: var(--bem-navy);
}

@media (max-width: 900px) {
	.bem-header .bem-nav__dropdown--linked {
		display: grid;
		grid-template-columns: 1fr 44px;
		align-items: center;
	}

	.bem-header .bem-nav__dropdown--linked > .bem-nav__dropdown-link {
		padding: 12px 14px;
		border-radius: 9px;
	}

	.bem-header .bem-nav__dropdown--linked > .bem-nav__dropdown-toggle {
		display: grid;
		width: 44px;
		min-height: 42px;
		padding: 0;
		place-items: center;
	}

	.bem-header .bem-nav__dropdown--linked > div {
		grid-column: 1 / -1;
	}

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

@media (max-width: 620px) {
	.bem-info-hub {
		width: min(100% - 28px, 540px);
		padding: 36px 0 64px;
	}

	.bem-info-filter__heading {
		align-items: flex-start;
		margin-bottom: 14px;
	}

	.bem-info-filter__fields,
	.bem-info-grid {
		grid-template-columns: 1fr;
	}

	.bem-info-filter__actions button {
		width: 100%;
	}

	.bem-info-filter {
		padding: 16px;
		border-radius: 15px;
	}

	.bem-info-filter__fields {
		grid-template-columns: 1fr 1fr;
	}

	.bem-info-filter__fields label:first-child {
		grid-column: 1 / -1;
	}
}
