:root {
	--ink: #16231f;
	--muted: #5c6a65;
	--line: #d9e5e0;
	--green: #17624f;
	--teal: #0d7668;
	--rose: #d95e68;
	--gold: #c48d2d;
	--mist: #eef7f4;
	--paper: #ffffff;
	--shell: #faf8f3;
	--shadow: 0 16px 42px rgba(14, 42, 35, .12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--paper);
	color: var(--ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--teal);
}

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

.container {
	margin: 0 auto;
	max-width: 1180px;
	padding: 0 24px;
	width: 100%;
}

.screen-reader-text,
.skip-link {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.skip-link:focus {
	background: var(--paper);
	clip: auto;
	clip-path: none;
	color: var(--ink);
	height: auto;
	left: 24px;
	padding: 10px 14px;
	top: 16px;
	width: auto;
	z-index: 1000;
}

.topbar {
	background: #102d27;
	color: rgba(255, 255, 255, .86);
	font-size: 14px;
}

.topbar__inner {
	align-items: center;
	display: flex;
	gap: 22px;
	min-height: 38px;
}

.topbar a,
.topbar span {
	align-items: center;
	display: inline-flex;
	gap: 7px;
	white-space: nowrap;
}

.topbar svg,
.entry-meta svg,
.footer-contact svg,
.read-more svg,
.header-cta svg,
.search-form svg {
	fill: none;
	height: 17px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 17px;
}

.site-header {
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-main {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) auto;
	min-height: 76px;
}

.site-branding {
	min-width: 0;
	position: relative;
	z-index: 2;
}

.custom-logo-link {
	align-items: center;
	display: inline-flex;
	max-width: 100%;
}

.site-branding img {
	max-height: 56px;
	min-width: 172px;
	object-fit: contain;
	object-position: left center;
	width: min(260px, 100%);
}

.primary-navigation {
	min-width: 0;
	overflow: hidden;
}

.primary-navigation .menu {
	min-width: 0;
}

.primary-navigation ul {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 2px;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation a {
	border-radius: 8px;
	color: var(--ink);
	display: block;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	padding: 9px 8px;
	white-space: nowrap;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
	background: var(--mist);
	color: var(--green);
}

.header-cta,
.button,
.read-more {
	align-items: center;
	display: inline-flex;
	font-weight: 800;
	gap: 8px;
}

.header-cta,
.button {
	border-radius: 8px;
	min-height: 44px;
	padding: 11px 17px;
}

.header-cta {
	flex-shrink: 0;
	white-space: nowrap;
}

.header-cta,
.button.primary {
	background: var(--green);
	color: #fff;
}

.button.ghost {
	border: 1px solid rgba(255, 255, 255, .65);
	color: #fff;
}

.header-cta:hover,
.button.primary:hover {
	background: var(--teal);
	color: #fff;
}

.button.ghost:hover {
	background: #fff;
	color: var(--green);
}

.menu-toggle {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: none;
	height: 44px;
	justify-content: center;
	padding: 0;
	width: 44px;
}

.menu-toggle span:not(.screen-reader-text) {
	background: var(--ink);
	display: block;
	height: 2px;
	margin: 4px 0;
	width: 23px;
}

.home-hero {
	background: #102d27;
	position: relative;
}

.hero-slider {
	min-height: 570px;
	position: relative;
}

.hero-slide {
	background-position: center;
	background-size: cover;
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity .5s ease;
}

.hero-slide.is-active {
	opacity: 1;
	position: relative;
	z-index: 1;
}

.hero-slide__content {
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 570px;
	padding-bottom: 72px;
	padding-top: 72px;
}

.eyebrow,
.section-heading span {
	color: var(--gold);
	display: block;
	font-size: 13px;
	font-weight: 900;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.hero-slide h1 {
	font-size: 54px;
	line-height: 1.08;
	margin: 0 0 18px;
	max-width: 760px;
}

.hero-slide p {
	font-size: 19px;
	margin: 0;
	max-width: 640px;
}

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

.slider-dots {
	bottom: 28px;
	display: flex;
	gap: 9px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 3;
}

.slider-dots button {
	background: rgba(255, 255, 255, .58);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 9px;
	padding: 0;
	width: 28px;
}

.slider-dots button.is-active {
	background: #fff;
}

.metric-band {
	background: var(--shell);
	border-bottom: 1px solid var(--line);
	border-top: 1px solid rgba(255, 255, 255, .8);
}

.metrics {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, 1fr);
	padding-bottom: 20px;
	padding-top: 20px;
}

.metrics div {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 18px;
}

.metrics strong {
	color: var(--rose);
	display: block;
	font-size: 30px;
	line-height: 1.1;
}

.metrics span {
	color: var(--muted);
	display: block;
	font-size: 14px;
	margin-top: 6px;
}

.section,
.split-section,
.related-posts {
	padding: 72px 0;
}

.compact-section {
	padding-top: 0;
}

.section.muted,
.split-section {
	background: var(--mist);
}

.section-heading {
	margin-bottom: 28px;
	max-width: 720px;
}

.section-heading h2,
.split-grid h2,
.entry-hero h1,
.category-hero h1 {
	font-size: 38px;
	line-height: 1.18;
	margin: 0;
}

.feature-grid,
.post-grid,
.category-grid,
.content-grid {
	display: grid;
	gap: 22px;
}

.feature-grid.three,
.post-grid.three,
.content-grid.three {
	grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.post-card,
.widget,
.pricing-table section {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(14, 42, 35, .06);
}

.feature-card {
	padding: 26px;
}

.service-grid .feature-card {
	border-top: 4px solid var(--green);
}

.service-grid .feature-card:nth-child(2n) {
	border-top-color: var(--rose);
}

.service-grid .feature-card:nth-child(3n) {
	border-top-color: var(--gold);
}

.feature-card h3,
.post-card__title,
.widget-title,
.entry-content h2 {
	line-height: 1.25;
	margin-top: 0;
}

.feature-card p,
.post-card p,
.entry-hero p,
.category-hero p {
	color: var(--muted);
}

.read-more {
	color: var(--green);
	margin-top: 8px;
}

.split-grid {
	align-items: center;
	display: grid;
	gap: 46px;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 46%);
}

.split-grid figure,
.featured-media,
.content-image,
.case-row article {
	border-radius: 8px;
	overflow: hidden;
}

.split-grid figure {
	box-shadow: var(--shadow);
	margin: 0;
}

.process-list {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding-left: 20px;
}

.audience-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, 1fr);
}

