/**
 * KHRTF Theme Custom Styles
 */

html {
	overflow-x: clip;
}

body {
	font-family: 'Vazirmatn', Tahoma, sans-serif;
	overflow-x: clip;
}

/* Container width only. Horizontal padding comes from Tailwind (px-4 / sm:px-6 / lg:px-8), same as the React app. */
.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 640px) {
	.container {
		max-width: 640px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 768px;
	}
}

@media (min-width: 1024px) {
	.container {
		max-width: 1024px;
	}
}

@media (min-width: 1280px) {
	.container {
		max-width: 1280px;
	}
}

.animate-fadeIn {
	animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Provided services stats */
.provided-services__head {
	text-align: center;
	margin-bottom: 1.75rem;
}

.provided-services__title {
	margin: 0;
	color: #111827;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.6;
}

.provided-services__updated {
	margin: 0.35rem 0 0;
	color: #6B7280;
	font-size: 0.9rem;
}

.provided-services__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.provided-card {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	min-height: 168px;
	background: #fff;
	border-radius: 0.85rem;
	overflow: hidden;
	box-shadow: 0 10px 28px -18px rgba(17, 24, 39, 0.45);
	border: 1px solid rgba(17, 24, 39, 0.06);
}

.provided-card__rail {
	flex: 0 0 3.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.4;
	padding: 1rem 0;
}

.provided-card__rail span {
	display: block;
	max-height: 100%;
}

.provided-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.15rem;
	padding: 1.25rem 0.75rem;
	text-align: center;
}

.provided-card__stat strong {
	display: block;
	color: #111827;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.2;
	font-variant-numeric: tabular-nums;
	min-height: 1.35em;
	transition: transform 0.2s ease;
}

.provided-card__stat strong.js-count-up {
	will-change: contents;
}

.provided-card__stat span {
	display: block;
	margin-top: 0.15rem;
	color: #4B5563;
	font-size: 0.78rem;
}

/* Intentional content markers — no decorative Material icon slots */
.khrtf-mono {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 0.85rem;
	background: #243028;
	color: #fff;
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
	line-height: 1;
	flex-shrink: 0;
}

.khrtf-mono--lg {
	width: 4rem;
	height: 4rem;
	font-size: 1.4rem;
	border-radius: 1rem;
}

.khrtf-block-title {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 1rem;
	color: #111827;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.4;
}

.khrtf-block-title__mark {
	display: block;
	width: 0.28rem;
	height: 1.15rem;
	border-radius: 999px;
	background: #5C7A4E;
	flex-shrink: 0;
}

.khrtf-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.khrtf-list__item {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	color: #4B5563;
	font-size: 0.95rem;
	line-height: 1.7;
	text-align: right;
}

.khrtf-list__mark {
	display: block;
	width: 0.45rem;
	height: 0.45rem;
	margin-top: 0.55rem;
	border-radius: 999px;
	background: #5C7A4E;
	flex-shrink: 0;
}

.khrtf-eyebrow {
	display: inline-block;
	margin-bottom: 0.75rem;
	color: #5C7A4E;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.khrtf-panel {
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 1rem;
	padding: 1.35rem 1.25rem;
}

@media (max-width: 1024px) {
	.provided-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.provided-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
	}

	.provided-card {
		min-height: 9.5rem;
	}

	.provided-card__rail {
		flex-basis: 2.15rem;
		font-size: 0.72rem;
		padding: 0.55rem 0;
		line-height: 1.25;
	}

	.provided-card__body {
		gap: 0.55rem;
		padding: 0.7rem 0.45rem;
	}

	.provided-card__stat strong {
		font-size: 0.95rem;
	}

	.provided-card__stat span {
		font-size: 0.68rem;
	}
}

/* Partner logos under homepage stats */
.partners-section {
	margin-top: 0.5rem;
	padding: 2.25rem 0 2.75rem;
	background: #f4f5f7;
}

.partners-section__title {
	margin: 0 0 1.25rem;
	text-align: center;
	color: #111827;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.5;
}

.partners-section__bar {
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: 1.75rem;
	box-shadow: 0 8px 30px rgba(17, 24, 39, 0.04);
	padding: 1.25rem 1.5rem;
}

.partners-section__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 1.75rem;
}

.partners-section__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 8.5rem;
}

.partners-section__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 5.5rem;
	padding: 0.35rem;
	opacity: 0.92;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

a.partners-section__link:hover,
a.partners-section__link:focus-visible {
	opacity: 1;
	transform: translateY(-2px);
}

.partners-section__link img {
	display: block;
	max-width: 7.5rem;
	max-height: 4.75rem;
	width: auto;
	height: auto;
	object-fit: contain;
}

.partners-section__name {
	color: #374151;
	font-size: 0.85rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}

@media (max-width: 640px) {
	.partners-section {
		padding: 1.5rem 0 1.75rem;
	}

	.partners-section__title {
		font-size: 1.15rem;
		margin-bottom: 0.85rem;
	}

	.partners-section__bar {
		border-radius: 1rem;
		padding: 0.75rem 0.5rem;
		overflow: hidden;
	}

	.partners-section__list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.35rem;
	}

	.partners-section__item {
		flex: none;
		flex-basis: auto;
	}

	.partners-section__link {
		min-height: 3.75rem;
		padding: 0.25rem;
	}

	.partners-section__link img {
		max-width: 4.75rem;
		max-height: 2.85rem;
	}

	.partners-section__name {
		font-size: 0.72rem;
		line-height: 1.35;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
}

/* Shareholders */
.share-section {
	padding: 3.5rem 0 4.5rem;
	background: #fff;
}

.share-section__head {
	max-width: 42rem;
	margin: 0 auto 1.75rem;
	text-align: center;
}

.share-section__title {
	margin: 0;
	color: #111827;
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1.4;
}

.share-section__lead {
	margin: 0.75rem 0 0;
	color: #4b5563;
	font-size: 1rem;
	line-height: 1.9;
}

.share-split {
	max-width: 46rem;
	margin: 0 auto 2rem;
}

.share-split__labels {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.65rem;
	color: #374151;
	font-size: 0.92rem;
	font-weight: 700;
}

.share-split__labels p {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0;
}

.share-split__labels strong {
	color: #111827;
	font-size: 1.05rem;
}

.share-split__dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	display: inline-block;
}