.audience-grid article {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 5px solid var(--rose);
	border-radius: 8px;
	padding: 22px;
}

.audience-grid article:nth-child(2) {
	border-left-color: var(--green);
}

.audience-grid article:nth-child(3) {
	border-left-color: var(--gold);
}

.audience-grid article:nth-child(4) {
	border-left-color: var(--teal);
}

.audience-grid h3,
.program-list h3 {
	line-height: 1.25;
	margin: 0 0 8px;
}

.audience-grid p,
.program-list p {
	color: var(--muted);
	margin: 0;
}

.program-section {
	background: #fff;
}

.program-layout {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
}

.program-list {
	display: grid;
	gap: 14px;
}

.program-list article {
	align-items: start;
	background: var(--shell);
	border: 1px solid var(--line);
	border-radius: 8px;
	display: grid;
	gap: 16px;
	grid-template-columns: 84px 1fr;
	padding: 18px;
}

.program-list article > span {
	background: var(--green);
	border-radius: 8px;
	color: #fff;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	padding: 8px 10px;
	text-align: center;
}

.category-grid {
	grid-template-columns: repeat(4, 1fr);
}

.category-card {
	align-items: flex-start;
	background-position: center;
	background-size: cover;
	border-radius: 8px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 220px;
	padding: 20px;
}

.category-card:hover {
	color: #fff;
	transform: translateY(-2px);
}

.category-card span {
	font-size: 20px;
	font-weight: 900;
}

.category-card small {
	color: rgba(255, 255, 255, .82);
	display: block;
	line-height: 1.45;
	margin-top: 6px;
}

.case-row article {
	background: #fff;
	border: 1px solid var(--line);
	display: grid;
	grid-template-columns: minmax(280px, 44%) 1fr;
}

.case-row img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.case-row article > div {
	padding: 32px;
}

.case-points {
	display: grid;
	gap: 6px;
	margin: 16px 0 0;
	padding-left: 20px;
}

.entry-hero,
.category-hero {
	background: var(--mist);
	padding: 64px 0;
}

.entry-hero.compact {
	padding: 52px 0;
}