.share-split__dot--public { background: #243028; }
.share-split__dot--private { background: #5c7a4e; }

.share-split__track {
	display: flex;
	height: 0.85rem;
	border-radius: 999px;
	overflow: hidden;
	background: #e5e7eb;
}

.share-split__public { background: #243028; }
.share-split__private { background: #5c7a4e; }

.share-groups {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem 2rem;
}

.share-group__label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0 0 0.9rem;
	padding-bottom: 0.55rem;
	border-bottom: 2px solid #243028;
	color: #111827;
	font-size: 1.05rem;
	font-weight: 800;
}

.share-group__label--private {
	border-bottom-color: #5c7a4e;
}

.share-group__label span {
	color: #5c7a4e;
	font-size: 0.95rem;
}

.share-group__grid {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.share-card {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.85rem 0.95rem;
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 1rem;
}

.share-groups--home .share-card {
	background: #f7f8f6;
}

.share-card__logo {
	width: 4.25rem;
	height: 4.25rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 0.8rem;
	overflow: hidden;
}

.share-card__logo img {
	max-width: 3.4rem;
	max-height: 3.4rem;
	width: auto;
	height: auto;
	object-fit: contain;
}

.share-card__logo span {
	font-weight: 800;
	font-size: 1.3rem;
	color: #243028;
}

.share-card__body {
	min-width: 0;
	flex: 1;
}

.share-card__name {
	display: block;
	margin: 0;
	color: #111827;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.6;
}

a.share-card__name:hover {
	color: #5c7a4e;
}

.share-card__value {
	margin: 0.15rem 0 0.4rem;
	color: #111827;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.share-card__value span {
	margin-right: 0.1rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: #5c7a4e;
}

.share-card__meter {
	display: flex;
	justify-content: flex-start;
	direction: rtl;
	height: 0.35rem;
	border-radius: 999px;
	background: #e5e7eb;
	overflow: hidden;
}

.share-card__meter span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: #5c7a4e;
}

.share-section__more {
	margin-top: 1.75rem;
	text-align: center;
}

.share-section__more a {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	border-radius: 0.7rem;
	background: #5c7a4e;
	color: #fff;
	font-weight: 700;
}

.share-section__more a:hover {
	background: #243028;
}

.share-page-hero {
	background: #243028;
	color: #fff;
	padding: 3rem 0 2.75rem;
	margin-bottom: 2.5rem;
}

.share-page-hero h1 {
	margin: 0.4rem 0 0;
	font-size: 2rem;
	font-weight: 800;
}

.share-page-hero__crumb {
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
}

.share-page-hero__crumb a:hover { color: #fff; }

.share-page-hero__lead {
	max-width: 40rem;
	margin: 0.8rem auto 0;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.9;
}

.share-page {
	padding-bottom: 4.5rem;
}

.share-page__intro {
	max-width: 46rem;
	margin: 0 auto 1.5rem;
	text-align: center;
	color: #4b5563;
	line-height: 1.9;
}

@media (max-width: 900px) {
	.share-groups {
		grid-template-columns: 1fr;
	}
}

/* Hero Swiper Styles */
.hero-section {
	isolation: isolate;
	background: transparent;
	overflow: hidden;
	border-radius: 1rem;
}

.hero-swiper {
	position: relative;
	overflow: hidden;
	width: 100%;
	/* Shared equal height for every slide layout */
	height: 480px;
}

.hero-swiper .swiper-wrapper {
	height: 100%;
}

.hero-swiper .swiper-slide,
.hero-swiper .hero-slide {
	height: 100% !important;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	background-color: var(--hero-bg, #5C7A4E);
	color: var(--hero-text, #FFFFFF);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-swiper .hero-slide-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: rgba(0, 0, 0, var(--hero-overlay, 0.45));
}

.hero-swiper .hero-slide-inner {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	min-height: 100%;
	display: flex;
	align-items: center;
	padding: 2rem 4.25rem 3.25rem;
	box-sizing: border-box;
}

.hero-swiper .hero-slide-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.75rem 2.5rem;
	align-items: center;
	width: 100%;
}

.hero-swiper .hero-slide-grid--single {
	grid-template-columns: minmax(0, 1fr);
}

.hero-swiper .hero-slide--full-text .hero-slide-copy,
.hero-swiper .hero-slide--full-image .hero-slide-copy {
	max-width: 42rem;
	margin-inline: auto;
	width: 100%;
}

.hero-swiper .hero-slide--full-text .hero-slide-inner,
.hero-swiper .hero-slide--full-image .hero-slide-inner {
	justify-content: center;
}

.hero-swiper .hero-slide-copy {
	min-width: 0;
	max-width: 100%;
	text-align: right;
	position: relative;
	z-index: 2;
}

.hero-swiper .hero-slide-title {
	margin: 0 0 1rem;
	color: inherit;
	font-weight: 700;
	font-size: clamp(1.25rem, 2.2vw, 2rem);
	line-height: 1.45;
	text-wrap: balance;
	overflow-wrap: break-word;
	word-break: normal;
	hyphens: none;
}

.hero-swiper .hero-slide-desc {
	margin: 0 0 1.5rem;
	max-width: 36rem;
	color: inherit;
	opacity: 0.9;
	font-size: clamp(0.875rem, 1.1vw, 1.05rem);
	line-height: 1.85;
	text-align: right;
	overflow-wrap: break-word;
	word-break: normal;
	hyphens: none;
}

.hero-swiper .hero-slide-actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	direction: rtl;
}

.hero-swiper .hero-slide-media {
	min-width: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	z-index: 1;
	isolation: isolate;
}

.hero-swiper .hero-slide-image {
	display: block;
	width: 100%;
	max-width: 28rem;
	height: auto;
	max-height: 360px;
	object-fit: contain;
	object-position: center;
}

.hero-swiper .hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.625rem 1.25rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
	white-space: nowrap;
}

.hero-swiper .hero-btn-primary {
	background-color: #ffffff;
	color: #243028;
	border: 2px solid #ffffff;
}

.hero-swiper .hero-btn-primary:hover,
.hero-swiper .hero-btn-primary:focus-visible {
	background-color: #F3F4F6;
	color: #243028;
	border-color: #F3F4F6;
}

.hero-swiper .hero-btn-secondary {
	background-color: transparent;
	color: var(--hero-text, #FFFFFF);
	border: 2px solid currentColor;
}

.hero-swiper .hero-btn-secondary:hover,
.hero-swiper .hero-btn-secondary:focus-visible {
	background-color: rgba(255, 255, 255, 0.12);
	color: var(--hero-text, #FFFFFF);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
	color: #1F2937;
	background: #ffffff;
	width: 44px;
	height: 44px;
	margin-top: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.08);
	z-index: 30;
	transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
	background: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
	transform: translateY(-50%);
}

.hero-swiper .swiper-button-next {
	left: 10px;
	right: auto;
}

.hero-swiper .swiper-button-prev {
	right: 10px;
	left: auto;
}

.hero-swiper .swiper-pagination {
	bottom: 14px;
	z-index: 25;
}

.hero-swiper .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.55;
	width: 12px;
	height: 12px;
	transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
	background: #ffffff;
	opacity: 1;
	width: 30px;
	border-radius: 6px;
}

/* One icon only — hide Swiper's injected SVG so ::after is the single glyph */
.hero-swiper .swiper-button-next svg,
.hero-swiper .swiper-button-prev svg,
.board-swiper .swiper-button-next svg,
.board-swiper .swiper-button-prev svg {
	display: none !important;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after,
.board-swiper .swiper-button-next::after,
.board-swiper .swiper-button-prev::after {
	font-family: "Material Icons Outlined" !important;
	font-size: 22px !important;
	font-weight: normal !important;
	letter-spacing: normal;
	text-transform: none;
	line-height: 1;
	font-feature-settings: "liga";
	-webkit-font-feature-settings: "liga";
}

.hero-swiper .swiper-button-next::after,
.board-swiper .swiper-button-next::after {
	content: "chevron_left" !important;
}

.hero-swiper .swiper-button-prev::after,
.board-swiper .swiper-button-prev::after {
	content: "chevron_right" !important;
}

@media (max-width: 1024px) {
	.hero-swiper {
		height: 560px;
	}

	.hero-swiper .hero-slide-inner {
		min-height: 100%;
		padding: 1.75rem 3.75rem 3rem;
	}

	.hero-swiper .hero-slide-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hero-swiper .hero-slide--split .hero-slide-media {
		order: -1;
	}

	.hero-swiper .hero-slide-image {
		max-width: 22rem;
		max-height: 220px;
	}

	.hero-swiper .hero-slide-actions {
		width: 100%;
	}

	.hero-swiper .hero-btn {
		flex: 1 1 auto;
	}
}

@media (max-width: 640px) {
	.hero-swiper {
		height: auto !important;
		min-height: 0;
	}

	.hero-swiper .swiper-wrapper {
		height: auto;
	}

	.hero-swiper .swiper-slide,
	.hero-swiper .hero-slide {
		height: auto !important;
		min-height: 0;
	}

	.hero-swiper .hero-slide-inner {
		height: auto;
		min-height: 0;
		padding: 1.15rem 1rem 3.5rem;
		align-items: flex-start;
	}

	.hero-swiper .hero-slide-title {
		font-size: 1.2rem;
		margin-bottom: 0.65rem;
	}

	.hero-swiper .hero-slide-desc {
		font-size: 0.86rem;
		line-height: 1.7;
		margin-bottom: 1rem;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.hero-swiper .hero-slide--split .hero-slide-media {
		display: none;
	}

	.hero-swiper .hero-slide-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
	}

	.hero-swiper .hero-btn {
		width: 100%;
		justify-content: center;
		min-height: 2.5rem;
		padding: 0.55rem 1rem;
		font-size: 0.86rem;
	}

	.hero-swiper .swiper-button-next,
	.hero-swiper .swiper-button-prev {
		top: auto;
		bottom: 0.85rem;
		width: 2rem;
		height: 2rem;
		margin-top: 0;
	}

	.hero-swiper .swiper-button-next {
		left: 0.75rem;
	}

	.hero-swiper .swiper-button-prev {
		right: 0.75rem;
	}

	.hero-swiper .swiper-button-next::after,
	.hero-swiper .swiper-button-prev::after,
	.board-swiper .swiper-button-next::after,
	.board-swiper .swiper-button-prev::after {
		font-size: 16px !important;
	}

	.hero-swiper .swiper-pagination {
		bottom: 0.65rem;
	}
}

/* Board Swiper Styles */
.board-swiper {
	padding-bottom: 3rem;
}

.board-swiper .swiper-button-next,
.board-swiper .swiper-button-prev {
	color: #1F2937;
	background: white;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.board-swiper .swiper-button-next:hover,
.board-swiper .swiper-button-prev:hover {
	background: #5C7A4E;
	color: white;
	transform: scale(1.1);
}

.board-swiper .swiper-pagination-bullet {
	background: #5C7A4E;
	opacity: 0.5;
	width: 12px;
	height: 12px;
	transition: all 0.3s ease;
}

.board-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	width: 30px;
	border-radius: 6px;
}

@media (max-width: 768px) {
	.board-swiper .swiper-button-next,
	.board-swiper .swiper-button-prev {
		width: 35px;
		height: 35px;
	}
	
	.board-swiper .swiper-button-next::after,
	.board-swiper .swiper-button-prev::after {
		font-size: 14px;
	}
}

/* RTL Support */
[dir="rtl"] {
	direction: rtl;
	text-align: right;
}

/* Custom Marker for Leaflet */
.custom-marker {
	background-color: #5C7A4E;
	width: 40px;
	height: 40px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	border: 3px solid white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.custom-marker div {
	transform: rotate(45deg);
	color: white;
	font-size: 20px;
	line-height: 34px;
	text-align: center;
}

/* Service Collapse Styles */
.service-toggle {
	cursor: pointer;
	outline: none;
}

.service-toggle:focus {
	outline: 2px solid #1F2937;
	outline-offset: 2px;
}

.service-icon {
	transition: transform 0.3s ease;
}

.service-icon.rotate-180 {
	transform: rotate(180deg);
}

.service-content {
	overflow: hidden;
}

.service-content.hidden {
	display: none;
}

/* Navigation Menu Styles */
/* Desktop Menu */
nav ul.menu,
nav ul.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav ul.menu > li,
nav ul.nav-menu > li {
	position: relative;
}

nav ul.menu .menu-link,
nav ul.nav-menu .menu-link {
	text-decoration: none;
	position: relative;
}

/* Ensure active menu items are visible */
nav ul.menu li.current-menu-item,
nav ul.menu li.current-menu-ancestor,
nav ul.nav-menu li.current-menu-item,
nav ul.nav-menu li.current-menu-ancestor {
	position: relative;
}

nav ul.menu .menu-link:hover,
nav ul.nav-menu .menu-link:hover {
	color: #1F2937;
}

/* Active Menu Item — bold primary text, same as the React header */
nav ul.menu li.current-menu-item > .menu-link,
nav ul.menu li.current-menu-ancestor > .menu-link,
nav ul.menu li.current-page-item > .menu-link,
nav ul.menu li.current-page-ancestor > .menu-link,
nav ul.nav-menu li.current-menu-item > .menu-link,
nav ul.nav-menu li.current-menu-ancestor > .menu-link,
nav ul.nav-menu li.current-page-item > .menu-link,
nav ul.nav-menu li.current-page-ancestor > .menu-link {
	color: #1F2937;
	font-weight: 700;
}

/* Dropdown Icon */
nav ul.menu .dropdown-icon,
nav ul.nav-menu .dropdown-icon {
	font-size: 1rem;
	transition: transform 0.3s ease;
	margin-right: 0.25rem;
}

nav ul.menu .has-dropdown:hover .dropdown-icon,
nav ul.nav-menu .has-dropdown:hover .dropdown-icon {
	transform: rotate(180deg);
}

/* Sub-menu Styles (Desktop) */
nav ul.menu .sub-menu,
nav ul.nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 16rem;
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0.75rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	padding: 0.5rem 0;
	margin-top: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 1000;
	list-style: none;
}

.dark nav ul.menu .sub-menu,
.dark nav ul.nav-menu .sub-menu {
	background: #1F2937;
	border-color: rgba(255, 255, 255, 0.1);
}

nav ul.menu > li:hover > .sub-menu,
nav ul.menu > li:focus-within > .sub-menu,
nav ul.menu > li.submenu-open > .sub-menu,
nav ul.nav-menu > li:hover > .sub-menu,
nav ul.nav-menu > li:focus-within > .sub-menu,
nav ul.nav-menu > li.submenu-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* Invisible bridge so the pointer can reach the submenu. */
nav ul.menu > li.has-submenu,
nav ul.nav-menu > li.has-submenu {
	position: relative;
}

nav ul.menu > li.has-submenu::after,
nav ul.nav-menu > li.has-submenu::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	top: 100%;
	height: 0.85rem;
}

nav ul.menu .sub-menu .sub-menu,
nav ul.nav-menu .sub-menu .sub-menu {
	top: 0;
	right: 100%;
	margin-top: 0;
	margin-right: 0.5rem;
}

nav ul.menu .sub-menu .menu-link,
nav ul.nav-menu .sub-menu .menu-link {
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	white-space: nowrap;
}

nav ul.menu .sub-menu .menu-link:hover,
nav ul.nav-menu .sub-menu .menu-link:hover {
	background-color: rgba(92, 122, 78, 0.1);
	padding-right: 1.5rem;
}

nav ul.menu .sub-menu .current-menu-item > .menu-link,
nav ul.nav-menu .sub-menu .current-menu-item > .menu-link {
	background-color: rgba(92, 122, 78, 0.15);
	font-weight: 600;
}

/* Mobile Menu Styles */
.mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu > li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark .mobile-menu > li {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu > li:last-child {
	border-bottom: none;
}

.mobile-menu .menu-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 0.5rem;
	width: 100%;
}

.mobile-menu .menu-link:hover {
	background-color: rgba(92, 122, 78, 0.1);
	color: #1F2937;
}

.mobile-menu li.current-menu-item > .menu-link,
.mobile-menu li.current-menu-ancestor > .menu-link,
.mobile-menu li.current-page-item > .menu-link,
.mobile-menu li.current-page-ancestor > .menu-link {
	color: #1F2937 !important;
	font-weight: 600 !important;
	background-color: rgba(92, 122, 78, 0.1) !important;
}

.mobile-menu .dropdown-icon {
	font-size: 1.25rem;
	transition: transform 0.3s ease;
}

.mobile-menu .has-dropdown.active .dropdown-icon {
	transform: rotate(180deg);
}

.mobile-menu .sub-menu {
	display: none;
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	min-width: 0;
	margin: 0.25rem 0 0;
	padding: 0;
	border: 0;
	box-shadow: none;
	background: transparent;
	list-style: none;
}

.mobile-menu .sub-menu.active {
	display: block;
}

.dark .mobile-menu .sub-menu {
	background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu .sub-menu.active {
	display: block;
}

.mobile-menu .sub-menu .menu-link {
	padding-right: 2rem;
	font-size: 0.9rem;
}

.mobile-menu .sub-menu .sub-menu .menu-link {
	padding-right: 3rem;
	font-size: 0.85rem;
}

.mobile-menu .sub-menu .sub-menu .sub-menu .menu-link {
	padding-right: 4rem;
	font-size: 0.8rem;
}

article h3 a,
article .news-title a {
	color: inherit;
	text-decoration: none;
}

/* Email and Phone Links — context-aware hover (never dark-on-dark) */
a[href^="mailto:"],
a[href^="tel:"] {
	text-decoration: none;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
	color: inherit;
	display: inline-block;
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover,
a[href^="mailto:"]:focus-visible,
a[href^="tel:"]:focus-visible {
	color: #5C7A4E !important;
	text-decoration: underline;
	text-underline-offset: 0.15em;
	transform: none;
}

/* Prevent hover conflicts in news cards */
article.group:hover a[href^="mailto:"],
article.group:hover a[href^="tel:"] {
	color: #5C7A4E !important;
}

article .news-button {
	position: relative;
	z-index: 1;
}

/* Footer contact links — light text on dark ink */
footer a[href^="mailto:"],
footer a[href^="tel:"] {
	color: inherit;
	transition: color 0.2s ease;
}

footer a[href^="mailto:"]:hover,
footer a[href^="tel:"]:hover,
footer a[href^="mailto:"]:focus-visible,
footer a[href^="tel:"]:focus-visible {
	color: #ffffff !important;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.55);
	text-underline-offset: 0.15em;
}

/* Contact page links hover */
.page-contact a[href^="mailto:"],
.page-contact a[href^="tel:"] {
	color: inherit;
	transition: color 0.2s ease;
}

.page-contact a[href^="mailto:"]:hover,
.page-contact a[href^="tel:"]:hover,
.page-contact a[href^="mailto:"]:focus-visible,
.page-contact a[href^="tel:"]:focus-visible {
	color: #3E5640 !important;
	text-decoration: underline;
	text-decoration-color: rgba(62, 86, 64, 0.45);
	text-underline-offset: 0.15em;
}

/* News archive link hover */
a.news-archive-link:hover {
	color: #1F2937 !important;
}

/* Group hover effects - ensure child elements don't conflict */
.group:hover a:not([href^="mailto"]):not([href^="tel"]) {
	transition: all 0.3s ease;
}

article.group h3 a:hover {
	text-decoration: none;
}

/* Email and Phone Link Classes - Specific styling */
a.khrtf-email-link,
a.khrtf-phone-link {
	color: #1F2937;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

a.khrtf-email-link:hover,
a.khrtf-phone-link:hover,
a.khrtf-email-link:focus-visible,
a.khrtf-phone-link:focus-visible {
	color: #5C7A4E !important;
	text-decoration: underline;
	text-underline-offset: 0.15em;
	opacity: 1;
}

/* Prevent conflicts in different contexts */
article a.khrtf-email-link,
article a.khrtf-phone-link {
	color: #1F2937;
}

article:hover a.khrtf-email-link,
article:hover a.khrtf-phone-link {
	color: #5C7A4E !important;
}

footer a.khrtf-email-link,
footer a.khrtf-phone-link {
	color: inherit;
}

footer a.khrtf-email-link:hover,
footer a.khrtf-phone-link:hover,
footer a.khrtf-email-link:focus-visible,
footer a.khrtf-phone-link:focus-visible {
	color: #ffffff !important;
}

footer .site-footer a[href^="tel"],
footer .site-footer a[href^="mailto"] {
	color: rgba(231, 239, 228, 0.88);
	transition: color 0.2s ease;
}

footer .site-footer a[href^="tel"]:hover,
footer .site-footer a[href^="mailto"]:hover,
footer .site-footer a[href^="tel"]:focus-visible,
footer .site-footer a[href^="mailto"]:focus-visible {
	color: #ffffff !important;
}

/* Footer quick links — chevron + spacing, same as the React footer */
footer .footer-quick-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

footer .footer-quick-menu li a,
footer .footer-service-link {
	color: rgba(231, 239, 228, 0.82);
	font-size: 0.875rem;
	line-height: 1.7;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

footer .footer-quick-menu li a:hover,
footer .footer-service-link:hover {
	color: #ffffff;
}

footer .footer-quick-menu li a::before,
footer .footer-service-link::before {
	content: "chevron_left";
	font-family: "Material Icons Outlined";
	font-weight: normal;
	font-style: normal;
	font-size: 0.85rem;
	line-height: 1;
	color: #8AA67A;
	font-feature-settings: "liga";
	-webkit-font-feature-settings: "liga";
	speak: never;
}

.site-footer a.footer-credit-link {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-color: rgba(231, 239, 228, 0.35);
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-footer a.footer-credit-link:hover,
.site-footer a.footer-credit-link:focus-visible {
	color: #ffffff;
	text-decoration-color: rgba(255, 255, 255, 0.7);
	outline: none;
}

/* Footer accordion (mobile): closed by default; open on md+ */
.site-footer .footer-collapse__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	margin: 0 0 1rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
	font: inherit;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.4;
	text-align: right;
	cursor: default;
}

.site-footer .footer-collapse__icon {
	display: none;
	font-size: 1.35rem;
	line-height: 1;
	color: rgba(231, 239, 228, 0.75);
	transition: transform 0.25s ease;
}

.site-footer .footer-collapse__panel {
	display: block;
}

@media (max-width: 767px) {
	.site-footer .footer-collapse {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 0.15rem;
	}

	.site-footer .footer-collapse__toggle {
		margin: 0;
		padding: 0.85rem 0;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.site-footer .footer-collapse__icon {
		display: inline-flex;
		flex-shrink: 0;
	}

	.site-footer .footer-collapse.is-open .footer-collapse__icon {
		transform: rotate(180deg);
	}

	.site-footer .footer-collapse__panel {
		display: none;
		padding-bottom: 0.95rem;
	}

	.site-footer .footer-collapse.is-open .footer-collapse__panel {
		display: block;
	}
}

/* Header brand logo: readable caption without crowding the menu */
.site-header .site-brand {
	gap: 0.75rem;
	max-width: 14rem;
}

.site-header .site-brand__logo {
	display: block;
	height: 3.75rem;
	width: auto;
	max-width: 5.5rem;
	object-fit: contain;
	object-position: center;
	flex-shrink: 0;
}

.site-header .site-brand__text {
	min-width: 0;
}

.site-header nav.relative {
	min-height: 4.25rem;
	padding-top: 0.45rem;
	padding-bottom: 0.45rem;
}

/* Desktop menu: single-line labels, never wrap */
.site-header nav > ul.menu {
	flex: 1 1 auto;
	justify-content: center;
	min-width: 0;
	flex-wrap: nowrap;
}

.site-header nav > ul.menu > li {
	flex-shrink: 0;
}

.site-header nav > ul.menu > li > .menu-link {
	white-space: nowrap;
	line-height: 1.25;
	padding-block: 0.35rem;
}

@media (min-width: 768px) {
	.site-header .site-brand__logo {
		height: 4.25rem;
		max-width: 6.25rem;
	}

	.site-header nav.relative {
		min-height: 4.75rem;
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
}

@media (min-width: 1024px) {
	.site-header .site-brand {
		/* Logo already includes caption — free space for nav items */
		max-width: 7rem;
	}

	.site-header .site-brand__text {
		display: none;
	}

	.site-header .site-brand__logo {
		height: 4.75rem;
		max-width: 7rem;
	}

	.site-header .site-brand {
		gap: 0;
	}
}

@media (min-width: 1280px) {
	.site-header .site-brand {
		max-width: 7.5rem;
	}

	.site-header .site-brand__logo {
		height: 5rem;
		max-width: 7.5rem;
	}

	.site-header nav > ul.menu {
		gap: 1.25rem;
	}
}

@media (max-width: 480px) {
	.site-header .site-brand__logo {
		height: 3.35rem;
		max-width: 4.85rem;
	}

	.site-header .site-brand__text {
		display: none;
	}

	.site-header .site-brand {
		max-width: none;
	}

	.site-header nav.relative {
		min-height: 3.85rem;
		padding-top: 0.4rem;
		padding-bottom: 0.4rem;
		gap: 0.5rem;
	}
}

@media (max-width: 640px) {
	.site-header .header-utility__title {
		display: none !important;
	}

	.site-header .header-utility {
		justify-content: center;
		overflow: hidden;
	}

	.site-header .header-utility__contacts {
		justify-content: center;
		width: 100%;
	}

	.site-header .site-brand {
		gap: 0.55rem;
		max-width: calc(100% - 6.5rem);
	}

	.site-header .site-brand__title {
		font-size: 0.82rem;
	}
}

.dir-ltr {
	direction: ltr;
	unicode-bidi: isolate;
}

/* Utility bar contacts — mobile shows phone only */
.site-header .header-utility__contacts {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	min-width: 0;
	max-width: 100%;
}

.site-header .header-utility__desktop {
	display: none;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: nowrap;
}

.site-header .header-utility-item {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	line-height: 1;
	opacity: 1;
	color: rgba(231, 239, 228, 0.82);
	text-decoration: none;
	border-radius: 9999px;
	padding: 0.2rem 0.45rem;
	margin-inline: -0.2rem;
	white-space: nowrap;
	transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header .header-utility-phone-mobile {
	display: inline-flex;
	max-width: 100%;
}

.site-header .header-utility-phone-mobile > span.dir-ltr {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: min(70vw, 14rem);
}

@media (min-width: 640px) {
	.site-header .header-utility-phone-mobile {
		display: none !important;
	}

	.site-header .header-utility__desktop {
		display: inline-flex;
	}

	.site-header .header-utility-item--hours {
		display: none;
	}
}

@media (min-width: 768px) {
	.site-header .header-utility__desktop {
		gap: 1rem;
	}

	.site-header .header-utility-item--hours {
		display: inline-flex;
	}
}

.site-header .header-utility-item .material-icons-outlined {
	font-size: 14px !important;
	width: 14px;
	height: 14px;
	line-height: 14px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	color: inherit;
}

.site-header .header-utility-item > span:not(.material-icons-outlined) {
	line-height: 1.2;
	display: inline-block;
	color: inherit;
}

.site-header a.header-utility-link:hover,
.site-header a.header-utility-link:focus-visible {
	color: #ffffff !important;
	background-color: rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.site-header a.header-utility-link:hover .material-icons-outlined,
.site-header a.header-utility-link:focus-visible .material-icons-outlined,
.site-header a.header-utility-link:hover > span,
.site-header a.header-utility-link:focus-visible > span {
	color: #ffffff !important;
}

/* Beat global tel/mailto dark-hover on the ink utility bar */
.site-header a.header-utility-link[href^="tel"]:hover,
.site-header a.header-utility-link[href^="mailto"]:hover,
.site-header a.header-utility-link[href^="tel"]:focus-visible,
.site-header a.header-utility-link[href^="mailto"]:focus-visible {
	color: #ffffff !important;
}

/* Internal page body copy: RTL, right-aligned, tidy lists */
.khrtf-page-content,
.khrtf-page-content p,
.khrtf-page-content li,
.khrtf-page-content ul,
.khrtf-page-content ol,
.khrtf-page-content h1,
.khrtf-page-content h2,
.khrtf-page-content h3,
.khrtf-page-content h4,
.khrtf-page-content h5,
.khrtf-page-content h6 {
	text-align: right !important;
}

.khrtf-page-content p {
	text-align: justify !important;
	text-justify: inter-word;
	line-height: 1.9;
	margin-bottom: 1rem;
}

.khrtf-page-content ul,
.khrtf-page-content ol {
	list-style-position: outside;
	padding-right: 1.25rem;
	padding-left: 0;
	margin-right: 0;
	margin-left: 0;
}

.khrtf-page-content li {
	margin-bottom: 0.65rem;
	line-height: 1.85;
	padding-right: 0.15rem;
}

.khrtf-page-content strong,
.khrtf-page-content b {
	color: #1F2937;
	font-weight: 700;
}

.site-header nav ul.menu .menu-link:hover,
.site-header nav ul.menu li.current-menu-item > .menu-link,
.site-header nav ul.menu li.current-menu-ancestor > .menu-link,
.site-header nav ul.menu li.current-page-item > .menu-link,
.site-header .menu-link.text-primary,
.site-header .text-primary {
	color: #3E5640 !important;
}

.site-header nav ul.menu li.current-menu-item > .menu-link,
.site-header nav ul.menu li.current-page-item > .menu-link {
	box-shadow: inset 0 -2px 0 #5C7A4E;
}

.site-header nav ul.menu .sub-menu .menu-link:hover {
	background-color: rgba(92, 122, 78, 0.1);
	color: #3E5640;
}

.site-header .mobile-menu > li {
	border-bottom-color: rgba(92, 122, 78, 0.15);
}

.site-header .mobile-menu .menu-link {
	border-radius: 0.75rem;
}

.site-header .mobile-menu li.current-menu-item > .menu-link,
.site-header .mobile-menu .menu-link.text-primary,
.site-header .mobile-menu .text-primary {
	color: #3E5640 !important;
	background-color: rgba(92, 122, 78, 0.1) !important;
}

/* Expanding inline header search */
.site-header .header-search {
	position: relative;
	z-index: 20;
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .header-search.is-open {
	width: min(16.5rem, 58vw);
}

.site-header .header-search-form {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 9999px;
	background: transparent;
	border: 1px solid transparent;
	overflow: hidden;
	transition:
		background-color 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .header-search.is-open .header-search-form {
	background: #ffffff;
	border-color: rgba(92, 122, 78, 0.28);
	box-shadow:
		0 10px 28px -18px rgba(36, 48, 40, 0.55),
		0 0 0 3px rgba(92, 122, 78, 0.08);
}

.site-header .header-search-toggle {
	position: absolute;
	inset-inline-end: 0;
	top: 0;
	z-index: 3;
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 9999px;
	background: transparent;
	color: #3E5640;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header .header-search-toggle:hover {
	background: #E7EFE4;
}

.site-header .header-search.is-open .header-search-toggle {
	color: #5C7A4E;
	background: transparent;
	pointer-events: none;
}

.site-header .header-search-toggle .material-icons-outlined {
	font-size: 22px;
	line-height: 1;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .header-search.is-open .header-search-toggle .material-icons-outlined {
	transform: rotate(-12deg) scale(0.92);
}

.site-header .header-search-input {
	width: 100%;
	height: 100%;
	border: 0;
	outline: none;
	background: transparent;
	color: #243028;
	font-family: "Vazirmatn", Tahoma, sans-serif;
	font-size: 0.875rem;
	padding-block: 0;
	padding-inline-start: 4.4rem;
	padding-inline-end: 2.6rem;
	opacity: 0;
	transform: translateX(0.5rem);
	pointer-events: none;
	transition:
		opacity 0.28s ease 0.05s,
		transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .header-search.is-open .header-search-input {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.site-header .header-search-input::placeholder {
	color: #8aa091;
}

.site-header .header-search-input::-webkit-search-decoration,
.site-header .header-search-input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

.site-header .header-search-submit,
.site-header .header-search-close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) scale(0.7);
	z-index: 2;
	width: 1.85rem;
	height: 1.85rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 9999px;
	background: transparent;
	color: #3E5640;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.25s ease 0.12s,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		background-color 0.2s ease,
		color 0.2s ease;
}

.site-header .header-search-submit {
	inset-inline-start: 0.3rem;
	background: #5C7A4E;
	color: #ffffff;
}

.site-header .header-search-close {
	inset-inline-end: 0.3rem;
}

.site-header .header-search.is-open .header-search-submit,
.site-header .header-search.is-open .header-search-close {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(-50%) scale(1);
}

.site-header .header-search-submit:hover {
	background: #3E5640;
}

.site-header .header-search-close:hover {
	background: #E7EFE4;
	color: #243028;
}

.site-header .header-search-submit .material-icons-outlined,
.site-header .header-search-close .material-icons-outlined {
	font-size: 18px;
	line-height: 1;
}

@media (max-width: 640px) {
	.site-header .header-search.is-open {
		width: min(13.5rem, 62vw);
	}
}

/* Download center */
/* Google Maps embed on contact page */
.khrtf-google-map {
	display: block;
	width: 100%;
	height: 24rem;
	border: 0;
	direction: ltr;
}

@media (min-width: 768px) {
	.khrtf-google-map {
		height: 31.25rem;
	}
}

.download-page {
	padding: 0.75rem 0 3rem;
}

.download-center {
	max-width: 52rem;
	margin: 0 auto;
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.07);
	border-radius: 1.15rem;
	box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
	padding: 1.25rem 1.15rem 1rem;
}

.download-center__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.download-center__head-main {
	min-width: 0;
	flex: 1;
}

.download-center__kicker {
	display: block;
	width: 2.5rem;
	height: 0.2rem;
	border-radius: 999px;
	background: #5c7a4e;
	margin-bottom: 0.65rem;
}

.download-center__title {
	margin: 0;
	color: #111827;
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	font-weight: 800;
	line-height: 1.45;
}

.download-center__lead {
	margin: 0.4rem 0 0;
	color: #6b7280;
	font-size: 0.88rem;
	line-height: 1.6;
}

.download-center__count {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.1rem;
	min-width: 3.75rem;
	padding: 0.55rem 0.7rem;
	border-radius: 0.85rem;
	background: #243028;
	color: #fff;
	flex-shrink: 0;
}

.download-center__count strong {
	font-size: 1.2rem;
	line-height: 1;
}

.download-center__count span {
	font-size: 0.68rem;
	opacity: 0.85;
}

.download-center__tools {
	display: grid;
	gap: 0.65rem;
	margin-bottom: 0.35rem;
}

.download-center__search {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 2.45rem;
	padding: 0 0.75rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.7rem;
	background: #f8faf8;
}

.download-center__search .material-icons-outlined {
	font-size: 1.1rem;
	color: #6b7280;
}

.download-center__search input {
	width: 100%;
	border: 0;
	background: transparent;
	outline: none;
	color: #111827;
	font: inherit;
	font-size: 0.88rem;
}

.download-center__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
}

.download-center__tab {
	border: 0;
	cursor: pointer;
	border-radius: 0.55rem;
	padding: 0.4rem 0.7rem;
	background: #f3f4f6;
	color: #374151;
	font: inherit;
	font-weight: 700;
	font-size: 0.78rem;
	line-height: 1.2;
}

.download-center__tab.is-active {
	background: #243028;
	color: #fff;
}

.download-center__list {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
}

.download-center__item {
	display: grid;
	grid-template-columns: 1.35rem 2.35rem minmax(0, 1fr) auto;
	gap: 0.55rem;
	align-items: center;
	padding: 0.6rem 0;
	border-top: 1px solid #eef0f2;
}

.download-center__item.is-hidden {
	display: none;
}

.download-center__num {
	color: #9ca3af;
	font-weight: 700;
	font-size: 0.75rem;
	text-align: center;
}

.download-center__badge {
	width: 2.35rem;
	height: 2.55rem;
	border-radius: 0.3rem 0.5rem 0.5rem 0.5rem;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 0.3rem;
	color: #fff;
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	position: relative;
	flex-shrink: 0;
}

.download-center__badge::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	border-width: 0 0.52rem 0.52rem 0;
	border-style: solid;
	border-color: transparent #fff transparent transparent;
}

.download-center__badge--pdf { background: #c24141; }
.download-center__badge--doc { background: #2f6fbe; }
.download-center__badge--zip { background: #d97706; }
.download-center__badge--image { background: #3d8c4a; }
.download-center__badge--file { background: #4b5563; }

.download-center__meta {
	min-width: 0;
}

.download-center__meta strong {
	display: block;
	color: #111827;
	font-size: 0.86rem;
	line-height: 1.45;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.download-center__meta small {
	display: block;
	margin-top: 0.08rem;
	color: #6b7280;
	font-size: 0.72rem;
}

.download-center__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2rem;
	padding: 0 0.75rem;
	border-radius: 0.5rem;
	background: #5c7a4e;
	color: #fff;
	font-weight: 700;
	font-size: 0.78rem;
	white-space: nowrap;
}

.download-center__btn:hover {
	background: #243028;
	color: #fff;
}

.download-center__empty {
	display: none;
	margin: 1rem 0 0.25rem;
	text-align: center;
	color: #6b7280;
	font-size: 0.88rem;
}

.download-center__empty.is-visible {
	display: block;
}

@media (max-width: 640px) {
	.download-center {
		padding: 1rem 0.85rem 0.85rem;
		border-radius: 1rem;
	}

	.download-center__item {
		grid-template-columns: 1.2rem 2.2rem minmax(0, 1fr);
		gap: 0.45rem;
	}

	.download-center__btn {
		grid-column: 2 / -1;
		justify-self: start;
		min-height: 1.9rem;
	}

	.download-center__meta strong {
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.download-center__count {
		min-width: 3.35rem;
		padding: 0.45rem 0.55rem;
	}
}

/* Legacy two-column download layout removed */

/* Organization chart page */
.org-page {
	padding-bottom: 4.5rem;
}

.org-page__intro {
	max-width: 46rem;
	margin: 0 auto 1.75rem;
	text-align: center;
	color: #4b5563;
	line-height: 1.9;
}

.org-chart {
	max-width: 68rem;
	margin: 0 auto;
	padding: 1.75rem 1.25rem 2rem;
	background:
		radial-gradient(circle at 1px 1px, rgba(36, 48, 40, 0.08) 1px, transparent 0),
		#f7f8f6;
	background-size: 18px 18px, auto;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: 1.75rem;
}

.org-chart__node {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.65rem 1.1rem;
	border-radius: 0.7rem;
	background: #243028;
	color: #fff;
	font-weight: 700;
	font-size: 0.92rem;
	text-align: center;
	line-height: 1.5;
	box-shadow: 0 10px 24px rgba(36, 48, 40, 0.16);
}

.org-chart__node--side {
	background: #5c7a4e;
}

.org-chart__node--ceo {
	background: #1a2420;
	min-width: 9rem;
}

.org-chart__node--head {
	width: 100%;
	background: #5c7a4e;
	min-height: 4.2rem;
	align-items: flex-start;
}

.org-chart__vline {
	display: block;
	width: 2px;
	height: 1.35rem;
	margin: 0.15rem auto;
	background: #9bb39a;
}

.org-chart__vline--short {
	height: 1rem;
}

.org-chart__row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.org-chart__row--board .org-chart__node--side,
.org-chart__row--ceo .org-chart__node--side {
	order: 2;
}

.org-chart__row--board .org-chart__node--main,
.org-chart__row--ceo .org-chart__node--main {
	order: 1;
}

.org-chart__branch {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 0.15rem;
}

.org-chart__hline {
	display: block;
	width: min(72%, 42rem);
	height: 2px;
	background: #9bb39a;
	position: relative;
}

.org-chart__hline::before,
.org-chart__hline::after {
	content: "";
	position: absolute;
	top: 0;
	width: 2px;
	height: 1rem;
	background: #9bb39a;
}

.org-chart__hline::before { right: 0; }
.org-chart__hline::after { left: 0; }

.org-chart__pillars {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.org-chart__pillar {
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: 1rem;
	padding: 0.75rem;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.org-chart__roles {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.org-chart__roles li {
	padding: 0.55rem 0.7rem;
	border-radius: 0.55rem;
	background: #f3f5f2;
	color: #243028;
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.55;
	border-right: 3px solid #5c7a4e;
}

.org-page__figure {
	max-width: 34rem;
	margin: 2.5rem auto 0;
	padding: 1rem;
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: 1.5rem;
	box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
	text-align: center;
}

.org-page__figure img {
	width: 100%;
	height: auto;
	border-radius: 0.85rem;
	display: block;
}

.org-page__figure figcaption {
	margin-top: 0.75rem;
	color: #6b7280;
	font-size: 0.88rem;
}

	@media (max-width: 900px) {
	.org-chart__pillars {
		grid-template-columns: 1fr;
	}

	.org-chart__hline {
		display: none;
	}
}

/* Statute page */
.statute-page {
	padding-bottom: 4.5rem;
}

.statute-page__intro {
	max-width: 46rem;
	margin: 0 auto 1.5rem;
	text-align: center;
	color: #4b5563;
	line-height: 1.9;
}

.statute-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: center;
	max-width: 56rem;
	margin: 0 auto 2rem;
	padding: 1.25rem 1.35rem;
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: 1.35rem;
	box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
}

.statute-card__badge {
	width: 3.4rem;
	height: 3.8rem;
	border-radius: 0.55rem 0.85rem 0.85rem 0.85rem;
	background: #c24141;
	color: #fff;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 0.5rem;
	font-size: 0.75rem;
	font-weight: 800;
	position: relative;
	flex-shrink: 0;
}

.statute-card__badge::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	border-width: 0 0.75rem 0.75rem 0;
	border-style: solid;
	border-color: transparent #f8faf8 transparent transparent;
}

.statute-card__body strong {
	display: block;
	color: #111827;
	font-size: 1.15rem;
	font-weight: 800;
}

.statute-card__body p {
	margin: 0.35rem 0 0;
	color: #6b7280;
	font-size: 0.9rem;
	line-height: 1.7;
}

.statute-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-end;
}

.statute-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.55rem;
	padding: 0 1rem;
	border-radius: 0.75rem;
	font-weight: 700;
	font-size: 0.9rem;
	white-space: nowrap;
}

.statute-card__btn--primary {
	background: #5c7a4e;
	color: #fff;
}

.statute-card__btn--primary:hover {
	background: #243028;
	color: #fff;
}

.statute-card__btn--ghost {
	background: #f3f5f2;
	color: #243028;
}

.statute-card__btn--ghost:hover {
	background: #e7efe4;
	color: #243028;
}

.statute-preview__title {
	margin: 0 0 1rem;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 800;
	color: #111827;
}

.statute-preview__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 56rem;
	margin: 0 auto;
}

.statute-preview__item {
	margin: 0;
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.statute-preview__item a {
	display: block;
}

.statute-preview__item img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: top;
	transition: transform 0.35s ease;
}

.statute-preview__item a:hover img {
	transform: scale(1.03);
}

.statute-preview__item figcaption {
	padding: 0.7rem 0.85rem;
	text-align: center;
	color: #6b7280;
	font-size: 0.85rem;
	font-weight: 600;
}

.statute-page__more {
	margin: 2rem 0 0;
	text-align: center;
}

.statute-page__more a {
	color: #5c7a4e;
	font-weight: 700;
}

.statute-page__more a:hover {
	color: #243028;
}

@media (max-width: 860px) {
	.statute-card {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.statute-card__actions {
		grid-column: 1 / -1;
		justify-content: stretch;
	}

	.statute-card__btn {
		flex: 1 1 auto;
	}

	.statute-preview__grid {
		grid-template-columns: 1fr;
		max-width: 22rem;
	}
}

/* Goals page */
.goals-page {
	padding-bottom: 4.5rem;
}

.goals-page__intro {
	max-width: 46rem;
	margin: 0 auto 1.5rem;
	text-align: center;
	color: #4b5563;
	line-height: 1.9;
}

.goals-list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 52rem;
	display: grid;
	gap: 0.85rem;
}

.goals-list__item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.9rem;
	align-items: flex-start;
	padding: 1.1rem 1.2rem;
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: 1.1rem;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.goals-list__num {
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 0.7rem;
	background: #243028;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 0.95rem;
	flex-shrink: 0;
}

.goals-list__item p {
	margin: 0;
	color: #374151;
	line-height: 1.9;
	font-size: 0.98rem;
}

/* Home services carousel */
.home-services-carousel {
	position: relative;
	padding: 0 2.6rem 2.75rem;
}

.home-services-swiper {
	overflow: hidden;
	padding: 0.35rem 0.1rem 0.5rem;
}

.home-services-swiper .swiper-wrapper {
	align-items: stretch;
}

.home-services-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.home-services-swiper .home-service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 20rem;
	padding: 1.55rem 1.5rem 1.5rem;
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 1.15rem;
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-services-swiper .home-service-card:hover {
	border-color: rgba(92, 122, 78, 0.32);
	box-shadow: 0 14px 28px rgba(17, 24, 39, 0.07);
	transform: translateY(-2px);
}

.home-services-swiper .home-service-card__icon {
	width: 2.85rem;
	height: 2.85rem;
	border-radius: 0.75rem;
	background: #e7efe4;
	color: #243028;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.9rem;
}

.home-services-swiper .home-service-card__icon .material-icons-outlined {
	font-size: 1.45rem;
	line-height: 1;
}

.home-services-swiper .home-service-card__title {
	margin: 0 0 0.55rem;
	color: #111827;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.4;
}

.home-services-swiper .home-service-card__desc {
	margin: 0 0 0.85rem;
	color: #6b7280;
	font-size: 0.9rem;
	line-height: 1.75;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.home-services-swiper .home-service-card__list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: grid;
	gap: 0.4rem;
}

.home-services-swiper .home-service-card__list li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.5rem;
	align-items: flex-start;
	color: #4b5563;
	font-size: 0.84rem;
	line-height: 1.55;
}

.home-services-swiper .home-service-card__list li > span:last-child {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.home-services-swiper .home-service-card__dot {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 999px;
	background: #5c7a4e;
	margin-top: 0.45rem;
	flex-shrink: 0;
}

.home-services-swiper .home-service-card__more {
	color: #5c7a4e !important;
	font-weight: 700;
	font-size: 0.8rem !important;
	display: block !important;
	padding-right: 0.85rem;
}

.home-services-swiper .home-service-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	min-height: 2.65rem;
	padding: 0 1rem;
	border-radius: 0.7rem;
	background: #5c7a4e;
	color: #fff;
	font-weight: 700;
	font-size: 0.92rem;
}

.home-services-swiper .home-service-card__btn:hover {
	background: #243028;
	color: #fff;
}

/* Shared icon used on services page accordion */
.home-service-card__icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.7rem;
	background: #e7efe4;
	color: #243028;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.home-service-card__icon .material-icons-outlined {
	font-size: 1.25rem;
	line-height: 1;
}

.home-services-nav {
	position: absolute;
	top: calc(50% - 1.5rem);
	z-index: 5;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 999px;
	background: #fff;
	color: #243028;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-services-nav .material-icons-outlined {
	font-size: 1.5rem;
	line-height: 1;
}

.home-services-nav:hover {
	background: #5c7a4e;
	color: #fff;
	transform: scale(1.05);
}

.home-services-nav.swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.home-services-nav--prev {
	right: 0;
}

.home-services-nav--next {
	left: 0;
}

.home-services-pagination {
	position: absolute;
	inset-inline: 0;
	bottom: 0.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	z-index: 2;
}

.home-services-pagination .swiper-pagination-bullet {
	width: 0.55rem;
	height: 0.55rem;
	margin: 0 !important;
	background: #5c7a4e;
	opacity: 0.35;
	border-radius: 999px;
	transition: width 0.25s ease, opacity 0.25s ease;
}

.home-services-pagination .swiper-pagination-bullet-active {
	width: 1.55rem;
	opacity: 1;
	border-radius: 999px;
}

.home-services__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.7rem;
	padding: 0 1.5rem;
	border-radius: 0.75rem;
	background: #243028;
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
}

.home-services__all:hover {
	background: #5c7a4e;
	color: #fff;
}

@media (max-width: 1024px) {
	.home-services-carousel {
		padding-inline: 2.2rem;
	}
}

@media (max-width: 640px) {
	.home-services-carousel {
		padding-inline: 0.15rem;
		padding-bottom: 2.5rem;
	}

	.home-services-swiper .home-service-card {
		min-height: 17rem;
		padding: 1.15rem 1.1rem 1.15rem;
	}

	.home-services-swiper .home-service-card__title {
		font-size: 1.05rem;
	}

	.home-services-swiper .home-service-card__desc {
		font-size: 0.86rem;
		-webkit-line-clamp: 2;
	}

	.home-services-nav {
		width: 2.35rem;
		height: 2.35rem;
		top: calc(50% - 1.9rem);
	}

	.home-services-nav .material-icons-outlined {
		font-size: 1.3rem;
	}

	.home-services-nav--prev {
		right: 0.2rem;
	}

	.home-services-nav--next {
		left: 0.2rem;
	}
}


/* ===== Mobile polish (global + inner pages) ===== */
@media (max-width: 640px) {
	.hero-section {
		margin-top: 0.5rem;
		border-radius: 0.85rem;
	}

	.site-header .header-utility {
		justify-content: center;
		overflow: hidden;
	}

	.site-header .header-utility__contacts {
		justify-content: center;
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.site-header .header-utility__desktop {
		display: none !important;
	}

	.share-section {
		padding: 2rem 0 2.5rem;
	}

	.share-section__head {
		margin-bottom: 1.15rem;
	}

	.share-section__title {
		font-size: 1.2rem;
	}

	.share-groups {
		grid-template-columns: 1fr;
		gap: 0.85rem;
	}

	.share-page-hero {
		padding: 1.75rem 0 1.5rem;
	}

	.share-page-hero h1 {
		font-size: 1.35rem;
		line-height: 1.45;
	}

	.share-page-hero__lead {
		font-size: 0.9rem;
	}

	.site-footer .container > .grid {
		gap: 0.35rem;
	}

	.site-footer .container > .grid > :first-child {
		margin-bottom: 0.75rem;
	}

	.khrtf-google-map {
		height: 16rem;
	}

	.download-center {
		margin-inline: 0;
	}

	.statute-preview__grid {
		grid-template-columns: 1fr;
	}

	.org-page__figure img {
		width: 100%;
		height: auto;
	}

	.goals-page__list li,
	.goals-page ol li {
		font-size: 0.9rem;
	}

	#mobile-menu {
		max-height: min(70vh, 28rem);
		z-index: 80;
	}

	#mobile-menu.hidden {
		display: none !important;
	}

	#mobile-menu.flex {
		display: flex !important;
	}

	.container {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.header-utility-item {
		padding-inline: 0.2rem;
		gap: 0.25rem;
	}

	.header-utility-item .material-icons-outlined {
		font-size: 13px !important;
		width: 13px;
		height: 13px;
	}

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