.single-post-hero {
	background: linear-gradient(135deg, #edf7f4, #fff8f5);
}

.category-hero {
	background-position: center;
	background-size: cover;
	color: #fff;
	min-height: 310px;
}

.category-hero .breadcrumbs a,
.category-hero .breadcrumbs span,
.category-hero p {
	color: rgba(255, 255, 255, .88);
}

.breadcrumbs {
	align-items: center;
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 8px;
	margin-bottom: 14px;
}

.breadcrumbs a {
	color: var(--green);
	font-weight: 800;
}

.content-layout {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1fr) 320px;
	padding-bottom: 72px;
	padding-top: 44px;
}

.content-layout.single-column,
.news-intro {
	max-width: 900px;
}

.content-layout.single-column {
	display: block;
}

.content-main {
	min-width: 0;
}

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

.post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.post-card__image {
	background: var(--mist);
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.post-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

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

.post-card__title {
	font-size: 21px;
	margin: 10px 0;
}

.post-card p {
	margin-bottom: 12px;
}

.entry-meta {
	align-items: center;
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: 700;
	gap: 12px;
}

.entry-meta span,
.entry-meta a {
	align-items: center;
	display: inline-flex;
	gap: 5px;
}

.entry-content {
	color: #263530;
	font-size: 18px;
}

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

.entry-content h2 {
	font-size: 28px;
	margin-bottom: 12px;
	margin-top: 36px;
}

.entry-content ul,
.entry-content ol {
	padding-left: 24px;
}

.entry-lead {
	color: var(--ink);
	font-size: 21px;
	font-weight: 650;
	line-height: 1.55;
}

.featured-media,
.content-image {
	background: var(--mist);
	margin: 0 0 28px;
}

.featured-media img,
.content-image img {
	aspect-ratio: 16 / 9;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.content-grid {
	grid-template-columns: repeat(2, 1fr);
	margin: 28px 0;
}

.content-grid section,
.contact-panel,
.note-box,
.article-checklist,
.case-list article {
	background: var(--mist);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 22px;
}

.pricing-table {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, 1fr);
	margin: 28px 0;
}

.pricing-table.detailed section {
	display: flex;
	flex-direction: column;
}

.pricing-table.detailed ul {
	margin-top: auto;
}

.case-list {
	display: grid;
	gap: 18px;
	margin: 28px 0;
}

.price {
	color: var(--rose);
	font-size: 24px;
	font-weight: 900;
	margin: 0 0 12px;
}

.note-box {
	border-color: rgba(196, 141, 45, .35);
	margin-top: 34px;
}

.article-checklist {
	background: var(--shell);
	margin-top: 34px;
}

.article-checklist h2 {
	font-size: 24px;
	margin-top: 0;
}

.sidebar {
	display: grid;
	gap: 20px;
	position: sticky;
	top: 128px;
}

.widget {
	padding: 22px;
}

.widget-title {
	font-size: 18px;
	margin-bottom: 14px;
}

.clean-list,
.recent-posts,
.footer-links,
.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.clean-list li,
.recent-posts li {
	border-top: 1px solid var(--line);
	padding: 10px 0;
}

.clean-list li:first-child,
.recent-posts li:first-child {
	border-top: 0;
	padding-top: 0;
}

.recent-posts a {
	display: block;
	font-weight: 800;
	line-height: 1.35;
}

.recent-posts span {
	color: var(--muted);
	font-size: 13px;
}

.search-form {
	align-items: stretch;
	display: flex;
	gap: 8px;
}

.search-form input {
	border: 1px solid var(--line);
	border-radius: 8px;
	flex: 1;
	min-height: 44px;
	min-width: 0;
	padding: 9px 12px;
}

.search-form button {
	align-items: center;
	background: var(--green);
	border: 0;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	min-height: 44px;
	width: 48px;
}

.pagination-wrap {
	grid-column: 1 / -1;
	margin-top: 18px;
}

.nav-links,
.pagination-wrap {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	border: 1px solid var(--line);
	border-radius: 8px;
	display: inline-flex;
	min-width: 42px;
	padding: 8px 12px;
}

.page-numbers.current {
	background: var(--green);
	color: #fff;
}

.related-posts {
	background: var(--shell);
}

.site-footer {
	background: #102d27;
	color: rgba(255, 255, 255, .84);
}

.footer-grid {
	display: grid;
	gap: 34px;
	grid-template-columns: 1.4fr .8fr 1fr 1fr;
	padding-bottom: 44px;
	padding-top: 54px;
}

.footer-grid h2 {
	color: #fff;
	font-size: 17px;
	margin: 0 0 14px;
}

.footer-brand img {
	max-height: 58px;
	width: auto;
}

.footer-brand p {
	max-width: 330px;
}

.footer-links li,
.footer-contact li {
	margin-bottom: 10px;
}

.footer-contact li {
	align-items: flex-start;
	display: flex;
	gap: 9px;
}

.newsletter-form {
	display: flex;
	gap: 8px;
}

.newsletter-form input {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 8px;
	color: #fff;
	min-height: 44px;
	min-width: 0;
	padding: 10px 12px;
	width: 100%;
}

.newsletter-form button {
	background: var(--gold);
	border: 0;
	border-radius: 8px;
	color: #1b1b16;
	cursor: pointer;
	font-weight: 900;
	min-height: 44px;
	padding: 0 14px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-weight: 700;
	padding: 16px 0;
}

.empty-state,
.not-found-search {
	margin: 48px auto;
	max-width: 720px;
}

@media (max-width: 1040px) {
	.header-main {
		grid-template-columns: minmax(190px, 1fr) auto auto;
		position: relative;
	}

	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
		justify-self: end;
	}

	.primary-navigation {
		background: #fff;
		border-bottom: 1px solid var(--line);
		display: none;
		left: 0;
		overflow: visible;
		position: absolute;
		right: 0;
		top: 100%;
		width: 100%;
		z-index: 101;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation ul {
		align-items: stretch;
		display: grid;
		gap: 0;
		justify-content: stretch;
		padding: 12px 24px 20px;
	}

	.primary-navigation a {
		border-radius: 0;
		font-size: 16px;
		padding: 13px 0;
	}

	.header-cta {
		justify-self: end;
	}

	.hero-slide h1 {
		font-size: 42px;
	}

	.metrics,
	.category-grid,
	.audience-grid,
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.content-layout {
		grid-template-columns: 1fr;
	}

	.sidebar {
		position: static;
	}
}

@media (max-width: 760px) {
	.container {
		padding: 0 18px;
	}

	.topbar__inner {
		align-items: center;
		flex-direction: row;
		gap: 4px;
		min-height: 34px;
		padding-bottom: 0;
		padding-top: 0;
	}

	.topbar__inner a:not(:first-child),
	.topbar__inner span {
		display: none;
	}

	.header-main {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 66px;
	}

	.site-branding img {
		max-height: 46px;
		min-width: 0;
		width: min(190px, 100%);
	}

	.header-cta {
		display: none;
	}

	.hero-slider,
	.hero-slide__content {
		min-height: 530px;
	}

	.hero-slide__content {
		padding-bottom: 66px;
		padding-top: 54px;
	}

	.hero-slide h1 {
		font-size: 34px;
	}

	.hero-slide p {
		font-size: 17px;
	}

	.metrics,
	.feature-grid.three,
	.post-grid,
	.post-grid.three,
	.category-grid,
	.audience-grid,
	.program-layout,
	.split-grid,
	.case-row article,
	.content-grid,
	.content-grid.three,
	.pricing-table,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.section,
	.split-section,
	.related-posts {
		padding: 48px 0;
	}

	.section-heading h2,
	.split-grid h2,
	.entry-hero h1,
	.category-hero h1 {
		font-size: 30px;
	}

	.entry-hero,
	.entry-hero.compact,
	.category-hero {
		padding: 40px 0;
	}

	.category-card {
		min-height: 180px;
	}

	.program-list article {
		grid-template-columns: 1fr;
	}

	.entry-content {
		font-size: 16px;
	}

	.entry-lead {
		font-size: 18px;
	}

	.newsletter-form {
		flex-direction: column;
	}
}


/* KIRA_LOGO_REFRESH_START */
.site-logo img,.navbar-brand img,.custom-logo-link img,img.custom-logo{height:75px!important;width:auto!important;max-width:min(300px,48vw)!important;object-fit:contain!important;}
.site-footer img.flogo,footer img[src*='logo-light-kira-'],footer img[src*='logo-light.png']{height:69px!important;width:auto!important;max-width:min(290px,55vw)!important;object-fit:contain!important;}
@media(max-width:680px){.site-logo img,.navbar-brand img,.custom-logo-link img,img.custom-logo{height:58px!important;max-width:62vw!important}.site-footer img.flogo,footer img[src*='logo-light-kira-'],footer img[src*='logo-light.png']{height:54px!important;max-width:70vw!important}}
/* KIRA_LOGO_REFRESH_END */
