:root {
	--yoko-font-family-brand: "Roboto", Arial, sans-serif;
	--yoko-font-family-body: var(--yoko-font-family-brand);
	--yoko-font-family-heading: var(--yoko-font-family-brand);
	--yoko-font-family-subheading: var(--yoko-font-family-brand);
	--yoko-font-family-description: var(--yoko-font-family-brand);
	--yoko-font-family-meta: var(--yoko-font-family-brand);
	--yoko-font-family-button: var(--yoko-font-family-brand);
	--yoko-font-family-form: var(--yoko-font-family-brand);
	--yoko-font-family-quote: var(--yoko-font-family-brand);
	--yoko-font-family-code: var(--yoko-font-family-brand);
	--yoko-font-family: var(--yoko-font-family-body);
	--yoko-font-weight-body: 400;
	--yoko-font-weight-description: 400;
	--yoko-font-weight-meta: 500;
	--yoko-font-weight-subheading: 700;
	--yoko-font-weight-heading: 800;
	--yoko-font-weight-hero: 900;
	--yoko-font-weight-button: 700;
	--yoko-color-primary: #EC2028;
	--yoko-color-primary-dark: #C8171F;
	--yoko-color-navy: #053653;
	--yoko-color-accent: #F5B942;
	--yoko-color-heading: #000000;
	--yoko-color-text: #1F2937;
	--yoko-color-muted: #667085;
	--yoko-color-surface: #ffffff;
	--yoko-color-soft: #F7F9FC;
	--yoko-color-border: #E6EAF0;
	--yoko-color-success: #29B36A;
	--yoko-shadow-card: 0 12px 28px rgba(5, 54, 83, 0.08);
	--yoko-shadow-card-hover: 0 18px 38px rgba(5, 54, 83, 0.12);
	--yoko-radius-card: 8px;
	--yoko-radius-button: 8px;
	--yoko-font-size-hero-title: clamp(34px, 4.2vw, 58px);
	--yoko-font-size-section-title: clamp(22px, 2.2vw, 34px);
	--yoko-font-size-section-intro: clamp(14px, 1.2vw, 16px);
	--yoko-font-size-card-title: clamp(15px, 1.1vw, 18px);
	--yoko-font-size-body: 15px;
	--yoko-font-size-small: 13px;
	--yoko-font-size-button: 14px;
	--yoko-button-height: 44px;
	--yoko-button-padding-x: 22px;
	--yoko-button-border-width: 1px;
	--yoko-button-gap: 8px;
	--yoko-button-shadow: 0 10px 22px rgba(236, 32, 40, 0.16);
	--yoko-button-shadow-hover: 0 14px 28px rgba(236, 32, 40, 0.22);
	--yoko-button-focus-ring: rgba(236, 32, 40, 0.24);
	--yoko-section-spacing: clamp(42px, 6vw, 78px);
	--yoko-content-width: 1180px;
}

.yoko-button {
	align-items: center;
	border: var(--yoko-button-border-width) solid transparent;
	border-radius: var(--yoko-radius-button);
	box-shadow: none;
	display: inline-flex;
	font-family: var(--yoko-font-family-button, var(--yoko-font-family));
	font-size: var(--yoko-font-size-button);
	font-weight: var(--yoko-font-weight-button);
	gap: var(--yoko-button-gap);
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2;
	max-width: 100%;
	min-height: var(--yoko-button-height);
	min-width: 0;
	padding: 0 var(--yoko-button-padding-x);
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
	white-space: normal;
}

.yoko-button:hover,
.yoko-button:focus {
	text-decoration: none;
}

.yoko-button:focus-visible {
	outline: 3px solid var(--yoko-button-focus-ring);
	outline-offset: 3px;
}

.yoko-button--primary {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	box-shadow: var(--yoko-button-shadow);
	color: #ffffff;
}

.yoko-button--primary:hover,
.yoko-button--primary:focus-visible {
	background: var(--yoko-color-primary-dark);
	border-color: var(--yoko-color-primary-dark);
	box-shadow: var(--yoko-button-shadow-hover);
	color: #ffffff;
	transform: translateY(-1px);
}

.yoko-button--outline {
	background: #ffffff;
	border-color: var(--yoko-color-primary);
	box-shadow: none;
	color: var(--yoko-color-primary);
}

.yoko-button--outline:hover,
.yoko-button--outline:focus-visible {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	box-shadow: var(--yoko-button-shadow);
	color: #ffffff;
	transform: translateY(-1px);
}

.yoko-button :where(span, i, strong, b, em) {
	color: currentColor;
}

.yoko-home-section {
	background: var(--yoko-color-surface);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-body);
	padding: var(--yoko-section-spacing) 0;
}

.yoko-home-section *,
.yoko-home-section *::before,
.yoko-home-section *::after {
	box-sizing: border-box;
}

.yoko-home-section__inner {
	margin: 0 auto;
	width: 100%;
}

.yoko-home-section__inner:not(.container) {
	max-width: var(--yoko-content-width);
	padding: 0 clamp(16px, 3vw, 28px);
}

.yoko-home-section__header {
	margin: 0 auto clamp(24px, 4vw, 42px);
	max-width: 920px;
	text-align: center;
}

.yoko-home-section__title {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: var(--yoko-font-size-section-title);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0;
	text-wrap: balance;
	text-transform: uppercase;
}

.yoko-home-section__title p {
	display: inline;
	margin: 0;
}

.yoko-home-section__title p + p::before {
	content: "\A";
	white-space: pre;
}

.yoko-home-section__intro {
	color: var(--yoko-color-muted);
	font-size: var(--yoko-font-size-section-intro);
	line-height: 1.65;
	margin: 14px auto 0;
	max-width: 760px;
}

.yoko-home-section__intro p {
	margin: 0;
}

.yoko-section-heading {
	--yoko-section-heading-base: var(--yoko-color-heading);
	--yoko-section-heading-accent: var(--yoko-color-primary);
	--yoko-section-heading-subtitle: var(--yoko-color-muted);
	margin: 0 auto clamp(24px, 4vw, 42px);
	max-width: 920px;
	text-align: center;
}

.yoko-section-heading--align-left {
	margin-left: 0;
	margin-right: 0;
	text-align: left;
}

.yoko-section-heading--dark {
	--yoko-section-heading-base: #ffffff;
	--yoko-section-heading-subtitle: rgba(255, 255, 255, 0.84);
}

.yoko-section-heading--format-red {
	--yoko-section-heading-base: var(--yoko-color-primary);
	--yoko-section-heading-accent: var(--yoko-color-primary);
}

.yoko-section-heading .yoko-section-heading__title {
	color: var(--yoko-section-heading-base);
	font-family: var(--yoko-font-family-heading);
	font-size: var(--yoko-font-size-section-title);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
	text-transform: none;
	text-wrap: balance;
}

.yoko-section-heading .yoko-section-heading__base,
.yoko-section-heading .yoko-section-heading__accent {
	display: inline;
}

.yoko-section-heading .yoko-section-heading__accent {
	color: var(--yoko-section-heading-accent);
	font-weight: 800;
	text-transform: uppercase;
}

.yoko-section-heading .yoko-section-heading__subtitle {
	color: var(--yoko-section-heading-subtitle);
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-section-intro);
	font-weight: 500;
	line-height: 1.65;
	margin: 9px auto 0;
	max-width: 760px;
}

.yoko-section-heading--align-left .yoko-section-heading__subtitle {
	margin-left: 0;
	margin-right: 0;
}

.yoko-section-heading .yoko-section-heading__subtitle p {
	margin: 0;
}

.yoko-home-testimonials__intro-heading,
.yoko-home-lead-form__heading {
	margin-bottom: 18px;
	max-width: none;
}

.yoko-home-lead-form__heading .yoko-section-heading__title {
	font-size: clamp(24px, 2.5vw, 34px);
}

.yoko-home-section__actions {
	display: flex;
	justify-content: center;
	margin-top: clamp(24px, 4vw, 40px);
}

.yoko-home-section__button {
	align-items: center;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.25;
	min-height: 44px;
	padding: 11px 22px;
	text-align: center;
	white-space: normal;
}

.yoko-home-hero-slider {
	--yoko-hero-slider-bg-color: #1F1D29;
	background-color: var(--yoko-hero-slider-bg-color);
	background-image:
		linear-gradient(90deg, rgba(31, 29, 41, 0.98) 0%, rgba(31, 29, 41, 0.9) 48%, rgba(31, 29, 41, 0.82) 100%),
		var(--yoko-hero-slider-bg-image, none);
	background-position: center;
	background-size: cover;
	color: #ffffff;
	font-family: var(--yoko-font-family);
	overflow: hidden;
	padding: clamp(44px, 7vw, 88px) 0 clamp(34px, 5vw, 56px);
	position: relative;
}

.yoko-home-hero-slider *,
.yoko-home-hero-slider *::before,
.yoko-home-hero-slider *::after {
	box-sizing: border-box;
}

.yoko-home-hero-slider__inner {
	min-height: clamp(430px, 52vw, 570px);
	position: relative;
}

.yoko-home-hero-slider__track {
	display: grid;
	min-height: inherit;
	position: relative;
}

.yoko-home-hero-slide {
	align-items: center;
	display: grid;
	gap: clamp(30px, 5vw, 72px);
	grid-area: 1 / 1;
	grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
	opacity: 0;
	pointer-events: none;
	transform: translateX(22px);
	transition: opacity 260ms ease, transform 360ms ease;
	width: 100%;
}

.yoko-home-hero-slider.is-moving-prev .yoko-home-hero-slide {
	transform: translateX(-22px);
}

.yoko-home-hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
	z-index: 1;
}

.yoko-home-hero-slide__content {
	max-width: 520px;
	padding-bottom: 80px;
}

.yoko-home-hero-slide__brand {
	color: #ffffff;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(42px, 5.4vw, 70px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.95;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.yoko-home-hero-slide__heading {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family);
	font-size: clamp(18px, 1.7vw, 26px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 24px;
	text-transform: none;
}

.yoko-home-hero-slide__description {
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(15px, 1.25vw, 18px);
	font-weight: 600;
	line-height: 1.7;
	max-width: 520px;
}

.yoko-home-hero-slide__description p {
	margin: 0;
}

.yoko-home-hero-slide__button {
	align-items: center;
	background: var(--yoko-color-primary);
	border: 1px solid var(--yoko-color-primary);
	border-radius: 8px;
	box-shadow: 0 16px 32px rgba(236, 32, 40, 0.22);
	color: #ffffff;
	display: inline-flex;
	font-size: var(--yoko-font-size-button);
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	line-height: 1.2;
	margin-top: 28px;
	min-height: 48px;
	padding: 13px 24px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.yoko-home-hero-slide__button:hover,
.yoko-home-hero-slide__button:focus-visible {
	background: var(--yoko-color-primary-dark);
	border-color: var(--yoko-color-primary-dark);
	color: #ffffff;
	outline: 0;
	transform: translateY(-2px);
}

.yoko-home-hero-slide__button i {
	font-size: 14px;
}

.yoko-home-hero-slide__visual {
	min-height: clamp(340px, 40vw, 500px);
	position: relative;
}

.yoko-home-hero-slide__ring {
	border: clamp(9px, 1.5vw, 18px) solid rgba(236, 32, 40, 0.14);
	border-radius: 999px;
	content: "";
	height: min(72vw, 520px);
	position: absolute;
	right: -8%;
	top: 50%;
	transform: translateY(-50%);
	width: min(72vw, 520px);
}

.yoko-home-hero-slide__mini-card {
	background: rgba(31, 29, 41, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
	margin: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	transform: translateX(24px);
	transition: opacity 260ms ease, transform 420ms ease;
}

.yoko-home-hero-slide.is-active .yoko-home-hero-slide__mini-card {
	opacity: 1;
	transform: translateX(0);
}

.yoko-home-hero-slide.is-active .yoko-home-hero-slide__mini-card--large {
	transition-delay: 40ms;
}

.yoko-home-hero-slide.is-active .yoko-home-hero-slide__mini-card--top {
	transition-delay: 100ms;
}

.yoko-home-hero-slide.is-active .yoko-home-hero-slide__mini-card--bottom {
	transition-delay: 160ms;
}

.yoko-home-hero-slide__mini-card--large {
	height: 64%;
	left: 2%;
	top: 13%;
	width: 58%;
	z-index: 2;
}

.yoko-home-hero-slide__mini-card--top {
	height: 36%;
	right: 2%;
	top: 8%;
	width: 42%;
	z-index: 3;
}

.yoko-home-hero-slide__mini-card--bottom {
	bottom: 14%;
	height: 35%;
	right: 5%;
	width: 36%;
	z-index: 2;
}

.yoko-home-hero-slide__image-wrap {
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
}

.yoko-home-hero-slide__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-home-hero-slide__mini-card::after {
	background: linear-gradient(180deg, rgba(31, 29, 41, 0) 38%, rgba(31, 29, 41, 0.82) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.yoko-home-hero-slide__mini-card figcaption {
	bottom: 16px;
	color: #ffffff;
	font-size: clamp(13px, 1.1vw, 16px);
	font-weight: 800;
	left: 16px;
	line-height: 1.2;
	max-width: calc(100% - 32px);
	position: absolute;
	z-index: 1;
}

.yoko-home-hero-slider__controls {
	align-items: center;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	left: 15px;
	position: absolute;
	right: 15px;
	z-index: 4;
}

.yoko-home-hero-slider__nav {
	align-items: center;
	display: flex;
	gap: 10px;
}

.yoko-home-hero-slider__arrow {
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--yoko-radius-button);
	color: #ffffff;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	padding: 0;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
	width: 44px;
}

.yoko-home-hero-slider__arrow:hover,
.yoko-home-hero-slider__arrow:focus-visible {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	color: #ffffff;
	outline: 0;
	transform: translateY(-2px);
}

.yoko-home-hero-slider__arrow i {
	font-size: 14px;
}

.yoko-home-hero-slider__progress {
	background: rgba(255, 255, 255, 0.24);
	display: inline-block;
	height: 2px;
	margin-left: 14px;
	width: 72px;
}

.yoko-home-hero-slider__count {
	color: #ffffff;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(22px, 2.2vw, 32px);
	font-weight: 800;
	line-height: 1;
}

.yoko-home-difference-cards {
	background: var(--yoko-color-surface);
	padding-bottom: clamp(34px, 5vw, 58px);
}

.yoko-home-difference-cards__header,
.yoko-home-study-timeline__header {
	margin: 0 auto clamp(24px, 4vw, 34px);
	max-width: 760px;
	text-align: center;
}

.yoko-home-difference-cards__kicker,
.yoko-home-study-timeline__kicker {
	color: var(--yoko-color-muted);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.yoko-home-difference-cards__title,
.yoko-home-study-timeline__title {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
	margin: 0;
	text-transform: none;
	text-wrap: balance;
}

.yoko-home-difference-cards__title p,
.yoko-home-study-timeline__title p {
	display: inline;
	margin: 0;
}

.yoko-home-difference-cards__title p + p::before,
.yoko-home-study-timeline__title p + p::before {
	content: "\A";
	white-space: pre;
}

.yoko-home-difference-cards__intro,
.yoko-home-study-timeline__intro {
	color: var(--yoko-color-muted);
	font-size: var(--yoko-font-size-section-intro);
	line-height: 1.65;
	margin-top: 12px;
	max-width: 620px;
}

.yoko-home-difference-cards__intro p,
.yoko-home-study-timeline__intro p {
	margin: 0;
}

.yoko-home-difference-cards__grid {
	display: grid;
	gap: clamp(16px, 2vw, 22px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-home-difference-card {
	min-width: 0;
}

.yoko-home-difference-card__frame {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 10px 24px rgba(5, 54, 83, 0.05);
	color: var(--yoko-color-text);
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	min-height: 286px;
	padding: clamp(14px, 1.6vw, 16px);
	text-decoration: none;
	transform: translateY(0);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.yoko-home-difference-card--no-media .yoko-home-difference-card__frame {
	min-height: 218px;
	padding: clamp(20px, 2.2vw, 28px);
}

.yoko-home-difference-card__frame:hover,
.yoko-home-difference-card__frame:focus-visible,
.yoko-home-difference-card__frame:focus-within {
	border-color: rgba(236, 32, 40, 0.38);
	box-shadow: var(--yoko-shadow-card-hover);
	outline: 0;
	transform: translateY(-2px);
}

.yoko-home-difference-card__top {
	position: relative;
}

.yoko-home-difference-card__badge {
	align-self: flex-start;
	background: var(--yoko-color-primary);
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(5, 54, 83, 0.16);
	color: #ffffff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	left: 12px;
	line-height: 1.25;
	max-width: calc(100% - 24px);
	padding: 6px 11px;
	position: absolute;
	top: 12px;
	z-index: 2;
}

.yoko-home-difference-card--success .yoko-home-difference-card__badge {
	background: var(--yoko-color-success);
}

.yoko-home-difference-card--navy .yoko-home-difference-card__badge {
	background: var(--yoko-color-navy);
}

.yoko-home-difference-card--accent .yoko-home-difference-card__badge {
	background: var(--yoko-color-accent);
	color: var(--yoko-color-navy);
}

.yoko-home-difference-card--neutral .yoko-home-difference-card__badge {
	background: var(--yoko-color-muted);
}

.yoko-home-difference-card--no-media .yoko-home-difference-card__top {
	align-items: flex-start;
	display: flex;
}

.yoko-home-difference-card--no-media .yoko-home-difference-card__badge {
	position: static;
}

.yoko-home-difference-card__media {
	aspect-ratio: 16 / 9;
	background: var(--yoko-color-soft);
	border: 1px solid rgba(230, 234, 240, 0.9);
	border-radius: 8px;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.yoko-home-difference-card__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-home-difference-card__body {
	display: grid;
	gap: 8px;
	padding: 0 4px 4px;
}

.yoko-home-difference-card--no-media .yoko-home-difference-card__body {
	padding: 0;
}

.yoko-home-difference-card__body h3 {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family);
	font-size: clamp(16px, 1.2vw, 18px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0;
	text-transform: none;
}

.yoko-home-difference-card__description {
	color: var(--yoko-color-muted);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.62;
}

.yoko-home-difference-card__description p {
	margin: 0;
}

.yoko-home-study-timeline {
	background: var(--yoko-color-surface);
	border-top: 1px solid var(--yoko-color-border);
	padding-bottom: 0;
}

.yoko-home-study-timeline__steps {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(9, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 4px 0 0;
	position: relative;
}

.yoko-home-study-timeline__steps::before {
	background: var(--yoko-color-border);
	border-radius: 999px;
	content: "";
	height: 2px;
	left: 24px;
	pointer-events: none;
	position: absolute;
	right: 24px;
	top: 25px;
	z-index: 0;
}

.yoko-home-study-step {
	align-items: center;
	display: grid;
	gap: 12px;
	justify-items: center;
	min-width: 0;
	position: relative;
	text-align: center;
	z-index: 1;
}

.yoko-home-study-step__content {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	color: inherit;
	display: grid;
	font: inherit;
	gap: 12px;
	justify-items: center;
	margin: 0;
	min-height: 100%;
	padding: 0;
	position: relative;
	text-decoration: none;
	width: 100%;
	z-index: 2;
}

:where(a, button).yoko-home-study-step__content {
	cursor: pointer;
	pointer-events: auto;
	touch-action: manipulation;
}

.yoko-home-study-step__content:focus-visible {
	border-radius: var(--yoko-radius-card);
	outline: 2px solid rgba(236, 32, 40, 0.42);
	outline-offset: 6px;
}

.yoko-home-study-step__marker {
	align-items: center;
	background: var(--yoko-color-surface);
	border: 2px solid var(--yoko-color-border);
	border-radius: 999px;
	box-shadow: 0 5px 14px rgba(5, 54, 83, 0.05);
	color: var(--yoko-color-text);
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	line-height: 1;
	position: relative;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
	width: 44px;
	z-index: 1;
}

.yoko-home-study-step.is-active .yoko-home-study-step__marker,
.yoko-home-study-step.is-highlighted .yoko-home-study-step__marker,
.yoko-home-study-step:hover .yoko-home-study-step__marker,
.yoko-home-study-step:focus-within .yoko-home-study-step__marker {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	box-shadow: 0 12px 24px rgba(236, 32, 40, 0.22);
	color: #ffffff;
	transform: translateY(-2px);
}

.yoko-home-study-step__title {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	max-width: 110px;
	min-height: 36px;
	text-wrap: balance;
}

.yoko-home-study-step.is-active .yoko-home-study-step__title,
.yoko-home-study-step.is-highlighted .yoko-home-study-step__title,
.yoko-home-study-step:hover .yoko-home-study-step__title,
.yoko-home-study-step:focus-within .yoko-home-study-step__title {
	color: var(--yoko-color-heading);
}

.yoko-home-study-timeline__detail-list {
	margin-top: clamp(24px, 3.6vw, 40px);
}

.yoko-home-study-step-panel {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	display: grid;
	grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
	min-height: clamp(250px, 27vw, 320px);
	overflow: hidden;
}

.yoko-home-study-step-panel[hidden] {
	display: none !important;
}

.yoko-home-study-step-panel__media {
	background:
		linear-gradient(135deg, rgba(236, 32, 40, 0.13) 0%, rgba(247, 249, 252, 0.92) 48%, rgba(245, 185, 66, 0.1) 100%);
	border-right: 1px solid var(--yoko-color-border);
	display: grid;
	gap: 18px;
	grid-template-rows: auto 1fr;
	padding: clamp(20px, 3vw, 30px);
}

.yoko-home-study-step-panel__step-label {
	color: #b7791f;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-transform: uppercase;
}

.yoko-home-study-step-panel__media-frame {
	align-self: center;
	display: grid;
	justify-self: center;
	place-items: center;
	width: min(100%, 260px);
}

.yoko-home-study-step-panel__media-frame figure {
	aspect-ratio: 4 / 3;
	border-radius: var(--yoko-radius-card);
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.yoko-home-study-step-panel__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-home-study-step-panel__icon {
	align-items: center;
	background: rgba(236, 32, 40, 0.04);
	border: 2px solid rgba(236, 32, 40, 0.22);
	border-radius: 50%;
	color: var(--yoko-color-primary);
	display: inline-flex;
	font-size: clamp(42px, 5vw, 58px);
	height: clamp(112px, 13vw, 150px);
	justify-content: center;
	width: clamp(112px, 13vw, 150px);
}

.yoko-home-study-step-panel__content {
	align-content: center;
	display: grid;
	gap: 14px;
	padding: clamp(28px, 4.4vw, 56px);
}

.yoko-home-study-step-panel__subtitle {
	color: var(--yoko-color-primary);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.25;
	text-transform: uppercase;
}

.yoko-home-study-step-panel__content h3 {
	color: #111827;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(24px, 2.7vw, 34px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
	margin: 0;
	text-transform: none;
}

.yoko-home-study-step-panel__description {
	color: var(--yoko-color-muted);
	font-size: clamp(15px, 1.35vw, 17px);
	font-weight: 500;
	line-height: 1.75;
	max-width: 640px;
}

.yoko-home-study-step-panel__description p {
	margin: 0;
}

.yoko-home-study-step-panel__button {
	margin-top: 6px;
	width: fit-content;
}

.yoko-home-study-timeline__slim-cta {
	background: var(--yoko-color-primary);
	color: #ffffff;
	display: block;
	height: auto !important;
	margin-top: clamp(18px, 2.4vw, 28px);
	min-height: 0 !important;
	padding: 12px 0 !important;
}

.yoko-home-study-timeline__slim-cta-inner {
	align-items: center;
	display: flex;
	gap: clamp(24px, 5vw, 72px);
	justify-content: space-between;
	min-height: 0;
	width: 100%;
}

.yoko-home-study-timeline__slim-cta-copy {
	flex: 0 1 760px;
	max-width: 760px;
	min-width: 0;
}

.yoko-home-study-timeline__slim-cta-copy h3,
.yoko-home-study-timeline__slim-cta-copy p {
	overflow-wrap: anywhere;
	white-space: normal;
}

.yoko-home-study-timeline__slim-cta-copy h3 {
	color: #ffffff;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(17px, 1.4vw, 22px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0 0 4px;
	text-transform: none;
}

.yoko-home-study-timeline__slim-cta-copy p {
	color: rgba(255, 255, 255, 0.88);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.yoko-home-study-timeline__slim-cta-button {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(5, 54, 83, 0.12);
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 12px 24px rgba(5, 54, 83, 0.16);
	color: var(--yoko-color-heading);
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	margin-left: auto;
	min-height: 40px;
	padding: 9px 22px;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.yoko-home-study-timeline__slim-cta-button:hover,
.yoko-home-study-timeline__slim-cta-button:focus-visible {
	background: var(--yoko-color-navy);
	border-color: var(--yoko-color-navy);
	color: #ffffff;
	outline: 0;
	transform: translateY(-2px);
}

.yoko-home-stats-counter {
	--yoko-stats-bg: #ffffff;
	--yoko-stats-columns: 4;
	background: var(--yoko-stats-bg);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	padding: clamp(24px, 4vw, 42px) 0;
}

.yoko-home-stats-counter *,
.yoko-home-stats-counter *::before,
.yoko-home-stats-counter *::after {
	box-sizing: border-box;
}

.yoko-home-stats-counter__header {
	margin: 0 auto clamp(22px, 3vw, 34px);
	max-width: 760px;
	text-align: center;
}

.yoko-home-stats-counter__heading {
	color: #32363c;
	font-family: var(--yoko-font-family);
	font-size: clamp(13px, 1.05vw, 15px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0;
	text-transform: uppercase;
}

.yoko-home-stats-counter__intro {
	color: var(--yoko-color-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	margin-top: 6px;
	max-width: 620px;
}

.yoko-home-stats-counter__intro p {
	margin: 0;
}

.yoko-home-stats-counter__grid {
	display: grid;
	gap: clamp(10px, 1.4vw, 18px);
	grid-template-columns: repeat(var(--yoko-stats-columns), minmax(0, 1fr));
}

.yoko-home-stat-item {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: var(--yoko-radius-card);
	box-shadow: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	min-height: clamp(86px, 8vw, 112px);
	padding: clamp(16px, 2vw, 22px) 14px;
	text-align: center;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.yoko-home-stat-item:hover,
.yoko-home-stat-item:focus-within {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	transform: translateY(-2px);
}

.yoko-home-stat-item__number {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(28px, 2.7vw, 40px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 8px;
	white-space: nowrap;
}

.yoko-home-stat-item__label {
	color: #74777d;
	font-family: var(--yoko-font-family);
	font-size: clamp(13px, 1.05vw, 15px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0;
	max-width: 190px;
}

.yoko-home-achievements {
	background: var(--yoko-color-navy);
	padding: clamp(34px, 5vw, 56px) 0 clamp(30px, 4vw, 44px);
}

.yoko-home-achievements .yoko-home-section__header {
	margin-bottom: clamp(28px, 3.2vw, 36px);
	max-width: 860px;
}

.yoko-home-achievements .yoko-home-section__title,
.yoko-home-achievements .yoko-home-section__intro {
	color: #ffffff;
}

.yoko-home-achievements .yoko-home-section__title {
	font-size: clamp(25px, 2.35vw, 31px);
	line-height: 1.18;
}

.yoko-home-achievements .yoko-home-section__intro {
	font-size: clamp(15px, 1.3vw, 18px);
	font-weight: 600;
	line-height: 1.55;
	max-width: 820px;
}

.yoko-home-achievements__grid {
	display: grid;
	gap: clamp(24px, 2.5vw, 30px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yoko-home-achievement {
	background: var(--yoko-color-surface);
	border: 1px solid rgba(17, 91, 175, 0.08);
	border-radius: 14px;
	box-shadow: none;
	display: grid;
	grid-template-columns: minmax(150px, 44%) minmax(0, 56%);
	min-height: 172px;
	overflow: hidden;
	text-align: center;
}

.yoko-home-achievement__media {
	align-items: center;
	background: #ffffff;
	display: flex;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	padding: 18px 20px;
	width: 100%;
}

.yoko-home-achievement--no-media {
	grid-template-columns: 1fr;
}

.yoko-home-achievement__media img {
	display: block;
	height: auto;
	max-height: 128px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.yoko-home-achievement__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 22px clamp(20px, 2.5vw, 30px);
}

.yoko-home-achievement__number {
	color: var(--yoko-color-navy);
	font-size: clamp(46px, 4.4vw, 58px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 12px;
}

.yoko-home-achievement__label {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: clamp(16px, 1.35vw, 18px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.38;
	margin: 0;
}

.yoko-home-achievements .yoko-home-section__actions {
	margin-top: clamp(32px, 4.5vw, 54px);
}

.yoko-home-achievements .yoko-home-section__button {
	background: #ffffff !important;
	border: 0 !important;
	border-radius: var(--yoko-radius-button);
	box-shadow: none;
	color: var(--yoko-color-navy) !important;
	font-size: 14px;
	font-weight: 800;
	gap: 9px;
	min-height: 40px;
	padding: 9px 24px;
	text-transform: uppercase;
}

.yoko-home-achievements .yoko-home-section__button::before {
	background: currentColor;
	content: "";
	display: inline-block;
	flex: 0 0 auto;
	height: 15px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 21 23 12 2 3v7l15 2-15 2v7z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 21 23 12 2 3v7l15 2-15 2v7z'/%3E%3C/svg%3E") center / contain no-repeat;
	width: 15px;
}

.yoko-home-achievements .yoko-home-section__button:hover,
.yoko-home-achievements .yoko-home-section__button:focus {
	background: #f7f9fc !important;
	color: var(--yoko-color-navy) !important;
}

.yoko-home-journey {
	background: #ffffff;
	padding: clamp(38px, 5vw, 60px) 0 clamp(40px, 5vw, 64px);
}

.yoko-home-journey .yoko-home-section__header {
	margin-bottom: clamp(14px, 2vw, 22px);
	max-width: 560px;
}

.yoko-home-journey .yoko-home-section__title {
	color: var(--yoko-color-navy);
	font-size: clamp(21px, 1.9vw, 27px);
	font-weight: 800;
	line-height: 1.28;
}

.yoko-home-journey .yoko-home-section__title::after {
	background: #e51f35;
	content: "";
	display: block;
	height: 3px;
	margin: 14px auto 0;
	width: 84px;
}

.yoko-home-journey__banner {
	margin: 0 auto clamp(26px, 3.2vw, 38px);
	max-width: 880px;
}

.yoko-home-journey__banner img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
	width: 100%;
}

.yoko-home-journey__intro {
	color: var(--yoko-color-navy);
	font-size: clamp(13px, 1vw, 15px);
	font-weight: 800;
	line-height: 1.45;
	margin: 0 auto clamp(30px, 3.8vw, 44px);
	max-width: 680px;
	text-align: center;
	text-transform: uppercase;
}

.yoko-home-journey__intro p {
	margin: 0;
}

.yoko-home-journey__steps {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(28px, 3.2vw, 40px) clamp(18px, 2.4vw, 30px);
	justify-content: center;
	margin: 0 auto;
	max-width: 1100px;
}

.yoko-home-journey-step {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: flex;
	flex: 0 1 calc((100% - 120px) / 5);
	flex-direction: column;
	gap: 12px;
	min-height: 0;
	max-width: 190px;
	padding: 0;
	text-align: center;
}

.yoko-home-journey-step__media,
.yoko-home-journey-step__fallback-number {
	align-items: center;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	margin: 0;
	width: min(104px, 76%);
}

.yoko-home-journey-step__media img {
	display: block;
	height: auto;
	max-height: 108px;
	max-width: 104px;
	width: auto;
}

.yoko-home-journey-step__body {
	min-width: 0;
	width: 100%;
}

.yoko-home-journey-step__fallback-number {
	background: var(--yoko-color-primary);
	border-radius: 50%;
	color: #ffffff;
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}

.yoko-home-journey-step__eyebrow {
	display: none;
}

.yoko-home-journey-step__title {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: clamp(13px, 1vw, 15px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.32;
	margin: 0 auto;
	max-width: 170px;
}

.yoko-home-services {
	background: linear-gradient(180deg, var(--yoko-color-soft) 0%, #ffffff 100%);
	border-top: 1px solid var(--yoko-color-border);
	color: var(--yoko-color-text);
	padding: clamp(48px, 6vw, 72px) 0;
	position: relative;
}

.yoko-home-services::after {
	display: none;
}

.yoko-home-services .yoko-home-section__inner {
	position: relative;
	z-index: 1;
}

.yoko-home-services .yoko-home-section__title,
.yoko-home-services .yoko-home-section__intro {
	color: var(--yoko-color-heading);
}

.yoko-home-services .yoko-home-section__title {
	font-size: clamp(22px, 2.15vw, 30px);
	max-width: 980px;
}

.yoko-home-services .yoko-home-section__intro {
	color: var(--yoko-color-muted);
	max-width: 760px;
}

.yoko-home-services .yoko-section-heading {
	--yoko-section-heading-base: var(--yoko-color-heading);
	--yoko-section-heading-accent: var(--yoko-color-primary);
	--yoko-section-heading-subtitle: var(--yoko-color-muted);
	max-width: 1040px;
}

.yoko-home-services .yoko-section-heading__title {
	font-size: clamp(22px, 2.15vw, 30px);
}

.yoko-home-services__grid {
	display: grid;
	gap: clamp(24px, 3vw, 36px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 900px;
}

.yoko-home-service {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	position: relative;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.yoko-home-service:hover {
	box-shadow: var(--yoko-shadow-card-hover);
	transform: translateY(-2px);
}

.yoko-home-service__media {
	background: #eef3f9;
	aspect-ratio: 16 / 9;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.yoko-home-service__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
	width: 100%;
}

.yoko-home-service:hover .yoko-home-service__media img {
	transform: scale(1.04);
}

.yoko-home-service__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 0;
	padding: clamp(22px, 2.6vw, 30px);
	position: relative;
	z-index: 1;
}

.yoko-home-service__body::before {
	background: var(--yoko-color-primary);
	border-radius: 999px;
	content: "";
	display: block;
	height: 4px;
	margin: 0 0 14px;
	width: 42px;
}

.yoko-home-service__title {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: clamp(17px, 1.35vw, 20px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.yoko-home-service__description {
	color: var(--yoko-color-muted);
	font-size: 15px;
	line-height: 1.68;
	margin-bottom: 18px;
}

.yoko-home-service__description p {
	margin: 0;
}

.yoko-home-service__button {
	align-self: flex-start;
	background: var(--yoko-color-navy) !important;
	border: 1px solid var(--yoko-color-navy) !important;
	border-radius: var(--yoko-radius-button);
	color: #ffffff !important;
	font-size: 13px;
	font-weight: 800;
	margin-top: auto;
	min-height: 38px;
	padding: 8px 18px;
}

.yoko-home-service__button:hover,
.yoko-home-service__button:focus-visible {
	background: var(--yoko-color-primary) !important;
	border-color: var(--yoko-color-primary) !important;
	color: #ffffff !important;
}

.yoko-home-services .yoko-home-section__button {
	background: var(--yoko-color-primary) !important;
	border: 1px solid var(--yoko-color-primary) !important;
	border-radius: var(--yoko-radius-button);
	color: #ffffff !important;
	font-size: 13px;
	font-weight: 800;
	min-height: 38px;
	padding: 9px 22px;
}

.yoko-home-services .yoko-home-section__button:hover,
.yoko-home-services .yoko-home-section__button:focus-visible {
	background: var(--yoko-color-primary-dark) !important;
	border-color: var(--yoko-color-primary-dark) !important;
	color: #ffffff !important;
}

.yoko-home-split-header {
	align-items: flex-start;
	display: grid;
	gap: clamp(20px, 4vw, 54px);
	grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
	margin: 0 0 clamp(26px, 4vw, 44px);
}

.yoko-home-split-header__title p,
.yoko-home-split-header__title h2,
.yoko-home-split-header__copy h3 {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	letter-spacing: 0;
	margin: 0;
	text-transform: uppercase;
}

.yoko-home-split-header__title p,
.yoko-home-split-header__title h2 {
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 800;
	line-height: 0.95;
}

.yoko-home-split-header__copy h3 {
	font-size: clamp(18px, 1.55vw, 22px);
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 10px;
}

.yoko-home-split-header__copy div {
	color: var(--yoko-color-text);
	font-size: 15px;
	line-height: 1.7;
}

.yoko-home-logo-marquee {
	--yoko-logo-marquee-bg: #ffffff;
	--yoko-logo-marquee-card-bg: #ffffff;
	--yoko-logo-marquee-gap: clamp(12px, 1.6vw, 18px);
	--yoko-logo-marquee-speed: 30s;
	background: var(--yoko-logo-marquee-bg);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	overflow: hidden;
	padding: clamp(34px, 5vw, 58px) 0 clamp(28px, 4.5vw, 50px);
}

.yoko-home-logo-marquee *,
.yoko-home-logo-marquee *::before,
.yoko-home-logo-marquee *::after {
	box-sizing: border-box;
}

.yoko-home-logo-marquee__header {
	margin: 0 auto clamp(22px, 3vw, 34px);
	max-width: 920px;
	text-align: center;
}

.yoko-home-logo-marquee__heading {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(22px, 2.15vw, 32px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0;
	text-transform: none;
}

.yoko-home-logo-marquee__heading span,
.yoko-home-logo-marquee__heading strong {
	display: inline;
}

.yoko-home-logo-marquee__heading strong {
	color: var(--yoko-color-primary);
	font-weight: 800;
}

.yoko-home-logo-marquee__intro {
	color: var(--yoko-color-muted);
	font-size: var(--yoko-font-size-section-intro);
	line-height: 1.65;
	margin: 10px auto 0;
	max-width: 680px;
}

.yoko-home-logo-marquee__intro p {
	margin: 0;
}

.yoko-home-logo-marquee__viewport {
	display: grid;
	gap: clamp(12px, 1.8vw, 18px);
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
	overflow: hidden;
	width: 100vw;
}

.yoko-home-logo-marquee__row {
	overflow: hidden;
	width: 100%;
}

.yoko-home-logo-marquee__track {
	animation: yoko-home-logo-marquee-scroll var(--yoko-logo-marquee-speed) linear infinite;
	display: flex;
	width: max-content;
	will-change: transform;
}

.yoko-home-logo-marquee__row--reverse .yoko-home-logo-marquee__track {
	animation-direction: reverse;
}

.yoko-home-logo-marquee__viewport:hover .yoko-home-logo-marquee__track,
.yoko-home-logo-marquee__viewport:focus-within .yoko-home-logo-marquee__track {
	animation-play-state: paused;
}

.yoko-home-logo-marquee__group {
	display: flex;
	flex: 0 0 auto;
	gap: var(--yoko-logo-marquee-gap);
	padding-right: var(--yoko-logo-marquee-gap);
}

.yoko-home-logo-marquee-item {
	background: var(--yoko-logo-marquee-card-bg);
	border: 1px solid rgba(230, 234, 240, 0.92);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 12px 28px rgba(5, 54, 83, 0.1);
	flex: 0 0 auto;
	height: clamp(66px, 5.8vw, 82px);
	margin: 0;
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: clamp(150px, 12.5vw, 196px);
}

.yoko-home-logo-marquee-item:hover,
.yoko-home-logo-marquee-item:focus-within {
	border-color: rgba(236, 32, 40, 0.24);
	box-shadow: var(--yoko-shadow-card);
	transform: translateY(-2px);
}

.yoko-home-logo-marquee-item__inner {
	align-items: center;
	color: var(--yoko-color-heading);
	display: flex;
	height: 100%;
	justify-content: center;
	padding: 0 2px;
	text-decoration: none;
	width: 100%;
}

.yoko-home-logo-marquee-item__media {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	margin: 0;
	width: 100%;
}

.yoko-home-logo-marquee-item__image,
.yoko-home-logo-marquee-item__media img {
	display: block;
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	width: 100%;
}

.yoko-home-logo-marquee-item__fallback {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	overflow: hidden;
	text-align: center;
}

@keyframes yoko-home-logo-marquee-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.yoko-home-media-logos {
	--yoko-media-logos-bg: #F3F4F6;
	--yoko-media-logos-card-bg: var(--yoko-color-surface);
	--yoko-media-logos-columns: 6;
	background: var(--yoko-media-logos-bg);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	padding: clamp(42px, 5.8vw, 76px) 0;
}

.yoko-home-media-logos *,
.yoko-home-media-logos *::before,
.yoko-home-media-logos *::after {
	box-sizing: border-box;
}

.yoko-home-media-logos__inner {
	position: relative;
}

.yoko-home-media-logos__header {
	margin: 0 auto clamp(24px, 4vw, 42px);
	max-width: 920px;
	text-align: center;
}

.yoko-home-media-logos__heading {
	margin-bottom: 0;
}

.yoko-home-media-logos__grid {
	display: grid;
	gap: clamp(12px, 1.7vw, 18px);
	grid-template-columns: repeat(var(--yoko-media-logos-columns), minmax(0, 1fr));
	margin: 0;
}

.yoko-home-media-logo {
	margin: 0;
	min-width: 0;
}

.yoko-home-media-logo__inner {
	align-items: center;
	background: var(--yoko-media-logos-card-bg);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 10px 24px rgba(5, 54, 83, 0.07);
	color: var(--yoko-color-heading);
	display: flex;
	justify-content: center;
	min-height: 92px;
	overflow: hidden;
	padding: 18px;
	position: relative;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 100%;
}

.yoko-home-media-logo__inner:hover,
.yoko-home-media-logo__inner:focus-visible {
	border-color: rgba(236, 32, 40, 0.26);
	box-shadow: var(--yoko-shadow-card-hover);
	transform: translateY(-2px);
}

.yoko-home-media-logo__inner:focus-visible {
	outline: 2px solid rgba(236, 32, 40, 0.36);
	outline-offset: 3px;
}

.yoko-home-media-logo__media {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 0;
	width: 100%;
}

.yoko-home-media-logo__image,
.yoko-home-media-logo__media img {
	display: block;
	filter: none;
	height: 48px;
	margin: 0 auto;
	max-width: 150px;
	object-fit: contain;
	opacity: 1;
	transition: filter 160ms ease, opacity 160ms ease;
	width: 100%;
}

.yoko-home-media-logo__inner:hover .yoko-home-media-logo__image,
.yoko-home-media-logo__inner:hover .yoko-home-media-logo__media img,
.yoko-home-media-logo__inner:focus-visible .yoko-home-media-logo__image,
.yoko-home-media-logo__inner:focus-visible .yoko-home-media-logo__media img {
	filter: none;
	opacity: 1;
}

.yoko-home-media-logo__fallback {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--yoko-color-heading);
	display: -webkit-box;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(15px, 1.1vw, 18px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
	overflow: hidden;
	text-align: center;
	text-transform: none;
}

@media (max-width: 849px) {
	.yoko-home-media-logos__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.yoko-home-media-logo__inner {
		min-height: 84px;
	}
}

@media (max-width: 549px) {
	.yoko-home-media-logos {
		padding: clamp(34px, 11vw, 48px) 0;
	}

	.yoko-home-media-logos__grid {
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-home-media-logo__inner {
		min-height: 78px;
		padding: 14px 12px;
	}

	.yoko-home-media-logo__image,
	.yoko-home-media-logo__media img {
		height: 38px;
		max-width: 118px;
	}

	.yoko-home-media-logo__fallback {
		font-size: 14px;
		line-height: 1.2;
	}
}

.yoko-home-partners {
	background: linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f3f7fc 100%);
	overflow: hidden;
	padding: clamp(54px, 6vw, 84px) 0;
	position: relative;
}

.yoko-home-partners .yoko-home-split-header {
	align-items: end;
	border-bottom: 1px solid rgba(34, 60, 94, 0.1);
	margin-bottom: 0;
	padding-bottom: clamp(24px, 3vw, 34px);
}

.yoko-home-partners .yoko-home-split-header__title h2::after {
	background: var(--yoko-color-accent);
	border-radius: 999px;
	content: "";
	display: block;
	height: 4px;
	margin-top: 18px;
	width: 72px;
}

.yoko-home-partners .yoko-home-split-header__copy h3 {
	color: var(--yoko-color-heading);
}

.yoko-home-partners .yoko-home-split-header__copy div {
	color: #4c5a6c;
}

.yoko-home-partners__slider {
	--yoko-partner-gap: 20px;
	--yoko-partner-nav-gutter: 58px;
	--yoko-partner-nav-size: 42px;
	margin-top: clamp(22px, 3vw, 34px);
	padding: 0;
	position: relative;
}

.yoko-home-partners__viewport {
	margin: 0 var(--yoko-partner-nav-gutter);
	overflow: hidden;
	padding: 1px;
}

.yoko-home-partners__track {
	display: flex;
	gap: var(--yoko-partner-gap);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 6px 0 14px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.yoko-home-partners__track::-webkit-scrollbar {
	display: none;
}

.yoko-home-testimonials__track {
	display: grid;
	gap: 18px;
	grid-auto-flow: column;
	grid-auto-columns: clamp(190px, 22vw, 250px);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 4px 2px 16px;
	scroll-snap-type: inline mandatory;
	scrollbar-width: thin;
}

.yoko-home-partner {
	background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
	border: 1px solid rgba(17, 91, 175, 0.16);
	border-radius: 14px;
	box-shadow: 0 14px 32px rgba(15, 63, 143, 0.1);
	flex: 0 0 calc((100% - (var(--yoko-partner-gap) * 3)) / 4);
	min-height: 152px;
	overflow: hidden;
	position: relative;
	scroll-snap-align: start;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.yoko-home-partner::before {
	background: linear-gradient(90deg, var(--yoko-color-primary), var(--yoko-color-accent));
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.yoko-home-partner:hover {
	border-color: rgba(17, 91, 175, 0.3);
	box-shadow: 0 18px 42px rgba(15, 63, 143, 0.16);
	transform: translateY(-3px);
}

.yoko-home-partner__inner {
	align-items: center;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
	min-height: 152px;
	padding: 22px 18px 20px;
	text-decoration: none;
}

.yoko-home-partner__media {
	align-items: center;
	display: flex;
	height: 68px;
	justify-content: center;
	margin: 0;
	order: 1;
	width: 100%;
}

.yoko-home-partner__media img {
	display: block;
	height: auto;
	max-height: 66px;
	max-width: 156px;
	object-fit: contain;
	width: auto;
}

.yoko-home-partner__name {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--yoko-color-navy);
	display: -webkit-box;
	font-family: var(--yoko-font-family);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
	margin: 0;
	min-height: 31px;
	order: 2;
	overflow: hidden;
	text-align: center;
}

.yoko-home-partners__nav {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(17, 91, 175, 0.16);
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 12px 28px rgba(15, 63, 143, 0.16);
	color: var(--yoko-color-primary);
	cursor: pointer;
	display: flex;
	font-size: 0;
	font-weight: 700;
	height: var(--yoko-partner-nav-size);
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
	width: var(--yoko-partner-nav-size);
	z-index: 2;
}

.yoko-home-partners__nav::before {
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	content: "";
	display: block;
	height: 10px;
	width: 10px;
}

.yoko-home-partners__nav--prev::before {
	margin-left: 4px;
	transform: rotate(-135deg);
}

.yoko-home-partners__nav--next::before {
	margin-right: 4px;
	transform: rotate(45deg);
}

.yoko-home-partners__nav:hover,
.yoko-home-partners__nav:focus-visible {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	box-shadow: 0 16px 34px rgba(17, 91, 175, 0.24);
	color: #ffffff;
	outline: none;
	transform: translateY(-50%) scale(1.04);
}

.yoko-home-partners__nav--prev {
	left: calc((var(--yoko-partner-nav-gutter) - var(--yoko-partner-nav-size)) / 2);
}

.yoko-home-partners__nav--next {
	right: calc((var(--yoko-partner-nav-gutter) - var(--yoko-partner-nav-size)) / 2);
}

.yoko-home-partners__slider.is-static {
	--yoko-partner-nav-gutter: 0px;
}

.yoko-home-partners__slider.is-static .yoko-home-partners__nav {
	display: none;
}

.yoko-home-testimonials {
	background: #607487;
	color: #ffffff;
	overflow: hidden;
	padding: clamp(54px, 6vw, 84px) 0;
}

.yoko-home-testimonials__track {
	grid-auto-columns: clamp(320px, 34vw, 430px);
}

.yoko-home-testimonials__layout {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 62px);
	grid-template-columns: minmax(390px, 0.42fr) minmax(0, 1fr);
}

.yoko-home-testimonials__intro-panel > h2 {
	color: #ffffff;
	font-family: var(--yoko-font-family);
	font-size: clamp(25px, 2.65vw, 34px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 0 14px;
	text-wrap: balance;
	text-transform: uppercase;
}

@media (min-width: 850px) {
	.yoko-home-testimonials__intro-panel > h2 {
		white-space: nowrap;
	}
}

.yoko-home-testimonials__intro-panel div {
	color: rgba(255, 255, 255, 0.88);
	font-size: 15px;
	line-height: 1.65;
}

.yoko-home-testimonials__intro-panel figure {
	margin: 24px 0 0;
	max-width: 310px;
}

.yoko-home-testimonials__intro-panel img {
	display: block;
	height: auto;
	width: 100%;
}

.yoko-home-testimonial {
	background: #ffffff;
	border: 1px solid rgba(34, 60, 94, 0.08);
	border-radius: 16px;
	box-shadow: 0 18px 44px rgba(8, 26, 46, 0.18);
	color: var(--yoko-color-text);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	scroll-snap-align: start;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.yoko-home-testimonial:hover {
	box-shadow: 0 24px 56px rgba(8, 26, 46, 0.24);
	transform: translateY(-4px);
}

.yoko-home-testimonial__media {
	aspect-ratio: 16 / 9;
	background: #dce8f6;
	margin: 0;
	overflow: hidden;
}

.yoko-home-testimonial__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
	width: 100%;
}

.yoko-home-testimonial:hover .yoko-home-testimonial__media img {
	transform: scale(1.04);
}

.yoko-home-testimonial__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-start;
	padding: clamp(22px, 2.6vw, 30px);
}

.yoko-home-testimonial__body:empty,
.yoko-home-testimonial__meta:empty {
	display: none;
}

.yoko-home-testimonial__quote {
	color: #4d5b6c;
	font-size: 15px;
	line-height: 1.68;
	order: 2;
}

.yoko-home-testimonial__quote p {
	margin: 0;
}

.yoko-home-testimonial__meta {
	border-top: 0;
	margin: 0 0 14px;
	order: 1;
	padding-top: 0;
}

.yoko-home-testimonial__meta::before {
	background: #ec2128;
	border-radius: 999px;
	content: "";
	display: block;
	height: 4px;
	margin: 0 0 14px;
	width: 42px;
}

.yoko-home-testimonial__meta h3 {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.yoko-home-testimonial__meta p {
	color: var(--yoko-color-muted);
	font-size: 13px;
	line-height: 1.4;
	margin: 0;
}

.yoko-home-video-testimonials {
	background:
		linear-gradient(180deg, #ffffff 0%, #ffffff 66%, var(--yoko-color-soft) 100%);
	color: var(--yoko-color-text);
	overflow: hidden;
	position: relative;
}

.yoko-home-video-testimonials::before {
	background:
		linear-gradient(180deg, rgba(247, 249, 252, 0.72) 0%, rgba(247, 249, 252, 0) 100%);
	content: "";
	height: 150px;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
}

.yoko-home-video-testimonials__inner {
	position: relative;
	z-index: 1;
}

.yoko-home-video-testimonials__header {
	margin-bottom: 26px;
}

.yoko-home-video-testimonials__title {
	font-size: 22px;
	line-height: 1.25;
	text-transform: none;
}

.yoko-home-video-testimonials__title span {
	color: var(--yoko-color-primary);
	text-transform: uppercase;
}

.yoko-home-video-testimonials__intro {
	margin-top: 7px;
}

.yoko-home-video-testimonials__grid {
	display: grid;
	gap: clamp(18px, 2.4vw, 32px);
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yoko-home-video-testimonial {
	min-width: 0;
}

.yoko-home-video-testimonial__frame {
	aspect-ratio: 4 / 5;
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 10px 24px rgba(5, 54, 83, 0.05);
	color: #ffffff;
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	transform: translateY(0);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 100%;
}

.yoko-home-video-testimonial__frame:hover,
.yoko-home-video-testimonial__frame:focus-visible {
	border-color: rgba(236, 32, 40, 0.34);
	box-shadow: var(--yoko-shadow-card-hover);
	outline: 0;
	transform: translateY(-2px);
}

.yoko-home-video-testimonial__image {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
	width: 100%;
}

.yoko-home-video-testimonial__frame:hover .yoko-home-video-testimonial__image,
.yoko-home-video-testimonial__frame:focus-visible .yoko-home-video-testimonial__image {
	transform: scale(1.025);
}

.yoko-home-video-testimonial__frame::after {
	background: linear-gradient(180deg, rgba(5, 54, 83, 0) 58%, rgba(5, 54, 83, 0.42) 100%);
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 160ms ease;
}

.yoko-home-video-testimonial__frame:hover::after,
.yoko-home-video-testimonial__frame:focus-visible::after {
	opacity: 1;
}

.yoko-home-video-testimonial__play {
	align-items: center;
	background: var(--yoko-color-primary);
	border: 3px solid rgba(255, 255, 255, 0.88);
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 12px 26px rgba(236, 32, 40, 0.28);
	color: #ffffff;
	display: inline-flex;
	height: 54px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 54px;
	z-index: 2;
}

.yoko-home-video-testimonial__play i {
	font-size: 18px;
	margin-left: 3px;
}

.yoko-home-video-testimonial__frame:hover .yoko-home-video-testimonial__play,
.yoko-home-video-testimonial__frame:focus-visible .yoko-home-video-testimonial__play {
	background: var(--yoko-color-primary-dark);
	box-shadow: 0 16px 34px rgba(236, 32, 40, 0.36);
	transform: translate(-50%, -50%) scale(1.04);
}

.yoko-home-video-testimonial__caption {
	bottom: 0;
	display: grid;
	gap: 4px;
	left: 0;
	opacity: 0;
	padding: 34px 16px 16px;
	position: absolute;
	right: 0;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease;
	z-index: 2;
}

.yoko-home-video-testimonial__frame:hover .yoko-home-video-testimonial__caption,
.yoko-home-video-testimonial__frame:focus-visible .yoko-home-video-testimonial__caption {
	opacity: 1;
	transform: translateY(0);
}

.yoko-home-video-testimonial__caption strong {
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.32;
}

.yoko-home-video-testimonial__caption small {
	color: rgba(255, 255, 255, 0.84);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.yoko-home-video-testimonials-builder {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	font-family: var(--yoko-font-family);
	padding: 16px;
}

.yoko-home-video-testimonials-builder__header {
	margin-bottom: 12px;
	text-align: center;
}

.yoko-home-video-testimonials-builder__header strong {
	color: var(--yoko-color-navy);
	display: block;
	font-family: var(--yoko-font-family-heading);
	font-size: 16px;
	line-height: 1.3;
}

.yoko-home-video-testimonials-builder__header span {
	color: var(--yoko-color-primary);
}

.yoko-home-video-testimonials-builder__header small {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 4px;
}

.yoko-home-video-testimonials-builder__header.yoko-section-heading,
.yoko-course-social-builder__header.yoko-section-heading {
	margin: 0 0 12px;
	max-width: none;
}

.yoko-home-video-testimonials-builder__header .yoko-section-heading__title,
.yoko-course-social-builder__header .yoko-section-heading__title {
	font-size: 16px;
	line-height: 1.3;
}

.yoko-home-video-testimonials-builder__header .yoko-section-heading__base,
.yoko-course-social-builder__header .yoko-section-heading__base {
	color: var(--yoko-color-navy);
}

.yoko-home-video-testimonials-builder__header .yoko-section-heading__accent,
.yoko-course-social-builder__header .yoko-section-heading__accent {
	color: var(--yoko-color-primary);
}

.yoko-home-video-testimonials-builder__header .yoko-section-heading__subtitle,
.yoko-course-social-builder__header .yoko-section-heading__subtitle {
	font-size: 12px;
	line-height: 1.4;
	margin-top: 4px;
}

.yoko-home-video-testimonials-builder__grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yoko-home-video-testimonials-builder-item {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	display: grid;
	gap: 8px;
	padding: 9px;
}

.yoko-home-video-testimonials-builder-item__media {
	aspect-ratio: 4 / 5;
	background: var(--yoko-color-soft);
	border-radius: 6px;
	display: block;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.yoko-home-video-testimonials-builder-item__image,
.yoko-home-video-testimonials-builder-item__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-home-video-testimonials-builder-item__play {
	align-items: center;
	background: var(--yoko-color-primary);
	border-radius: var(--yoko-radius-button);
	color: #ffffff;
	display: flex;
	font-family: "Font Awesome 6 Free";
	font-size: 10px;
	font-weight: 900;
	height: 30px;
	justify-content: center;
	left: 50%;
	padding-left: 2px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
}

.yoko-home-video-testimonials-builder-item__play::before {
	content: "\f04b";
}

.yoko-home-video-testimonials-builder-item strong {
	color: var(--yoko-color-text);
	display: block;
	font-size: 12px;
	line-height: 1.3;
}

.yoko-home-video-testimonials-builder-item small {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 11px;
	line-height: 1.35;
}

.yoko-featured-video-playlist {
	background: var(--yoko-color-soft);
	color: var(--yoko-color-text);
}

.yoko-featured-video-playlist__header {
	margin-bottom: 24px;
}

.yoko-featured-video-playlist__layout {
	align-items: start;
	display: grid;
	gap: 20px;
	grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
}

.yoko-featured-video-playlist__player,
.yoko-featured-video-playlist__sidebar {
	min-width: 0;
}

.yoko-featured-video-playlist__frame {
	background: #061522;
	border: 1px solid rgba(5, 54, 83, 0.16);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	height: var(--yoko-featured-video-height, 420px);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.yoko-featured-video-playlist__iframe,
.yoko-featured-video-playlist__video {
	background: #061522;
	border: 0;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-featured-video-playlist__placeholder {
	align-items: center;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
	justify-content: center;
	padding: 24px;
	text-align: center;
}

.yoko-featured-video-playlist__placeholder-icon {
	align-items: center;
	background: var(--yoko-color-primary);
	border: 3px solid rgba(255, 255, 255, 0.9);
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 14px 30px rgba(236, 32, 40, 0.32);
	display: inline-flex;
	height: 58px;
	justify-content: center;
	width: 58px;
}

.yoko-featured-video-playlist__placeholder-icon i {
	font-size: 18px;
	margin-left: 3px;
}

.yoko-featured-video-playlist__placeholder p {
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	max-width: 320px;
}

.yoko-featured-video-playlist__current-title {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: 18px;
	font-weight: var(--yoko-font-weight-heading);
	letter-spacing: 0;
	line-height: 1.35;
	margin: 14px 0 0;
	overflow-wrap: anywhere;
}

.yoko-featured-video-playlist__sidebar {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 10px 24px rgba(5, 54, 83, 0.05);
	height: var(--yoko-featured-video-height, 420px);
	overflow: hidden;
}

.yoko-featured-video-playlist__list {
	-webkit-overflow-scrolling: touch;
	display: grid;
	gap: 8px;
	height: 100%;
	overflow-y: auto;
	padding: 8px;
	scrollbar-color: rgba(5, 54, 83, 0.28) transparent;
	scrollbar-width: thin;
}

.yoko-featured-video-playlist__list::-webkit-scrollbar {
	width: 6px;
}

.yoko-featured-video-playlist__list::-webkit-scrollbar-thumb {
	background: rgba(5, 54, 83, 0.24);
	border-radius: 999px;
}

.yoko-featured-video-playlist__item {
	align-items: center;
	appearance: none;
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	color: var(--yoko-color-text);
	cursor: pointer;
	display: grid;
	gap: 10px;
	grid-template-columns: 76px minmax(0, 1fr);
	min-height: 72px;
	padding: 8px;
	text-align: left;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 100%;
}

.yoko-featured-video-playlist__item:hover,
.yoko-featured-video-playlist__item:focus-visible {
	border-color: rgba(236, 32, 40, 0.36);
	box-shadow: 0 10px 22px rgba(5, 54, 83, 0.08);
	outline: 0;
	transform: translateY(-1px);
}

.yoko-featured-video-playlist__item:focus-visible {
	outline: 3px solid rgba(236, 32, 40, 0.2);
	outline-offset: 2px;
}

.yoko-featured-video-playlist__item.is-active {
	background: #fff7f7;
	border-color: rgba(236, 32, 40, 0.46);
	box-shadow: inset 3px 0 0 var(--yoko-color-primary);
}

.yoko-featured-video-playlist__item-thumb {
	aspect-ratio: 16 / 9;
	background: var(--yoko-color-soft);
	border-radius: 6px;
	display: block;
	min-width: 0;
	overflow: hidden;
	position: relative;
	width: 76px;
}

.yoko-featured-video-playlist__item-thumb-image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-featured-video-playlist__item-thumb-placeholder {
	background:
		linear-gradient(135deg, rgba(236, 32, 40, 0.12), rgba(5, 54, 83, 0.08)),
		var(--yoko-color-soft);
	border-radius: var(--yoko-radius-button);
	display: block;
	height: 100%;
	width: 100%;
}

.yoko-featured-video-playlist__item-title {
	color: var(--yoko-color-text);
	display: -webkit-box;
	font-family: var(--yoko-font-family-body);
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.32;
	overflow: hidden;
	overflow-wrap: anywhere;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.yoko-featured-video-item-link {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family-body);
	font-weight: 700;
	text-decoration: none;
}

.yoko-featured-video-item-link:hover,
.yoko-featured-video-item-link:focus-visible {
	color: var(--yoko-color-primary-dark);
	text-decoration: underline;
}

.yoko-featured-video-playlist-builder {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	font-family: var(--yoko-font-family);
	padding: 16px;
}

.yoko-featured-video-playlist-builder__header.yoko-section-heading {
	margin: 0 0 12px;
	max-width: none;
}

.yoko-featured-video-playlist-builder__header .yoko-section-heading__title {
	font-size: 16px;
	line-height: 1.3;
}

.yoko-featured-video-playlist-builder__header .yoko-section-heading__base {
	color: var(--yoko-section-heading-base, var(--yoko-color-heading));
}

.yoko-featured-video-playlist-builder__header .yoko-section-heading__accent {
	color: var(--yoko-section-heading-accent, var(--yoko-color-primary));
}

.yoko-featured-video-playlist-builder__header .yoko-section-heading__subtitle {
	color: var(--yoko-color-muted);
	font-size: 12px;
	line-height: 1.4;
	margin-top: 4px;
}

.yoko-featured-video-playlist-builder__layout {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 7fr) minmax(120px, 3fr);
}

.yoko-featured-video-playlist-builder__player {
	align-items: center;
	background: #061522;
	border-radius: var(--yoko-radius-card);
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	min-height: 180px;
	padding: 18px;
	text-align: center;
}

.yoko-featured-video-playlist-builder__player strong {
	color: #ffffff;
	font-size: 14px;
	line-height: 1.3;
}

.yoko-featured-video-playlist-builder__player small {
	color: rgba(255, 255, 255, 0.75);
	font-size: 11px;
	line-height: 1.35;
}

.yoko-featured-video-playlist-builder__play {
	align-items: center;
	background: var(--yoko-color-primary);
	border-radius: var(--yoko-radius-button);
	color: #ffffff;
	display: inline-flex;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	justify-content: center;
}

.yoko-featured-video-playlist-builder__play {
	height: 42px;
	padding-left: 2px;
	width: 42px;
}

.yoko-featured-video-playlist-builder__play::before {
	content: "\f04b";
}

.yoko-featured-video-playlist-builder__list {
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	display: grid;
	gap: 8px;
	max-height: 180px;
	overflow-y: auto;
	padding: 8px;
}

.yoko-featured-video-playlist-builder-item {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	display: grid;
	gap: 8px;
	grid-template-columns: 48px minmax(0, 1fr);
	padding: 8px;
}

.yoko-featured-video-playlist-builder-item__thumb {
	aspect-ratio: 16 / 9;
	background: var(--yoko-color-soft);
	border-radius: 5px;
	display: block;
	margin: 0;
	overflow: hidden;
	width: 48px;
}

.yoko-featured-video-playlist-builder-item__thumb img,
.yoko-featured-video-playlist-builder-item__thumb-placeholder {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-featured-video-playlist-builder-item__thumb-placeholder {
	background:
		linear-gradient(135deg, rgba(236, 32, 40, 0.12), rgba(5, 54, 83, 0.08)),
		var(--yoko-color-soft);
}

.yoko-featured-video-playlist-builder-item strong,
.yoko-featured-video-playlist-builder-item small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-featured-video-playlist-builder-item strong {
	color: var(--yoko-color-text);
	font-size: 12px;
	line-height: 1.3;
}

.yoko-featured-video-playlist-builder-item small {
	color: var(--yoko-color-muted);
	font-size: 11px;
	line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
	.yoko-featured-video-playlist__item {
		transition: none;
	}

	.yoko-featured-video-playlist__item:hover,
	.yoko-featured-video-playlist__item:focus-visible {
		transform: none;
	}
}

@media (max-width: 849px) {
	.yoko-featured-video-playlist__layout,
	.yoko-featured-video-playlist-builder__layout {
		grid-template-columns: 1fr;
	}

	.yoko-featured-video-playlist__frame {
		height: min(var(--yoko-featured-video-height, 420px), 360px);
	}

	.yoko-featured-video-playlist__sidebar {
		height: auto;
		max-height: 320px;
	}

	.yoko-featured-video-playlist__list {
		max-height: 320px;
	}
}

@media (max-width: 549px) {
	.yoko-featured-video-playlist__header {
		margin-bottom: 20px;
	}

	.yoko-featured-video-playlist__layout {
		gap: 16px;
	}

	.yoko-featured-video-playlist__frame {
		height: 220px;
	}

	.yoko-featured-video-playlist__current-title {
		font-size: 16px;
		margin-top: 10px;
	}

	.yoko-featured-video-playlist__sidebar,
	.yoko-featured-video-playlist__list {
		max-height: 280px;
	}

	.yoko-featured-video-playlist__item {
		gap: 8px;
		grid-template-columns: 68px minmax(0, 1fr);
		min-height: 66px;
		padding: 8px;
	}

	.yoko-featured-video-playlist__item-thumb {
		width: 68px;
	}

	.yoko-featured-video-playlist__item-title {
		font-size: 12px;
		line-height: 1.35;
	}
}

.yoko-home-community {
	background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
	padding: clamp(46px, 6vw, 76px) 0;
}

.yoko-home-community .yoko-home-section__header {
	max-width: 980px;
}

.yoko-home-community .yoko-home-section__title {
	font-size: clamp(22px, 2.45vw, 34px);
}

.yoko-home-community__grid {
	display: grid;
	gap: clamp(22px, 2.4vw, 30px);
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yoko-home-community-channel {
	background: #ffffff;
	border: 1px solid rgba(34, 60, 94, 0.08);
	border-radius: 16px;
	box-shadow: 0 18px 44px rgba(15, 63, 143, 0.1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.yoko-home-community-channel:hover {
	box-shadow: 0 24px 56px rgba(15, 63, 143, 0.16);
	transform: translateY(-4px);
}

.yoko-home-community-channel__media {
	aspect-ratio: 16 / 9;
	background: #eef3f9;
	margin: 0;
	overflow: hidden;
}

.yoko-home-community-channel__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
	width: 100%;
}

.yoko-home-community-channel:hover .yoko-home-community-channel__media img {
	transform: scale(1.04);
}

.yoko-home-community-channel__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(20px, 2vw, 24px);
}

.yoko-home-community-channel__body::before {
	background: #ec2128;
	border-radius: 999px;
	content: "";
	display: block;
	height: 4px;
	margin: 0 0 14px;
	width: 42px;
}

.yoko-home-community-channel__body h3 {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.yoko-home-community-channel__body div {
	color: #4d5b6c;
	font-size: 14px;
	line-height: 1.65;
	margin-bottom: 18px;
}

.yoko-home-community-channel__body p {
	margin: 0;
}

.yoko-home-community-channel__button,
.yoko-home-community-channel__body .button {
	align-self: flex-start;
	align-items: center;
	background: linear-gradient(135deg, var(--yoko-color-primary) 0%, var(--yoko-color-primary-dark) 100%) !important;
	border: 1px solid rgba(17, 91, 175, 0.16) !important;
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 10px 22px rgba(17, 91, 175, 0.2);
	color: #ffffff !important;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 0;
	margin-top: auto;
	min-height: 42px;
	padding: 11px 20px;
	position: relative;
	text-align: center;
	text-shadow: none;
	transform: translateY(0);
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
	white-space: normal;
}

.yoko-home-community-channel__button::after,
.yoko-home-community-channel__body .button::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	display: block;
	height: 7px;
	margin-left: 2px;
	transform: rotate(-45deg);
	width: 7px;
}

.yoko-home-community-channel__button:hover,
.yoko-home-community-channel__button:focus,
.yoko-home-community-channel__body .button:hover,
.yoko-home-community-channel__body .button:focus {
	background: linear-gradient(135deg, #0f6ccd 0%, var(--yoko-color-primary) 100%) !important;
	border-color: rgba(17, 91, 175, 0.32) !important;
	box-shadow: 0 14px 28px rgba(17, 91, 175, 0.26);
	color: #ffffff !important;
	transform: translateY(-2px);
}

.yoko-home-community-channel__button:focus-visible,
.yoko-home-community-channel__body .button:focus-visible {
	outline: 3px solid rgba(242, 101, 34, 0.32);
	outline-offset: 3px;
}

.yoko-home-community-channel__button:active,
.yoko-home-community-channel__body .button:active {
	box-shadow: 0 8px 18px rgba(17, 91, 175, 0.2);
	transform: translateY(0);
}

.yoko-home-reasons {
	background: #F3F4F6;
	color: var(--yoko-color-text);
	overflow: hidden;
	padding: clamp(54px, 6vw, 82px) 0;
	position: relative;
}

.yoko-home-reasons .yoko-home-section__inner {
	position: relative;
	z-index: 1;
}

@keyframes yoko-reasons-education-drift {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(180px, 180px, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.yoko-home-reasons::before {
		animation: none;
	}
}

.yoko-home-reasons .yoko-home-section__title,
.yoko-home-reasons .yoko-home-section__intro {
	color: var(--yoko-color-heading);
}

.yoko-home-reasons .yoko-home-section__title {
	font-size: clamp(23px, 2.05vw, 31px);
	line-height: 1.18;
	margin-left: auto;
	margin-right: auto;
	max-width: min(100%, 1120px);
	text-wrap: pretty;
}

.yoko-home-reasons .yoko-home-section__intro {
	color: var(--yoko-color-muted);
}

.yoko-home-reasons .yoko-section-heading {
	--yoko-section-heading-base: var(--yoko-color-heading);
	--yoko-section-heading-subtitle: var(--yoko-color-muted);
	max-width: min(100%, 1120px);
}

.yoko-home-reasons .yoko-section-heading__title {
	font-size: clamp(21px, 2vw, 29px);
	line-height: 1.18;
}

@media (min-width: 1024px) {
	.yoko-home-reasons .yoko-section-heading__title {
		white-space: nowrap;
	}
}

.yoko-home-reasons__grid {
	display: grid;
	gap: clamp(20px, 2.5vw, 30px);
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yoko-home-reason {
	background: var(--yoko-color-surface);
	border: 1px solid rgba(5, 54, 83, 0.1);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	overflow: hidden;
	position: relative;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.yoko-home-reason:hover {
	background: var(--yoko-color-surface);
	border-color: rgba(236, 32, 40, 0.28);
	box-shadow: var(--yoko-shadow-card-hover);
	transform: translateY(-4px);
}

.yoko-home-reason__media {
	aspect-ratio: 16 / 10;
	background: var(--yoko-color-soft);
	margin: 0;
	overflow: hidden;
}

.yoko-home-reason__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
	width: 100%;
}

.yoko-home-reason:hover .yoko-home-reason__media img {
	transform: scale(1.04);
}

.yoko-home-reason__body {
	padding: 0 20px 22px;
}

.yoko-home-reason__number {
	align-items: center;
	background: linear-gradient(135deg, #ff5a61 0%, var(--yoko-color-primary) 100%);
	border: 3px solid #ffffff;
	border-radius: 999px;
	box-shadow: 0 10px 20px rgba(236, 32, 40, 0.22);
	color: #ffffff;
	display: flex;
	font-size: 16px;
	font-weight: 800;
	height: 40px;
	justify-content: center;
	line-height: 1;
	margin: -20px 0 14px;
	position: relative;
	width: 40px;
	z-index: 1;
}

.yoko-home-reason h3 {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.yoko-home-reason ul,
.yoko-home-reason__description {
	color: var(--yoko-color-muted);
	font-size: 13px;
	line-height: 1.55;
}

.yoko-home-reason ul,
.yoko-home-reason__description ul,
.yoko-home-reason__description ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.yoko-home-reason__description p,
.yoko-home-reason__description ul,
.yoko-home-reason__description ol {
	margin: 0 0 8px;
}

.yoko-home-reason__description > :last-child {
	margin-bottom: 0;
}

.yoko-home-reason__description a {
	color: var(--yoko-color-heading);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.yoko-home-reason li {
	margin-bottom: 8px;
	padding-left: 0;
}

.yoko-home-reason li::before {
	content: "";
	display: none;
}

.yoko-home-posts {
	background: #ffffff;
	padding: clamp(46px, 6vw, 76px) 0;
}

.yoko-home-posts__grid {
	display: grid;
	gap: clamp(18px, 2vw, 26px);
	grid-template-columns: repeat(var(--yoko-post-columns, 4), minmax(0, 1fr));
}

.yoko-home-post-card {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(15, 63, 143, 0.08);
	overflow: hidden;
}

.yoko-home-post-card__media {
	aspect-ratio: 16 / 10;
	background: #eef3f9;
	display: block;
	overflow: hidden;
}

.yoko-home-post-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-home-post-card__body {
	padding: 16px;
}

.yoko-home-post-card time {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 8px;
}

.yoko-home-post-card h3 {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.42;
	margin: 0 0 12px;
}

.yoko-home-post-card h3 a {
	color: inherit;
	text-decoration: none;
}

.yoko-home-post-card p {
	color: var(--yoko-color-text);
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 12px;
}

.yoko-home-post-card__link {
	color: var(--yoko-color-primary);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.yoko-home-posts__empty {
	grid-column: 1 / -1;
	text-align: center;
}

.yoko-home-posts__more {
	display: flex;
	justify-content: center;
	margin-top: clamp(22px, 3.4vw, 36px);
}

.yoko-home-posts__all-button {
	align-items: center;
	background: var(--yoko-color-primary);
	border: 1px solid var(--yoko-color-primary);
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 12px 26px rgba(236, 32, 40, 0.18);
	color: #ffffff;
	display: inline-flex;
	font-size: var(--yoko-font-size-button);
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 44px;
	min-width: 138px;
	padding: 12px 26px;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.yoko-home-posts__all-button:hover,
.yoko-home-posts__all-button:focus-visible {
	background: var(--yoko-color-primary-dark);
	border-color: var(--yoko-color-primary-dark);
	box-shadow: 0 16px 30px rgba(236, 32, 40, 0.24);
	color: #ffffff;
	outline: 0;
	transform: translateY(-2px);
}

.yoko-home-lead-form {
	background: #ffffff;
	padding: clamp(46px, 6vw, 76px) 0;
}

.yoko-home-lead-form__layout {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.54fr);
}

.yoko-home-lead-form__visual {
	position: relative;
}

.yoko-home-lead-form__visual figure {
	margin: 0;
}

.yoko-home-lead-form__visual img {
	display: block;
	height: auto;
	max-width: 520px;
	width: 100%;
}

.yoko-home-lead-form__panel {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 12px;
	box-shadow: 0 16px 38px rgba(15, 63, 143, 0.1);
	padding: clamp(24px, 4vw, 42px);
}

.yoko-home-lead-form__panel > h2 {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: clamp(24px, 2.5vw, 34px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.yoko-home-lead-form__intro {
	color: var(--yoko-color-muted);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 18px;
}

.yoko-home-lead-form__form :is(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], input[type="search"], input[type="date"], textarea, select) {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(5, 54, 83, 0.04);
	color: var(--yoko-color-text);
	display: block;
	font-family: var(--yoko-font-family);
	font-size: 14px;
	line-height: 1.4;
	min-height: 44px;
	padding: 10px 12px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
	width: 100%;
}

.yoko-home-lead-form__form :is(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], input[type="search"], input[type="date"], textarea, select):focus {
	border-color: rgba(236, 32, 40, 0.45);
	box-shadow: 0 0 0 3px rgba(236, 32, 40, 0.1);
	outline: 0;
}

.yoko-home-lead-form__form :is(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], input[type="search"], input[type="date"], textarea)::placeholder {
	color: #7a8596;
	opacity: 1;
}

.yoko-home-lead-form__form select {
	-webkit-appearance: none;
	appearance: none;
	background-color: #ffffff;
	background-image:
		linear-gradient(45deg, transparent 50%, #7a8596 50%),
		linear-gradient(135deg, #7a8596 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 50%,
		calc(100% - 13px) 50%;
	background-repeat: no-repeat;
	background-size:
		5px 5px,
		5px 5px;
	color: #7a8596;
	padding-right: 38px;
}

.yoko-home-lead-form__form select[data-yoko-empty-select="false"] {
	color: var(--yoko-color-text);
}

.yoko-home-lead-form__form select[data-yoko-empty-select="true"] {
	color: #7a8596;
}

.yoko-home-lead-form__form select option {
	color: var(--yoko-color-text);
}

.yoko-home-lead-form__form select option[value=""] {
	color: #7a8596;
}

.yoko-home-lead-form__form textarea {
	min-height: 118px;
	resize: vertical;
}

.yoko-home-lead-form__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit, .button) {
	background: var(--yoko-color-navy);
	border-radius: var(--yoko-radius-button);
	color: #ffffff;
	font-weight: 800;
	min-height: 44px;
	padding-inline: 24px;
}

.yoko-home-lead-form__fake-field {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(5, 54, 83, 0.04);
	height: 44px;
	margin-bottom: 12px;
}

.yoko-home-lead-form__fake-field--textarea {
	height: 92px;
}

@media (prefers-reduced-motion: reduce) {
	.yoko-home-hero-slide,
	.yoko-home-hero-slide__mini-card,
	.yoko-home-hero-slide__button,
	.yoko-home-hero-slider__arrow,
	.yoko-home-stat-item,
	.yoko-home-difference-card__frame,
		.yoko-home-study-step__marker,
		.yoko-home-study-timeline__slim-cta-button,
		.yoko-home-logo-marquee-item,
		.yoko-home-posts__all-button,
		.yoko-home-video-testimonial__frame,
		.yoko-home-video-testimonial__image,
	.yoko-home-video-testimonial__play,
	.yoko-home-video-testimonial__caption {
		transition: none;
	}

	.yoko-home-hero-slide,
	.yoko-home-hero-slider.is-moving-prev .yoko-home-hero-slide,
	.yoko-home-hero-slide__mini-card,
	.yoko-home-hero-slide.is-active .yoko-home-hero-slide__mini-card,
	.yoko-home-hero-slide__button:hover,
	.yoko-home-hero-slide__button:focus-visible,
	.yoko-home-hero-slider__arrow:hover,
	.yoko-home-hero-slider__arrow:focus-visible,
	.yoko-home-stat-item:hover,
	.yoko-home-stat-item:focus-within,
	.yoko-home-difference-card__frame:hover,
	.yoko-home-difference-card__frame:focus-visible,
	.yoko-home-difference-card__frame:focus-within,
	.yoko-home-study-step.is-highlighted .yoko-home-study-step__marker,
		.yoko-home-study-step:hover .yoko-home-study-step__marker,
		.yoko-home-study-step:focus-within .yoko-home-study-step__marker,
		.yoko-home-study-timeline__slim-cta-button:hover,
		.yoko-home-study-timeline__slim-cta-button:focus-visible,
		.yoko-home-logo-marquee-item:hover,
		.yoko-home-logo-marquee-item:focus-within,
		.yoko-home-posts__all-button:hover,
		.yoko-home-posts__all-button:focus-visible,
		.yoko-home-video-testimonial__frame:hover,
	.yoko-home-video-testimonial__frame:focus-visible,
	.yoko-home-video-testimonial__frame:hover .yoko-home-video-testimonial__image,
	.yoko-home-video-testimonial__frame:focus-visible .yoko-home-video-testimonial__image {
		transform: none;
	}

	.yoko-home-video-testimonial__frame:hover .yoko-home-video-testimonial__play,
	.yoko-home-video-testimonial__frame:focus-visible .yoko-home-video-testimonial__play {
		transform: translate(-50%, -50%);
	}

	.yoko-home-logo-marquee__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: auto;
	}

	.yoko-home-logo-marquee__group {
		flex-wrap: wrap;
		justify-content: center;
		padding-right: 0;
	}

	.yoko-home-logo-marquee__group[aria-hidden="true"] {
		display: none;
	}

	.yoko-home-logo-marquee__viewport {
		-webkit-mask-image: none;
		mask-image: none;
	}
}

@media (max-width: 849px) {
	.yoko-home-hero-slider {
		padding: 42px 0 34px;
	}

	.yoko-home-hero-slider__inner {
		min-height: 0;
	}

	.yoko-home-hero-slide {
		gap: 28px;
		grid-template-columns: 1fr;
	}

	.yoko-home-hero-slide__content {
		max-width: 620px;
		padding-bottom: 0;
	}

	.yoko-home-hero-slide__visual {
		min-height: clamp(320px, 58vw, 450px);
	}

	.yoko-home-hero-slide__ring {
		right: -16%;
		width: min(92vw, 470px);
		height: min(92vw, 470px);
	}

	.yoko-home-hero-slider__controls {
		margin-top: 24px;
		position: static;
	}

	.yoko-home-stats-counter__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-home-difference-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-home-study-timeline__steps {
		gap: 22px 14px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.yoko-home-study-timeline__steps::before {
		display: none;
	}

	.yoko-home-study-step {
		background: var(--yoko-color-surface);
		border: 1px solid var(--yoko-color-border);
		border-radius: var(--yoko-radius-card);
		box-shadow: 0 8px 18px rgba(5, 54, 83, 0.05);
		padding: 14px 12px;
	}

	.yoko-home-study-step__title {
		max-width: 150px;
		min-height: 0;
	}

	.yoko-home-study-timeline__detail-list {
		margin-top: 22px;
	}

	.yoko-home-study-step-panel {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.yoko-home-study-step-panel__media {
		border-bottom: 1px solid var(--yoko-color-border);
		border-right: 0;
		min-height: 220px;
	}

	.yoko-home-study-step-panel__content {
		align-content: start;
		padding: 28px;
	}

	.yoko-home-study-timeline__slim-cta-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.yoko-home-study-timeline__slim-cta-copy,
	.yoko-home-study-timeline__slim-cta-button {
		width: 100%;
	}

	.yoko-home-study-timeline__slim-cta-copy {
		flex: 0 1 auto;
	}

	.yoko-home-achievements__grid {
		grid-template-columns: 1fr;
		margin-left: auto;
		margin-right: auto;
		max-width: 640px;
	}

	.yoko-home-achievement {
		grid-template-columns: minmax(140px, 42%) minmax(0, 1fr);
	}

	.yoko-home-achievement--no-media {
		grid-template-columns: 1fr;
	}

	.yoko-home-journey__steps {
		display: grid;
		gap: 24px 18px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 560px;
	}

	.yoko-home-section.yoko-home-logo-marquee {
		padding: 34px 0 38px;
	}

	.yoko-home-logo-marquee-item {
		height: 68px;
		width: clamp(144px, 26vw, 178px);
	}

	.yoko-home-logo-marquee-item__image,
	.yoko-home-logo-marquee-item__media img {
		max-height: 100%;
	}

	.yoko-home-services__grid {
		grid-template-columns: 1fr;
	}

	.yoko-home-split-header,
	.yoko-home-testimonials__layout,
	.yoko-home-lead-form__layout {
		grid-template-columns: 1fr;
	}

	.yoko-home-partners .yoko-home-split-header {
		align-items: start;
	}

	.yoko-home-partners__slider {
		--yoko-partner-gap: 18px;
		--yoko-partner-nav-gutter: 52px;
		--yoko-partner-nav-size: 38px;
	}

	.yoko-home-partner {
		flex-basis: calc((100% - var(--yoko-partner-gap)) / 2);
	}

	.yoko-home-community__grid,
	.yoko-home-reasons__grid,
	.yoko-home-posts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-home-video-testimonials__grid,
	.yoko-home-video-testimonials-builder__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-home-journey-step {
		flex: initial;
		max-width: none;
	}
}

@media (max-width: 549px) {
	.yoko-home-hero-slider {
		padding: 34px 0 30px;
	}

	.yoko-home-hero-slide__brand {
		font-size: clamp(38px, 13vw, 52px);
	}

	.yoko-home-hero-slide__heading {
		font-size: 17px;
		margin-bottom: 16px;
	}

	.yoko-home-hero-slide__description {
		font-size: 14px;
		line-height: 1.65;
	}

	.yoko-home-hero-slide__button {
		width: 100%;
	}

	.yoko-home-hero-slide__visual {
		min-height: 330px;
	}

	.yoko-home-hero-slide__mini-card--large {
		height: 58%;
		left: 0;
		top: 18%;
		width: 62%;
	}

	.yoko-home-hero-slide__mini-card--top {
		height: 32%;
		right: 0;
		top: 7%;
		width: 45%;
	}

	.yoko-home-hero-slide__mini-card--bottom {
		bottom: 10%;
		height: 31%;
		right: 2%;
		width: 42%;
	}

	.yoko-home-hero-slide__mini-card figcaption {
		bottom: 12px;
		font-size: 12px;
		left: 12px;
		max-width: calc(100% - 24px);
	}

	.yoko-home-hero-slider__controls {
		align-items: flex-end;
	}

	.yoko-home-hero-slider__progress {
		width: 42px;
	}

	.yoko-home-section.yoko-home-stats-counter {
		padding: 24px 0 28px;
	}

	.yoko-home-stats-counter__grid {
		gap: 10px;
	}

	.yoko-home-stat-item {
		min-height: 96px;
		padding: 16px 10px;
	}

	.yoko-home-stat-item__number {
		font-size: clamp(25px, 8vw, 32px);
		margin-bottom: 7px;
	}

	.yoko-home-stat-item__label {
		font-size: 12px;
		line-height: 1.32;
	}

	.yoko-home-section.yoko-home-logo-marquee {
		padding: 30px 0 34px;
	}

	.yoko-home-logo-marquee__heading {
		font-size: clamp(20px, 6.2vw, 25px);
	}

	.yoko-home-logo-marquee__viewport {
		gap: 10px;
		-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
		mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
	}

	.yoko-home-logo-marquee-item {
		height: 62px;
		width: 144px;
	}

	.yoko-home-logo-marquee-item__inner {
		padding: 0 2px;
	}

	.yoko-home-logo-marquee-item__image,
	.yoko-home-logo-marquee-item__media img {
		max-height: 100%;
	}

	.yoko-home-section {
		padding: 38px 0;
	}

	.yoko-home-section__header {
		margin-bottom: 22px;
	}

	.yoko-home-difference-cards__header,
	.yoko-home-study-timeline__header {
		margin-bottom: 22px;
	}

	.yoko-home-difference-cards__title,
	.yoko-home-study-timeline__title {
		font-size: clamp(24px, 8vw, 30px);
	}

	.yoko-home-difference-cards__grid {
		grid-template-columns: 1fr;
	}

	.yoko-home-difference-card__frame {
		min-height: 0;
		padding: 12px;
	}

	.yoko-home-difference-card--no-media .yoko-home-difference-card__frame {
		padding: 20px;
	}

	.yoko-home-study-timeline__steps {
		-webkit-overflow-scrolling: touch;
		display: flex;
		gap: 12px;
		margin: 0 -15px;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		padding: 2px 15px 14px;
		scroll-padding-inline-start: 15px;
		scroll-snap-type: inline mandatory;
		scrollbar-width: none;
		touch-action: pan-x pan-y;
	}

	.yoko-home-study-timeline__steps::-webkit-scrollbar {
		display: none;
	}

	.yoko-home-study-step {
		flex: 0 0 min(38vw, 142px);
		min-height: 142px;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.yoko-home-study-timeline__detail-list {
		margin-top: 14px;
	}

	.yoko-home-study-step-panel__media {
		gap: 14px;
		min-height: 178px;
		padding: 20px;
	}

	.yoko-home-study-step-panel__media-frame {
		width: min(100%, 210px);
	}

	.yoko-home-study-step-panel__icon {
		font-size: 40px;
		height: 112px;
		width: 112px;
	}

	.yoko-home-study-step-panel__content {
		gap: 12px;
		padding: 22px 20px 24px;
	}

	.yoko-home-study-step-panel__content h3 {
		font-size: 24px;
	}

	.yoko-home-study-step-panel__description {
		font-size: 15px;
		line-height: 1.65;
	}

	.yoko-home-study-step-panel__button {
		width: 100%;
	}

	.yoko-home-study-timeline__slim-cta {
		margin-top: 22px;
		padding: 16px 0 !important;
	}

	.yoko-home-study-timeline__slim-cta-button {
		margin-left: 0;
		min-height: 44px;
		width: 100%;
	}

	.yoko-home-achievements__grid {
		gap: 20px;
	}

	.yoko-home-achievement {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.yoko-home-achievement__media {
		padding: 20px 22px 0;
	}

	.yoko-home-achievement__media img {
		max-height: 120px;
	}

	.yoko-home-achievement__body {
		padding: 16px 20px 24px;
	}

	.yoko-home-journey__steps {
		-webkit-overflow-scrolling: touch;
		display: flex;
		gap: 12px;
		justify-content: flex-start;
		max-width: none;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		padding: 2px 18px 18px 2px;
		scroll-padding-inline-start: 2px;
		scroll-snap-type: inline mandatory;
		scrollbar-width: none;
	}

	.yoko-home-journey__steps::-webkit-scrollbar {
		display: none;
	}

	.yoko-home-journey-step {
		align-items: center;
		background: #f8fbff;
		border: 1px solid #dbe7f4;
		border-radius: 8px;
		box-shadow: 0 8px 18px rgba(17, 91, 175, 0.08);
		display: grid;
		flex: 0 0 min(82%, 310px);
		gap: 12px;
		grid-template-columns: 56px minmax(0, 1fr);
		min-height: 82px;
		padding: 12px 14px;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		text-align: left;
		width: auto;
	}

	.yoko-home-journey-step__media,
	.yoko-home-journey-step__fallback-number {
		height: 58px;
		width: 56px;
	}

	.yoko-home-journey-step__media img {
		max-height: 56px;
		max-width: 50px;
	}

	.yoko-home-journey-step__fallback-number {
		font-size: 22px;
	}

	.yoko-home-journey-step__eyebrow {
		color: var(--yoko-color-primary-dark);
		display: block;
		font-size: 12px;
		font-weight: 800;
		line-height: 1.15;
		margin: 0 0 4px;
		text-transform: uppercase;
	}

	.yoko-home-journey-step__title {
		font-size: 14px;
		line-height: 1.35;
		margin: 0;
		max-width: none;
	}

	.yoko-home-section__button {
		width: 100%;
	}

	.yoko-home-community__grid,
	.yoko-home-posts__grid {
		grid-template-columns: 1fr;
	}

	.yoko-home-video-testimonials__grid {
		-webkit-overflow-scrolling: touch;
		display: flex;
		gap: 14px;
		justify-content: flex-start;
		margin: 0 -15px;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		padding: 2px 15px 10px;
		scroll-padding-inline-start: 15px;
		scroll-snap-type: inline mandatory;
		scrollbar-width: none;
		touch-action: pan-x pan-y;
	}

	.yoko-home-video-testimonials__grid::-webkit-scrollbar {
		display: none;
	}

	.yoko-home-video-testimonial {
		flex: 0 0 min(72vw, 268px);
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.yoko-home-video-testimonials-builder__grid {
		grid-template-columns: 1fr;
	}

	.yoko-home-reasons__grid {
		-webkit-overflow-scrolling: touch;
		display: flex;
		gap: 14px;
		justify-content: flex-start;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		padding: 2px 20px 18px 2px;
		scroll-padding-inline-start: 2px;
		scroll-snap-type: inline mandatory;
		scrollbar-width: none;
		touch-action: pan-x pan-y;
	}

	.yoko-home-reasons__grid::-webkit-scrollbar {
		display: none;
	}

	.yoko-home-reason {
		flex: 0 0 82%;
		max-width: 320px;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.yoko-home-split-header {
		text-align: center;
	}

	.yoko-home-partners__slider {
		--yoko-partner-gap: 12px;
		--yoko-partner-nav-gutter: 40px;
		--yoko-partner-nav-size: 32px;
	}

	.yoko-home-partners__track {
		padding-bottom: 10px;
	}

	.yoko-home-partner {
		flex-basis: min(82vw, 280px);
		min-height: 136px;
	}

	.yoko-home-partner__inner {
		min-height: 136px;
		padding: 14px;
	}

	.yoko-home-partner__media {
		height: 58px;
	}

	.yoko-home-partner__media img {
		max-height: 56px;
		max-width: 136px;
	}

	.yoko-home-testimonials__track {
		grid-auto-columns: minmax(260px, 86vw);
	}

	.yoko-home-achievements .yoko-home-section__button {
		max-width: 100%;
		width: auto;
	}
}

.yoko-blog-element,
.yoko-blog-sidebar-card,
.yoko-blog-builder-preview,
.yoko-blog-preview-item,
.yoko-blog-preview-tag {
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
}

.yoko-blog-element *,
.yoko-blog-element *::before,
.yoko-blog-element *::after,
.yoko-blog-sidebar-card *,
.yoko-blog-sidebar-card *::before,
.yoko-blog-sidebar-card *::after,
.yoko-blog-builder-preview *,
.yoko-blog-builder-preview *::before,
.yoko-blog-builder-preview *::after,
.yoko-blog-preview-item,
.yoko-blog-preview-item *,
.yoko-blog-preview-item *::before,
.yoko-blog-preview-item *::after {
	box-sizing: border-box;
}

.yoko-blog-element a,
.yoko-blog-sidebar-card a {
	color: inherit;
	text-decoration: none;
}

.yoko-blog-heading {
	align-items: center;
	display: flex;
	gap: 8px;
	margin: 0 0 12px;
}

.yoko-blog-heading span {
	background: var(--yoko-color-primary);
	border-radius: 999px;
	display: block;
	height: 3px;
	width: 30px;
}

.yoko-blog-heading h2,
.yoko-blog-section-head h2,
.yoko-blog-sidebar-card h2 {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
	text-transform: uppercase;
}

.yoko-blog-featured__card {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	display: grid;
	grid-template-columns: minmax(210px, 0.96fr) minmax(0, 1fr);
	overflow: hidden;
}

.yoko-blog-featured__media,
.yoko-blog-post-card__media {
	background: var(--yoko-color-navy);
	display: block;
	min-height: 100%;
	overflow: hidden;
	position: relative;
}

.yoko-blog-featured__media {
	aspect-ratio: 16 / 11;
}

.yoko-blog-featured__image,
.yoko-blog-post-card__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-blog-featured__badge {
	background: var(--yoko-color-primary);
	border-radius: 6px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	left: 14px;
	line-height: 1.2;
	padding: 8px 10px;
	position: absolute;
	top: 14px;
}

.yoko-blog-featured__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	padding: clamp(18px, 2.4vw, 26px);
}

.yoko-blog-featured__category {
	align-self: flex-start;
	background: #e8fff5;
	border-radius: 999px;
	color: #17805f;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	padding: 7px 10px;
	text-transform: uppercase;
}

.yoko-blog-featured__body h3,
.yoko-blog-post-card h3,
.yoko-blog-list-item h3,
.yoko-blog-popular-post h3 {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0;
}

.yoko-blog-featured__body h3 {
	font-size: clamp(18px, 2vw, 24px);
}

.yoko-blog-featured__body p {
	color: var(--yoko-color-muted);
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

.yoko-blog-featured__meta {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-top: auto;
}

.yoko-blog-featured__meta time,
.yoko-blog-post-card time,
.yoko-blog-list-item time {
	color: var(--yoko-color-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
}

.yoko-blog-featured__meta a,
.yoko-blog-section-head > a {
	align-items: center;
	color: var(--yoko-color-primary);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 5px;
	line-height: 1.2;
	white-space: nowrap;
}

.yoko-blog-section-head {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin: 0 0 14px;
}

.yoko-blog-section-head > div {
	align-items: center;
	display: flex;
	gap: 8px;
	min-width: 0;
}

.yoko-blog-section-head span {
	background: #eef4fb;
	border-radius: 999px;
	color: var(--yoko-color-muted);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	padding: 5px 9px;
	white-space: nowrap;
}

.yoko-blog-section-head--plain {
	justify-content: flex-start;
}

.yoko-blog-post-grid__items {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(var(--yoko-blog-grid-columns, 3), minmax(0, 1fr));
}

.yoko-blog-post-card {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	min-width: 0;
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.yoko-blog-post-card:hover,
.yoko-blog-post-card:focus-within {
	border-color: rgba(236, 32, 40, 0.28);
	box-shadow: var(--yoko-shadow-card-hover);
}

.yoko-blog-post-card:hover {
	transform: translateY(-2px);
}

.yoko-blog-post-card__media {
	aspect-ratio: 16 / 9;
	min-height: 0;
}

.yoko-blog-post-card__body {
	display: grid;
	gap: 7px;
	padding: 14px;
}

.yoko-blog-post-card__body > span,
.yoko-blog-list-item__body > span {
	color: var(--yoko-color-primary);
	display: block;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.yoko-blog-post-card h3 {
	display: -webkit-box;
	font-size: 15px;
	min-height: 39px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.yoko-blog-post-list__items {
	display: grid;
	gap: 10px;
}

.yoko-blog-post-list--compact .yoko-blog-post-list__items {
	gap: 6px;
}

.yoko-blog-list-item {
	align-items: center;
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	display: grid;
	gap: 12px;
	grid-template-columns: 44px minmax(0, 1fr);
	padding: 10px 12px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.yoko-blog-list-item:hover,
.yoko-blog-list-item:focus-within {
	border-color: rgba(236, 32, 40, 0.24);
	box-shadow: var(--yoko-shadow-card);
}

.yoko-blog-list-item__icon {
	align-items: center;
	background: #f2f5f8;
	border-radius: 7px;
	display: inline-flex;
	font-size: 20px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	width: 36px;
}

.yoko-blog-list-item__body {
	min-width: 0;
}

.yoko-blog-list-item h3 {
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-blog-sidebar-card {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	padding: 14px;
}

.yoko-blog-sidebar-card h2 {
	border-bottom: 1px solid var(--yoko-color-border);
	padding-bottom: 10px;
}

.yoko-blog-category-menu__items,
.yoko-blog-popular-posts__items {
	display: grid;
	gap: 0;
}

.yoko-blog-popular-posts__cta {
	background: var(--yoko-color-primary);
	border-radius: var(--yoko-radius-card);
	color: #ffffff;
	margin: 0 0 14px;
	padding: 16px;
}

.yoko-blog-popular-posts__cta h3 {
	color: #ffffff;
	font-family: var(--yoko-font-family);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 6px;
}

.yoko-blog-popular-posts__cta p {
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	margin: 0 0 12px;
}

.yoko-blog-popular-posts__cta a {
	align-items: center;
	background: #c8171f;
	border-radius: var(--yoko-radius-button);
	color: #ffffff;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 6px;
	justify-content: center;
	line-height: 1.2;
	min-height: 38px;
	padding: 0 16px;
}

.yoko-blog-category-item {
	align-items: center;
	border-bottom: 1px solid #eef2f6;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 12px 0;
}

.yoko-blog-category-item__label {
	align-items: center;
	display: flex;
	gap: 8px;
	min-width: 0;
}

.yoko-blog-category-item__label em {
	color: var(--yoko-color-heading);
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
	min-width: 22px;
	text-align: center;
}

.yoko-blog-category-item__label strong {
	color: var(--yoko-color-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-blog-category-item__count {
	background: #f2f5f8;
	border-radius: 999px;
	color: var(--yoko-color-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 6px 8px;
}

.yoko-blog-category-item--active .yoko-blog-category-item__count,
.yoko-blog-category-item:hover .yoko-blog-category-item__count,
.yoko-blog-category-item:focus-visible .yoko-blog-category-item__count {
	background: #fff0f1;
	color: var(--yoko-color-primary);
}

.yoko-blog-popular-post {
	align-items: start;
	border-bottom: 1px solid #eef2f6;
	display: grid;
	gap: 10px;
	grid-template-columns: 24px minmax(0, 1fr);
	padding: 12px 0;
}

.yoko-blog-popular-post > span {
	color: rgba(236, 32, 40, 0.34);
	font-size: 19px;
	font-weight: 800;
	line-height: 1;
}

.yoko-blog-popular-post h3 {
	display: -webkit-box;
	font-size: 13px;
	line-height: 1.45;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.yoko-blog-tags__items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 12px;
}

.yoko-blog-tag {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 999px;
	color: var(--yoko-color-muted);
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	min-height: 30px;
	padding: 7px 11px;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.yoko-blog-tag--primary,
.yoko-blog-tag:hover,
.yoko-blog-tag:focus-visible {
	background: #fff0f1;
	border-color: rgba(236, 32, 40, 0.34);
	color: var(--yoko-color-primary);
	outline: 0;
}

.yoko-blog-builder-preview,
.yoko-blog-preview-item,
.yoko-blog-preview-tag {
	box-sizing: border-box;
}

.yoko-blog-builder-preview {
	background: #f7f9fc;
	border: 1px solid #dfe6ef;
	border-radius: 12px;
	margin: 14px auto;
	max-width: 920px;
	padding: 12px;
	width: calc(100% - 24px);
}

.yoko-blog-builder-preview--sidebar {
	max-width: 420px;
}

.yoko-blog-builder-preview__heading,
.yoko-blog-builder-preview__bar strong {
	color: var(--yoko-color-heading);
	display: block;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.yoko-blog-builder-preview__heading {
	margin-bottom: 10px;
}

.yoko-blog-builder-preview__source {
	align-items: center;
	color: var(--yoko-color-muted);
	display: flex;
	font-size: 11px;
	font-weight: 700;
	gap: 6px;
	line-height: 1.35;
	margin: -4px 0 10px;
}

.yoko-blog-builder-preview__source span {
	background: #ffffff;
	border: 1px solid #dfe6ef;
	border-radius: 999px;
	display: inline-flex;
	padding: 5px 9px;
}

.yoko-blog-builder-preview__featured {
	background: #ffffff;
	border: 1px solid #dfe6ef;
	border-radius: 10px;
	display: grid;
	grid-template-columns: minmax(150px, 0.95fr) minmax(0, 1fr);
	overflow: hidden;
}

.yoko-blog-builder-preview__media {
	background: var(--yoko-color-navy);
	min-height: 130px;
	position: relative;
}

.yoko-blog-builder-preview__media span {
	background: var(--yoko-color-primary);
	border-radius: 6px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	left: 10px;
	padding: 6px 8px;
	position: absolute;
	top: 10px;
}

.yoko-blog-builder-preview__cta {
	background: var(--yoko-color-primary);
	border-radius: 9px;
	color: #ffffff;
	display: grid;
	gap: 4px;
	margin-bottom: 10px;
	padding: 12px;
}

.yoko-blog-builder-preview__cta strong,
.yoko-blog-builder-preview__cta span:not(.yoko-button) {
	color: #ffffff;
	display: block;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-blog-builder-preview__cta strong {
	font-size: 13px;
	font-weight: 800;
}

.yoko-blog-builder-preview__cta span:not(.yoko-button) {
	font-size: 11px;
	font-weight: 600;
	opacity: 0.84;
}

.yoko-blog-builder-preview__body {
	display: grid;
	gap: 7px;
	padding: 14px;
}

.yoko-blog-builder-preview__body em,
.yoko-blog-preview-item em {
	color: var(--yoko-color-primary);
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.yoko-blog-builder-preview__body strong,
.yoko-blog-preview-item strong {
	color: var(--yoko-color-heading);
	display: block;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-blog-builder-preview__body small,
.yoko-blog-builder-preview__body span,
.yoko-blog-preview-item small {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 11px;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-blog-builder-preview__bar {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	margin-bottom: 10px;
}

.yoko-blog-builder-preview__bar span {
	background: #eef4fb;
	border-radius: 999px;
	color: var(--yoko-color-muted);
	font-size: 11px;
	font-weight: 800;
	padding: 5px 8px;
}

.yoko-blog-builder-preview__grid,
.yoko-blog-builder-preview__rows {
	display: grid;
	gap: 8px;
}

.yoko-blog-builder-preview__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-blog-preview-item {
	background: #ffffff;
	border: 1px solid #dfe6ef;
	border-radius: 9px;
	min-width: 0;
	padding: 10px;
}

.yoko-blog-preview-item--card {
	display: grid;
	gap: 8px;
}

.yoko-blog-preview-item__thumb {
	background: var(--yoko-color-navy);
	border-radius: 7px;
	display: block;
	min-height: 52px;
}

.yoko-blog-preview-item--row,
.yoko-blog-preview-item--sidebar-row {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: 34px minmax(0, 1fr);
}

.yoko-blog-preview-item--sidebar-row {
	grid-template-columns: 34px minmax(0, 1fr) auto;
}

.yoko-blog-preview-item__icon,
.yoko-blog-preview-item--popular span {
	align-items: center;
	background: #eef4fb;
	border-radius: 7px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	height: 30px;
	justify-content: center;
	line-height: 1;
	width: 30px;
}

.yoko-blog-preview-item--popular {
	align-items: center;
	display: grid;
	gap: 9px;
	grid-template-columns: 30px minmax(0, 1fr);
}

.yoko-blog-preview-item--popular span {
	background: #fff0f1;
	color: var(--yoko-color-primary);
}

.yoko-blog-builder-preview__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.yoko-blog-preview-tag {
	background: #ffffff;
	border: 1px solid #dfe6ef;
	border-radius: 999px;
	color: var(--yoko-color-muted);
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 8px 11px;
}

@media (max-width: 849px) {
	.yoko-blog-featured__card,
	.yoko-blog-builder-preview__featured {
		grid-template-columns: 1fr;
	}

	.yoko-blog-post-grid__items,
	.yoko-blog-builder-preview__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 549px) {
	.yoko-blog-featured__meta,
	.yoko-blog-section-head,
	.yoko-blog-section-head > div {
		align-items: flex-start;
		flex-direction: column;
	}

	.yoko-blog-post-grid__items,
	.yoko-blog-builder-preview__grid {
		grid-template-columns: 1fr;
	}

	.yoko-blog-list-item h3 {
		white-space: normal;
	}
}

.yoko-course-builder-preview,
.yoko-course-builder-preview *,
.yoko-course-builder-preview *::before,
.yoko-course-builder-preview *::after,
.yoko-course-preview-item,
.yoko-course-preview-item *,
.yoko-course-preview-item *::before,
.yoko-course-preview-item *::after {
	box-sizing: border-box;
}

.yoko-course-builder-preview {
	background: #eef4fb;
	border: 1px solid #d7e3f0;
	border-radius: 14px;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	margin: 18px auto;
	max-width: 1120px;
	overflow: hidden;
	padding: 12px;
	width: calc(100% - 24px);
}

.yoko-course-builder-preview__hero {
	align-items: stretch;
	background-color: #06121f;
	background-image:
		linear-gradient(90deg, rgba(6, 18, 31, 0.9) 0%, rgba(8, 25, 43, 0.78) 58%, rgba(5, 54, 83, 0.68) 100%),
		url("../img/yoko-gioithieu-assets/YOKO-BLOG-11-768x432.jpg");
	background-position: center, center;
	background-repeat: no-repeat;
	background-size: cover, cover;
	border-radius: 12px;
	color: #ffffff;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 1.08fr) minmax(210px, 0.64fr);
	padding: 14px;
}

.yoko-course-builder-preview__hero-copy,
.yoko-course-builder-preview__form,
.yoko-course-builder-preview__program,
.yoko-course-builder-preview__section-title,
.yoko-course-builder-preview__sidebar {
	min-width: 0;
}

.yoko-course-builder-preview__hero-copy span,
.yoko-course-builder-preview__hero-copy small,
.yoko-course-builder-preview__form span,
.yoko-course-builder-preview__program span,
.yoko-course-builder-preview__section-title span,
.yoko-course-builder-preview__sidebar span,
.yoko-course-preview-item small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.yoko-course-builder-preview__hero-copy span {
	color: #61d7ad;
	font-size: 11px;
	font-weight: 850;
	line-height: 1.2;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.yoko-course-builder-preview__hero-copy strong {
	color: #ffffff;
	display: -webkit-box;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.18;
	margin-bottom: 8px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.yoko-course-builder-preview__hero-copy small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	line-height: 1.45;
	white-space: nowrap;
}

.yoko-course-builder-preview__form {
	align-self: center;
	background: #ffffff;
	border-radius: 10px;
	color: var(--yoko-color-navy);
	padding: 14px;
}

.yoko-course-builder-preview__form strong,
.yoko-course-builder-preview__program strong,
.yoko-course-builder-preview__section-title strong,
.yoko-course-builder-preview__sidebar strong {
	display: block;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-course-builder-preview__form span,
.yoko-course-builder-preview__program span,
.yoko-course-builder-preview__section-title span,
.yoko-course-builder-preview__sidebar span {
	color: #627084;
	font-size: 12px;
	line-height: 1.4;
	white-space: nowrap;
}

.yoko-course-builder-preview__stats {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 10px 0;
}

.yoko-course-builder-preview__stats span {
	background: #ffffff;
	border: 1px solid #dce6f2;
	border-radius: 10px;
	display: block;
	line-height: 1.2;
	min-width: 0;
	overflow: hidden;
	padding: 10px 12px;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-course-builder-preview__stats strong {
	color: #ec2028;
	display: block;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.1;
}

.yoko-course-builder-preview__stats small {
	color: #26374b;
	display: block;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
	margin-top: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-course-builder-preview__program {
	background: #ffffff;
	background-image: radial-gradient(rgba(5, 54, 83, 0.1) 1px, transparent 1px);
	background-size: 12px 12px;
	border: 1px solid #dce6f2;
	border-radius: 10px;
	margin-bottom: 12px;
	padding: 12px;
	text-align: center;
}

.yoko-course-builder-preview__program strong {
	color: #ec2028;
	margin-bottom: 4px;
	white-space: normal;
}

.yoko-course-builder-preview__program span {
	color: #1f2d3e;
	font-style: italic;
}

.yoko-course-builder-preview__program-grid {
	display: grid;
	gap: 8px;
	grid-template-columns: 1.2fr 0.8fr 0.8fr;
	margin-top: 10px;
}

.yoko-course-builder-preview__program-grid i {
	background: linear-gradient(135deg, #dbe6f3 0%, #f7f9fc 100%);
	border: 1px solid #dce6f2;
	border-radius: 8px;
	display: block;
	min-height: 52px;
}

.yoko-course-builder-preview__program-grid i:first-child {
	grid-row: span 2;
	min-height: 112px;
}

.yoko-course-builder-live-preview {
	margin: 18px auto;
	max-width: 1120px;
	width: calc(100% - 24px);
}

.yoko-course-builder-live-preview.yoko-course-section {
	padding: 0;
}

.yoko-course-builder-live-preview .container {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
}

.yoko-course-builder-live-preview .yoko-course-section__header {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	margin-bottom: 10px;
	padding: 16px 18px;
}

.yoko-course-builder-live-preview .yoko-course-section__header h2 {
	font-size: clamp(22px, 2vw, 30px);
	margin-bottom: 6px;
}

.yoko-course-builder-live-preview .yoko-course-section__header div,
.yoko-course-builder-live-preview .yoko-course-section__header p {
	margin: 0;
	max-width: none;
}

.yoko-course-builder-live-preview--program {
	border: 1px solid var(--yoko-color-border);
	border-radius: 14px;
	padding: 20px;
}

.yoko-course-builder-live-preview--program .yoko-course-program-showcase__header {
	margin-bottom: 18px;
}

.yoko-course-builder-live-preview--program .yoko-course-program-showcase__collage {
	max-width: 860px;
}

.yoko-course-builder-preview__media-fill {
	background:
		linear-gradient(90deg, rgba(236, 32, 40, 0.14), transparent 34%),
		linear-gradient(135deg, #eaf1f8 0%, #f7f9fc 100%);
	display: block;
	height: 100%;
	width: 100%;
}

.yoko-course-module--builder-preview .yoko-course-module__media {
	min-height: 150px;
}

.yoko-course-module--builder-preview .yoko-course-module__footer .button {
	pointer-events: none;
}

.yoko-course-sidebar--builder-preview {
	margin: 18px auto;
	max-width: 300px;
	position: static;
	width: calc(100% - 24px);
}

.yoko-course-sidebar--builder-preview .yoko-course-sidebar__inner {
	display: flex;
	flex-direction: column;
}

.yoko-course-sidebar--builder-preview h2 {
	order: 0;
}

.yoko-course-sidebar-builder__children {
	display: contents;
}

.yoko-course-sidebar-preview-row {
	border-top: 1px solid var(--yoko-color-border);
	color: #556277;
	font-family: var(--yoko-font-family);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	margin: 0;
	padding: 11px 0;
}

.yoko-course-sidebar-preview-row--anchor {
	order: 1;
}

.yoko-course-sidebar--builder-preview .yoko-course-sidebar__cta {
	order: 2;
}

.yoko-course-sidebar-preview-row--stat {
	align-items: center;
	border-left: 1px solid var(--yoko-color-border);
	border-right: 1px solid var(--yoko-color-border);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	order: 3;
	padding: 10px 12px;
}

.yoko-course-sidebar-preview-row--stat:first-of-type {
	border-radius: 12px 12px 0 0;
}

.yoko-course-sidebar-preview-row--stat span {
	color: var(--yoko-color-muted);
	font-size: 13px;
	line-height: 1.3;
}

.yoko-course-sidebar-preview-row--stat strong {
	color: var(--yoko-color-primary);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
	text-align: right;
}

.yoko-course-sidebar--builder-preview .yoko-course-sidebar__subheading {
	order: 4;
}

.yoko-course-sidebar-preview-row--related {
	order: 5;
}

.yoko-course-sidebar-preview-row--related span,
.yoko-course-sidebar-preview-row--anchor span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.yoko-course-builder-preview__layout {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 1fr) minmax(190px, 0.26fr);
}

.yoko-course-builder-preview__main {
	min-width: 0;
}

.yoko-course-builder-preview__section-title,
.yoko-course-builder-preview__sidebar {
	background: #ffffff;
	border: 1px solid #dce6f2;
	border-radius: 10px;
	padding: 12px;
}

.yoko-course-builder-preview__children {
	display: grid;
	gap: 8px;
	margin-top: 8px;
	min-height: 60px;
}

.yoko-course-preview-item {
	align-items: center;
	background: #ffffff;
	border: 1px solid #d9e4f0;
	border-radius: 10px;
	box-shadow: none;
	color: var(--yoko-color-text);
	display: grid;
	gap: 10px;
	grid-template-columns: 82px minmax(0, 1fr) auto;
	margin: 0 0 8px;
	min-height: 54px;
	overflow: hidden;
	padding: 10px 12px;
	width: 100%;
}

.yoko-course-preview-item--module.yoko-course-preview-item--has-media {
	grid-template-columns: 74px 72px minmax(0, 1fr) auto;
}

.yoko-course-preview-item__media {
	background: #f2f5f8;
	border: 1px solid #dce6f2;
	border-radius: 8px;
	display: block;
	height: 48px;
	overflow: hidden;
	width: 72px;
}

.yoko-course-preview-item__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-course-preview-item__type {
	background: #eef5ff;
	border-radius: 999px;
	color: var(--yoko-color-primary);
	display: inline-flex;
	font-size: 11px;
	font-weight: 850;
	justify-content: center;
	line-height: 1.2;
	min-width: 0;
	overflow: hidden;
	padding: 7px 9px;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-course-preview-item__body {
	min-width: 0;
}

.yoko-course-preview-item strong {
	color: var(--yoko-color-navy);
	display: block;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	margin: 0 0 3px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yoko-course-preview-item small {
	color: #647386;
	font-size: 12px;
	line-height: 1.35;
	white-space: nowrap;
}

.yoko-course-preview-item em {
	font-style: normal;
}

.yoko-course-preview-item__badge {
	background: #fff1f1;
	border-radius: 999px;
	color: #ec2128;
	font-size: 11px;
	font-weight: 850;
	line-height: 1.2;
	max-width: 120px;
	overflow: hidden;
	padding: 7px 9px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 849px) {
	.yoko-course-builder-preview__hero,
	.yoko-course-builder-preview__layout {
		grid-template-columns: 1fr;
	}

	.yoko-course-builder-preview__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-course-builder-preview__program-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 549px) {
	.yoko-course-builder-preview {
		margin: 12px auto;
		width: calc(100% - 12px);
	}

	.yoko-course-builder-live-preview,
	.yoko-course-sidebar--builder-preview {
		margin: 12px auto;
		width: calc(100% - 12px);
	}

	.yoko-course-builder-preview__hero-copy strong {
		font-size: 18px;
	}

	.yoko-course-builder-preview__program-grid {
		grid-template-columns: 1fr;
	}

	.yoko-course-builder-preview__program-grid i:first-child {
		grid-row: auto;
		min-height: 52px;
	}

	.yoko-course-preview-item {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.yoko-course-preview-item--module.yoko-course-preview-item--has-media {
		grid-template-columns: 72px 68px minmax(0, 1fr);
	}

	.yoko-course-preview-item__media {
		width: 68px;
	}

	.yoko-course-preview-item__badge {
		grid-column: 1 / -1;
		justify-self: start;
	}
}

.yoko-course-page {
	background: #f5f8fc;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
}

.yoko-course-page *,
.yoko-course-page *::before,
.yoko-course-page *::after,
.yoko-course-landing *,
.yoko-course-landing *::before,
.yoko-course-landing *::after {
	box-sizing: border-box;
}

.yoko-course-landing {
	background: #ffffff;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
}

.yoko-course-hero {
	--yoko-course-hero-bg-image: url("../img/yoko-gioithieu-assets/YOKO-BLOG-11-768x432.jpg");
	--yoko-course-hero-bg-position: center center;
	background-color: #06121f;
	background-image:
		linear-gradient(90deg, rgba(6, 18, 31, 0.68) 0%, rgba(8, 25, 43, 0.52) 48%, rgba(5, 54, 83, 0.34) 100%),
		radial-gradient(circle at 12% 18%, rgba(236, 32, 40, 0.1), transparent 28%),
		var(--yoko-course-hero-bg-image);
	background-position: center, center, var(--yoko-course-hero-bg-position);
	background-repeat: no-repeat;
	background-size: cover, cover, cover;
	color: #ffffff;
	isolation: isolate;
	padding: clamp(30px, 4.2vw, 52px) 0 clamp(68px, 7vw, 92px);
	position: relative;
}

.yoko-course-hero__inner {
	align-items: stretch;
	display: grid;
	gap: clamp(18px, 2.6vw, 30px);
	grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
}

.yoko-course-hero__copy {
	min-width: 0;
	max-width: 650px;
	padding: clamp(4px, 1.4vw, 14px) 0;
}

.yoko-course-eyebrow {
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.yoko-course-hero h1 {
	color: #ffffff;
	font-family: var(--yoko-font-family);
	font-size: clamp(28px, 3.1vw, 44px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.09;
	margin: 0 0 14px;
	max-width: 640px;
	text-wrap: balance;
}

.yoko-course-hero h1 strong,
.yoko-course-hero h1 span,
.yoko-course-hero h1 mark {
	color: #ff5b61;
}

.yoko-course-hero__description {
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(14px, 1.05vw, 16px);
	line-height: 1.62;
	max-width: 620px;
}

.yoko-course-hero__description p {
	margin: 0;
}

.yoko-course-hero__bullets {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: clamp(16px, 2.3vw, 24px) 0 0;
	max-width: 620px;
	padding: 0;
}

.yoko-course-hero__bullets li {
	align-items: flex-start;
	color: #ffffff;
	display: grid;
	font-size: 14px;
	font-weight: 700;
	gap: 9px;
	grid-template-columns: 20px minmax(0, 1fr);
	line-height: 1.42;
}

.yoko-course-hero__bullets li::before {
	align-items: center;
	background: var(--yoko-color-primary);
	border-radius: 999px;
	color: #ffffff;
	content: "\f00c";
	display: inline-flex;
	font-family: "Font Awesome 6 Free";
	font-size: 10px;
	font-weight: 900;
	height: 20px;
	justify-content: center;
	margin-top: 1px;
	width: 20px;
}

.yoko-course-hero__visual-form {
	align-items: center;
	display: flex;
	min-width: 0;
}

.yoko-course-form {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
	color: var(--yoko-color-text);
	margin-left: auto;
	max-width: 420px;
	padding: clamp(18px, 2.4vw, 26px);
	width: 100%;
}

.yoko-course-form h2 {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family);
	font-size: clamp(18px, 1.55vw, 22px);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.18;
	margin: 0 0 8px;
}

.yoko-course-form > p {
	color: var(--yoko-color-muted);
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 14px;
}

.yoko-course-form .wpcf7-form p,
.yoko-course-form .yoko-cf7-field {
	margin: 0 0 10px;
}

.yoko-course-form input:not([type="submit"]),
.yoko-course-form select,
.yoko-course-form textarea {
	background: #ffffff;
	border: 1px solid #cfd9e8;
	border-radius: 7px;
	box-shadow: none;
	color: var(--yoko-color-text);
	font-size: 14px;
	min-height: 42px;
	width: 100%;
}

.yoko-course-form textarea {
	min-height: 82px;
}

.yoko-course-form input[type="submit"],
.yoko-course-form .wpcf7-submit {
	background: var(--yoko-color-navy);
	border: 0;
	border-radius: var(--yoko-radius-button);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	min-height: 44px;
	padding: 0 24px;
	text-transform: none;
}

.yoko-course-form__fallback {
	background: #fff7e8;
	border: 1px dashed #f2b366;
	border-radius: 10px;
	color: #744900;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	padding: 12px 14px;
}

.yoko-course-proof {
	--yoko-course-stats-overlap: clamp(42px, 5vw, 60px);
	background: transparent;
	isolation: isolate;
	margin-top: calc(-1 * var(--yoko-course-stats-overlap));
	padding: 0 0 12px;
	position: relative;
	z-index: 3;
}

.yoko-course-proof::before {
	background-color: #ffffff;
	background-image: radial-gradient(rgba(5, 54, 83, 0.1) 1px, transparent 1px);
	background-size: 12px 12px;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: var(--yoko-course-stats-overlap);
	z-index: -1;
}

.yoko-course-proof--normal,
.yoko-course-proof--compact {
	margin-top: 0;
}

.yoko-course-proof--normal {
	padding: clamp(26px, 4vw, 44px) 0;
}

.yoko-course-proof--compact {
	padding: clamp(18px, 3vw, 28px) 0;
}

.yoko-course-proof--normal::before,
.yoko-course-proof--compact::before {
	top: 0;
}

.yoko-course-proof--compact .yoko-course-stats {
	box-shadow: 0 10px 24px rgba(5, 54, 83, 0.08);
}

.yoko-course-proof--compact .yoko-course-stat {
	min-height: 62px;
	padding: 9px 12px;
}

.yoko-course-notice {
	background: #e9fff7;
	border: 1px solid rgba(97, 215, 173, 0.45);
	border-radius: 10px;
	color: #236b56;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	margin: 14px auto 0;
	max-width: 1080px;
	padding: 10px 14px;
}

.yoko-course-stats {
	background: #ffffff;
	border: 1px solid #edf0f5;
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(5, 54, 83, 0.14);
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 1080px;
	overflow: hidden;
	padding: 4px 22px;
	position: relative;
	z-index: 1;
}

.yoko-course-stat {
	align-items: center;
	background: transparent;
	border: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 74px;
	padding: 12px 14px;
	text-align: center;
}

.yoko-course-stat strong {
	color: #ec2028;
	display: block;
	font-size: clamp(24px, 2.2vw, 31px);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 5px;
}

.yoko-course-stat span,
.yoko-course-stat small {
	color: #18283b;
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	max-width: 180px;
}

.yoko-course-stat small {
	color: #38485b;
	font-size: 12px;
	font-weight: 500;
	margin-top: 2px;
}

.yoko-course-program-showcase {
	background-color: #ffffff;
	background-image: radial-gradient(rgba(5, 54, 83, 0.1) 1px, transparent 1px);
	background-size: 12px 12px;
	color: var(--yoko-color-text);
	overflow: hidden;
	padding: clamp(16px, 3vw, 28px) 0 clamp(34px, 5vw, 58px);
	position: relative;
}

.yoko-course-program-showcase__header {
	margin: 0 auto clamp(18px, 3vw, 28px);
	max-width: 940px;
	text-align: center;
}

.yoko-course-program-showcase__header h2 {
	color: #ec2028;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(18px, 2.2vw, 28px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0;
	text-transform: uppercase;
}

.yoko-course-program-showcase__header p {
	color: #111d2c;
	font-size: clamp(15px, 1.4vw, 18px);
	font-style: italic;
	font-weight: 500;
	line-height: 1.45;
	margin: 6px 0 0;
}

.yoko-course-program-showcase__collage {
	display: grid;
	gap: clamp(14px, 2vw, 22px);
	grid-template-columns: minmax(280px, 1.04fr) minmax(170px, 0.58fr) minmax(170px, 0.6fr);
	grid-template-rows: repeat(2, minmax(112px, 1fr));
	margin: 0 auto;
	max-width: 1060px;
	position: relative;
}

.yoko-course-program-showcase__icons {
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 6;
}

.yoko-course-program-showcase__icon {
	display: block;
	position: absolute;
	width: clamp(42px, 5.4vw, 72px);
}

.yoko-course-program-showcase__icon img {
	display: block;
	filter: drop-shadow(0 12px 18px rgba(5, 54, 83, 0.14));
	height: auto;
	width: 100%;
}

.yoko-course-program-showcase__icon--kana {
	animation: yoko-course-icon-float-a 5.8s ease-in-out infinite;
	left: clamp(6px, 3.2vw, 42px);
	top: clamp(-30px, -2vw, -12px);
	width: clamp(46px, 5.8vw, 78px);
}

.yoko-course-program-showcase__icon--love {
	animation: yoko-course-icon-float-b 6.4s ease-in-out 0.3s infinite;
	right: clamp(146px, 18vw, 240px);
	top: clamp(-36px, -2.4vw, -16px);
	width: clamp(48px, 5.8vw, 82px);
}

.yoko-course-program-showcase__icon--letter {
	animation: yoko-course-icon-float-c 6.2s ease-in-out 0.15s infinite;
	bottom: clamp(-34px, -2.6vw, -16px);
	left: clamp(12px, 7vw, 88px);
	width: clamp(54px, 6.4vw, 92px);
}

.yoko-course-program-showcase__icon--sakura {
	animation: yoko-course-icon-float-d 7.2s ease-in-out 0.45s infinite;
	right: clamp(2px, 2.8vw, 44px);
	top: clamp(88px, 25%, 160px);
	width: clamp(58px, 7vw, 104px);
}

@keyframes yoko-course-icon-float-a {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(-5deg);
	}
	50% {
		transform: translate3d(8px, -14px, 0) rotate(6deg);
	}
}

@keyframes yoko-course-icon-float-b {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(4deg);
	}
	50% {
		transform: translate3d(-10px, -18px, 0) rotate(-7deg);
	}
}

@keyframes yoko-course-icon-float-c {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(-10deg);
	}
	50% {
		transform: translate3d(12px, -12px, 0) rotate(4deg);
	}
}

@keyframes yoko-course-icon-float-d {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(8deg);
	}
	50% {
		transform: translate3d(-12px, 16px, 0) rotate(-8deg);
	}
}

.yoko-course-program-showcase__media {
	background: #f7f9fc;
	border: 1px solid rgba(5, 54, 83, 0.1);
	border-radius: 8px;
	box-shadow: 0 14px 32px rgba(5, 54, 83, 0.14);
	margin: 0;
	overflow: hidden;
	position: relative;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.yoko-course-program-showcase__media:hover,
.yoko-course-program-showcase__media:focus-within {
	border-color: rgba(236, 32, 40, 0.28);
	box-shadow: 0 18px 42px rgba(5, 54, 83, 0.18);
}

.yoko-course-program-showcase__media:hover {
	transform: translateY(-2px);
}

.yoko-course-program-showcase__media--main {
	aspect-ratio: 4 / 2.55;
	grid-column: 1;
	grid-row: 1 / 3;
	transform: rotate(-1.2deg);
}

.yoko-course-program-showcase__media--main:hover {
	transform: rotate(-1.2deg) translateY(-2px);
}

.yoko-course-program-showcase__media--top {
	aspect-ratio: 16 / 10;
	grid-column: 2;
	grid-row: 1;
}

.yoko-course-program-showcase__media--middle {
	aspect-ratio: 16 / 10;
	grid-column: 2;
	grid-row: 2;
	transform: translate(42px, -6px);
	z-index: 2;
}

.yoko-course-program-showcase__media--middle:hover {
	transform: translate(42px, -8px);
}

.yoko-course-program-showcase__media--right {
	align-self: center;
	aspect-ratio: 16 / 10;
	grid-column: 3;
	grid-row: 1 / 3;
	transform: translateX(-8px);
}

.yoko-course-program-showcase__media--right:hover {
	transform: translate(-8px, -2px);
}

.yoko-course-program-showcase__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-course-program-showcase__play {
	align-items: center;
	background: #ec2028;
	border: 0;
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 12px 28px rgba(236, 32, 40, 0.35);
	color: #ffffff;
	display: inline-flex;
	font-size: 20px;
	height: 58px;
	justify-content: center;
	left: 50%;
	line-height: 1;
	padding-left: 4px;
	position: absolute;
	text-decoration: none;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 58px;
	z-index: 3;
}

.yoko-course-program-showcase__play:hover,
.yoko-course-program-showcase__play:focus-visible {
	background: #cf151c;
	color: #ffffff;
	outline: 0;
}

.yoko-course-program-showcase__caption {
	color: #0f1724;
	font-size: clamp(15px, 1.5vw, 18px);
	font-weight: 800;
	line-height: 1.35;
	margin: 16px auto 0;
	max-width: 1060px;
	padding-left: clamp(16px, 7vw, 74px);
}

.yoko-course-program-showcase__caption strong {
	color: #ec2028;
	font-weight: 900;
}

.yoko-course-layout {
	align-items: start;
	display: grid;
	gap: clamp(22px, 3vw, 34px);
	grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
	padding-bottom: clamp(42px, 6vw, 78px);
	padding-top: clamp(34px, 5vw, 58px);
}

.yoko-course-modular-stack {
	background: #f5f8fc;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
}

.yoko-course-layout__main {
	min-width: 0;
}

.yoko-course-layout__full {
	grid-column: 1 / -1;
	min-width: 0;
}

.yoko-course-layout__full--teacher-spotlight {
	margin: 0 0 clamp(32px, 5vw, 56px);
}

.yoko-course-section {
	background: transparent;
	margin: 0 0 clamp(32px, 5vw, 56px);
}

.yoko-course-section--standalone {
	margin: 0;
	padding: clamp(34px, 5vw, 58px) 0;
}

.yoko-course-section:last-child {
	margin-bottom: 0;
}

.yoko-course-section__header {
	margin: 0 0 clamp(18px, 3vw, 28px);
}

.yoko-course-section__header h2 {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family);
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.13;
	margin: 0;
	text-wrap: balance;
}

.yoko-course-section__header div {
	color: var(--yoko-color-muted);
	font-size: 15px;
	line-height: 1.65;
	margin-top: 8px;
	max-width: 760px;
}

.yoko-course-section__header p {
	margin: 0;
}

.yoko-course-section__header--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.yoko-course-section__header--center div {
	margin-left: auto;
	margin-right: auto;
}

.yoko-course-section--benefits {
	background: transparent;
}

.yoko-course-section--benefits .yoko-course-section__header h2,
#yoko-course-benefits .yoko-course-section__header h2 {
	color: var(--yoko-color-primary);
}

.yoko-course-section--benefits .yoko-course-section__header div,
#yoko-course-benefits .yoko-course-section__header div {
	color: #43546b;
	font-weight: 500;
}

.yoko-course-modules {
	display: grid;
	gap: 16px;
}

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

.yoko-course-modules--grid .yoko-course-module--has-image {
	grid-template-columns: 1fr;
}

.yoko-course-modules--grid .yoko-course-module__media {
	border-bottom: 1px solid var(--yoko-course-module-divider);
	border-right: 0;
	min-height: 190px;
}

.yoko-course-module {
	--yoko-course-module-accent: var(--yoko-color-primary);
	--yoko-course-module-accent-soft: color-mix(in srgb, var(--yoko-course-module-accent) 10%, #ffffff);
	--yoko-course-module-accent-border: color-mix(in srgb, var(--yoko-course-module-accent) 22%, #dce5f0);
	--yoko-course-module-divider: #e4eaf2;
	--yoko-course-module-media-bg: #f2f5f8;
	--yoko-course-module-shadow: color-mix(in srgb, var(--yoko-course-module-accent) 10%, transparent);
	--yoko-course-module-surface: #ffffff;
	background: var(--yoko-course-module-surface);
	border: 1px solid var(--yoko-course-module-accent-border);
	border-radius: 16px;
	box-shadow: 0 14px 34px var(--yoko-course-module-shadow);
	overflow: hidden;
}

.yoko-course-module--preset-white {
	--yoko-course-module-accent: var(--yoko-color-heading);
	--yoko-course-module-accent-soft: #eef4f8;
	--yoko-course-module-accent-border: var(--yoko-color-border);
	--yoko-course-module-divider: var(--yoko-color-border);
	--yoko-course-module-media-bg: #f4f7fa;
	--yoko-course-module-shadow: rgba(5, 54, 83, 0.08);
	--yoko-course-module-surface: #ffffff;
}

.yoko-course-module--preset-blue {
	--yoko-course-module-accent: #0b5cad;
	--yoko-course-module-accent-soft: #eaf4ff;
	--yoko-course-module-accent-border: #bfd8f3;
	--yoko-course-module-divider: #d5e5f6;
	--yoko-course-module-media-bg: #eef7ff;
	--yoko-course-module-shadow: rgba(11, 92, 173, 0.12);
	--yoko-course-module-surface: #f7fbff;
}

.yoko-course-module--preset-green {
	--yoko-course-module-accent: #23a764;
	--yoko-course-module-accent-soft: #e8f8ef;
	--yoko-course-module-accent-border: #bde7cf;
	--yoko-course-module-divider: #d1f0de;
	--yoko-course-module-media-bg: #eefdf5;
	--yoko-course-module-shadow: rgba(35, 167, 100, 0.12);
	--yoko-course-module-surface: #f6fef9;
}

.yoko-course-module--preset-red {
	--yoko-course-module-accent: var(--yoko-color-primary);
	--yoko-course-module-accent-soft: #ffe9ea;
	--yoko-course-module-accent-border: #f8c2c6;
	--yoko-course-module-divider: #f3d4d7;
	--yoko-course-module-media-bg: #fff0f1;
	--yoko-course-module-shadow: rgba(236, 32, 40, 0.12);
	--yoko-course-module-surface: #fff9f9;
}

.yoko-course-module--preset-purple {
	--yoko-course-module-accent: #7c3aed;
	--yoko-course-module-accent-soft: #f2eafe;
	--yoko-course-module-accent-border: #dac7fb;
	--yoko-course-module-divider: #e5d8fe;
	--yoko-course-module-media-bg: #f6f0ff;
	--yoko-course-module-shadow: rgba(124, 58, 237, 0.13);
	--yoko-course-module-surface: #fbf8ff;
}

.yoko-course-module--preset-gold {
	--yoko-course-module-accent: #c88700;
	--yoko-course-module-accent-soft: #fff4d8;
	--yoko-course-module-accent-border: #f2d69a;
	--yoko-course-module-divider: #ecdbb8;
	--yoko-course-module-media-bg: #fff8e8;
	--yoko-course-module-shadow: rgba(200, 135, 0, 0.12);
	--yoko-course-module-surface: #fffcf5;
}

.yoko-course-module--preset-teal {
	--yoko-course-module-accent: #0e9384;
	--yoko-course-module-accent-soft: #dff7f3;
	--yoko-course-module-accent-border: #b8e7df;
	--yoko-course-module-divider: #cdeee8;
	--yoko-course-module-media-bg: #eafaf8;
	--yoko-course-module-shadow: rgba(14, 147, 132, 0.12);
	--yoko-course-module-surface: #f4fffd;
}

.yoko-course-module--preset-rose {
	--yoko-course-module-accent: #d63384;
	--yoko-course-module-accent-soft: #fce7f3;
	--yoko-course-module-accent-border: #f6bdd8;
	--yoko-course-module-divider: #f4d2e2;
	--yoko-course-module-media-bg: #fff0f7;
	--yoko-course-module-shadow: rgba(214, 51, 132, 0.12);
	--yoko-course-module-surface: #fff7fb;
}

.yoko-course-module--has-image {
	display: grid;
	grid-template-columns: minmax(176px, 28%) minmax(0, 1fr);
}

.yoko-course-module__media {
	align-self: stretch;
	background: var(--yoko-course-module-media-bg);
	border-right: 1px solid var(--yoko-course-module-divider);
	height: 100%;
	margin: 0;
	min-height: clamp(170px, 20vw, 230px);
	overflow: hidden;
}

.yoko-course-module__image {
	display: block;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-course-module__content,
.yoko-course-module__copy {
	min-width: 0;
}

.yoko-course-module__header {
	align-items: start;
	display: grid;
	gap: 14px;
	grid-template-columns: 54px minmax(0, 1fr) auto;
	padding: 18px 20px;
}

.yoko-course-module__level {
	align-items: center;
	background: var(--yoko-course-module-accent-soft);
	border-radius: 999px;
	color: var(--yoko-course-module-accent);
	display: inline-flex;
	font-size: 18px;
	font-weight: 900;
	height: 48px;
	justify-content: center;
	line-height: 1;
	width: 48px;
}

.yoko-course-module h3 {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family);
	font-size: 21px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 6px;
}

.yoko-course-module__copy > div {
	color: var(--yoko-color-muted);
	font-size: 14px;
	line-height: 1.55;
}

.yoko-course-module__header p {
	margin: 0;
}

.yoko-course-module__badge {
	border-radius: 999px;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
	padding: 8px 11px;
	white-space: nowrap;
}

.yoko-course-module__badge--primary,
.yoko-course-module__badge--info,
.yoko-course-module__badge--danger,
.yoko-course-module__badge--success,
.yoko-course-module__badge--warning {
	background: var(--yoko-course-module-accent-soft);
	color: var(--yoko-course-module-accent);
}

.yoko-course-module__meta {
	border-bottom: 1px solid var(--yoko-course-module-divider);
	border-top: 1px solid var(--yoko-course-module-divider);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-course-module__meta div {
	padding: 14px 18px;
}

.yoko-course-module__meta div + div {
	border-left: 1px solid var(--yoko-course-module-divider);
}

.yoko-course-module__meta span {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.yoko-course-module__meta strong {
	color: var(--yoko-color-navy);
	display: block;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.35;
}

.yoko-course-module__fee strong {
	color: var(--yoko-course-module-accent);
}

.yoko-course-module__footer {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: 16px 20px;
}

.yoko-course-module__footer p {
	color: #536175;
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

.yoko-course-module__button,
.yoko-course-sidebar__button {
	align-items: center;
	background: var(--yoko-color-navy) !important;
	border: 0;
	border-radius: var(--yoko-radius-button) !important;
	color: #ffffff !important;
	display: inline-flex;
	font-size: 14px;
	font-weight: 850;
	justify-content: center;
	line-height: 1.2;
	margin: 0;
	min-height: 42px;
	padding: 0 20px;
	text-transform: none;
	white-space: nowrap;
}

.yoko-course-benefits {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yoko-course-benefits--columns-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-course-benefits--columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yoko-course-benefit,
.yoko-course-schedule,
.yoko-course-teacher,
.yoko-course-testimonial,
.yoko-course-faq {
	background: #ffffff;
	border: 1px solid #dfe7f1;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(17, 91, 175, 0.07);
}

.yoko-course-benefit {
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border-color: #c7d8ec;
	box-shadow: 0 16px 34px rgba(8, 47, 73, 0.11);
	min-height: 176px;
	padding: 22px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.yoko-course-benefit:hover {
	border-color: rgba(236, 32, 40, 0.46);
	box-shadow: 0 20px 42px rgba(8, 47, 73, 0.16);
	transform: translateY(-2px);
}

.yoko-course-benefit span {
	color: rgba(236, 32, 40, 0.2);
	display: block;
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 10px;
}

.yoko-course-benefit h3,
.yoko-course-schedule h3,
.yoko-course-teacher h3 {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family);
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0 0 8px;
}

.yoko-course-benefit h3 {
	color: var(--yoko-color-primary);
}

.yoko-course-benefit div,
.yoko-course-teacher div div,
.yoko-course-testimonial div {
	color: #536175;
	font-size: 14px;
	line-height: 1.6;
}

.yoko-course-benefit div {
	color: #41536a;
}

.yoko-course-benefit p,
.yoko-course-teacher p,
.yoko-course-testimonial p {
	margin: 0;
}

.yoko-course-schedules {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
}

.yoko-course-schedules--two_column {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yoko-course-schedule {
	overflow: hidden;
}

.yoko-course-schedule header {
	background: #f3f8fd;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 16px 18px;
}

.yoko-course-schedule header span {
	color: var(--yoko-color-primary);
	font-size: 13px;
	font-weight: 850;
	line-height: 1.35;
}

.yoko-course-schedule__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-course-schedule__grid div {
	padding: 14px 16px;
}

.yoko-course-schedule__grid div + div {
	border-left: 1px solid #e4eaf2;
}

.yoko-course-schedule__grid span {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.yoko-course-schedule__grid strong {
	color: var(--yoko-color-navy);
	display: block;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.35;
}

.yoko-course-schedule > p {
	background: #f0fff9;
	color: #236b56;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	margin: 0;
	padding: 10px 16px;
}

.yoko-course-teachers {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yoko-course-teacher {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 84px minmax(0, 1fr);
	padding: 16px;
}

.yoko-course-teacher figure {
	background: #f3f7fc;
	border-radius: 999px;
	height: 84px;
	margin: 0;
	overflow: hidden;
	width: 84px;
}

.yoko-course-teacher img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-course-teacher span {
	color: var(--yoko-color-primary);
	display: block;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.yoko-course-teacher__role {
	color: var(--yoko-color-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	margin: -4px 0 8px;
}

.yoko-course-teacher-spotlight {
	background: var(--yoko-color-surface);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	overflow: hidden;
	padding: 48px 0 54px;
	position: relative;
}

.yoko-course-teacher-spotlight *,
.yoko-course-teacher-spotlight *::before,
.yoko-course-teacher-spotlight *::after {
	box-sizing: border-box;
}

.yoko-course-teacher-spotlight::before {
	content: none;
}

.yoko-course-layout__full--teacher-spotlight .yoko-course-teacher-spotlight {
	background: transparent;
	overflow: visible;
	padding: 0;
}

.yoko-course-layout__full--teacher-spotlight .yoko-course-teacher-spotlight__inner.container {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
}

.yoko-course-teacher-spotlight__inner {
	position: relative;
	z-index: 1;
}

.yoko-course-teacher-spotlight__header {
	margin: 0 0 clamp(18px, 3vw, 28px);
	max-width: 920px;
}

.yoko-course-teacher-spotlight__header h2 {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family);
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.13;
	margin: 0;
	text-wrap: balance;
}

.yoko-course-teacher-spotlight__header div {
	color: var(--yoko-color-muted);
	font-size: 15px;
	line-height: 1.65;
	margin-top: 8px;
	max-width: 760px;
}

.yoko-course-teacher-spotlight__header p {
	margin: 0;
}

.yoko-course-teacher-spotlight__cards {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 16px;
}

.yoko-course-teacher-spotlight__card {
	min-width: 0;
}

.yoko-course-teacher-spotlight__card-button {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 10px 24px rgba(5, 54, 83, 0.05);
	color: inherit;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
	min-height: 276px;
	overflow: hidden;
	padding: 0;
	text-align: left;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 100%;
}

.yoko-course-teacher-spotlight__card-button:hover,
.yoko-course-teacher-spotlight__card-button:focus-visible {
	border-color: rgba(236, 32, 40, 0.34);
	box-shadow: var(--yoko-shadow-card);
	outline: 0;
}

.yoko-course-teacher-spotlight__card-button:hover {
	transform: translateY(-2px);
}

.yoko-course-teacher-spotlight__card-media {
	align-items: center;
	background: #fbfbfc;
	display: flex;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}

.yoko-course-teacher-spotlight__card-media,
.yoko-course-teacher-spotlight__card-image {
	aspect-ratio: 4 / 3;
}

.yoko-course-teacher-spotlight__card-image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-course-teacher-spotlight__card-body {
	display: grid;
	gap: 6px;
	padding: 16px 16px 14px;
	width: 100%;
}

.yoko-course-teacher-spotlight__card-body strong {
	color: var(--yoko-color-text);
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	min-height: 20px;
}

.yoko-course-teacher-spotlight__card-body small {
	align-items: center;
	color: var(--yoko-color-muted);
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 6px;
	line-height: 1.3;
}

.yoko-course-teacher-spotlight__card-body small i {
	color: #8a8f98;
	font-size: 13px;
}

.yoko-course-teacher-spotlight__card-action {
	align-items: center;
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: 8px;
	color: #8a8f98;
	display: inline-flex;
	height: 36px;
	justify-content: center;
	margin-top: 6px;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
	width: 36px;
}

.yoko-course-teacher-spotlight__card-action i {
	font-size: 13px;
}

.yoko-course-teacher-spotlight__card-button:hover .yoko-course-teacher-spotlight__card-action,
.yoko-course-teacher-spotlight__card-button:focus-visible .yoko-course-teacher-spotlight__card-action {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	color: #ffffff;
}

.yoko-course-teacher-spotlight__panel,
.yoko-course-teacher-spotlight__single {
	align-items: center;
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	padding: 20px;
}

.yoko-course-teacher-spotlight__panel[hidden] {
	display: none;
}

.yoko-course-teacher-spotlight__portrait,
.yoko-course-teacher-spotlight__single figure {
	align-items: center;
	aspect-ratio: 1 / 1;
	background: #fbfbfc;
	border-radius: var(--yoko-radius-card);
	display: flex;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.yoko-course-teacher-spotlight__portrait-image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-course-teacher-spotlight__profile h3,
.yoko-course-teacher-spotlight__single h3 {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family-heading);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
}

.yoko-course-teacher-spotlight__profile > p,
.yoko-course-teacher-spotlight__single p {
	color: var(--yoko-color-muted);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
	margin: 3px 0 22px;
}

.yoko-course-teacher-spotlight__facts {
	display: grid;
	gap: 18px 30px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yoko-course-teacher-spotlight__fact {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: 42px minmax(0, 1fr);
	min-width: 0;
}

.yoko-course-teacher-spotlight__fact-icon {
	align-items: center;
	background: rgba(236, 32, 40, 0.14);
	border-radius: 8px;
	color: #b84449;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.yoko-course-teacher-spotlight__fact-icon i {
	font-size: 17px;
}

.yoko-course-teacher-spotlight__fact strong {
	color: var(--yoko-color-text);
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
}

.yoko-course-teacher-spotlight__fact small {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	margin-top: 2px;
}

.yoko-course-teacher-spotlight-builder-preview {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	font-family: var(--yoko-font-family);
	padding: 18px;
}

.yoko-course-teacher-spotlight-builder-preview__header strong {
	color: var(--yoko-color-primary);
	display: block;
	font-family: var(--yoko-font-family-heading);
	font-size: 18px;
	line-height: 1.3;
}

.yoko-course-teacher-spotlight-builder-preview__header span {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 13px;
	line-height: 1.45;
	margin-top: 5px;
}

.yoko-course-teacher-spotlight-builder-preview__cards {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 14px 0;
}

.yoko-course-teacher-spotlight-builder-item {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	display: grid;
	gap: 8px;
	min-height: 118px;
	padding: 10px;
}

.yoko-course-teacher-spotlight-builder-item__avatar {
	align-items: center;
	background: var(--yoko-color-soft);
	border-radius: 6px;
	display: flex;
	height: 46px;
	justify-content: center;
}

.yoko-course-teacher-spotlight-builder-item__avatar::before {
	color: #8a8f98;
	content: "\f007";
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
}

.yoko-course-teacher-spotlight-builder-item strong {
	color: var(--yoko-color-text);
	display: block;
	font-size: 13px;
	line-height: 1.3;
}

.yoko-course-teacher-spotlight-builder-item small {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 12px;
	line-height: 1.35;
}

.yoko-course-teacher-spotlight-builder-item em {
	font-style: normal;
}

.yoko-course-teacher-spotlight-builder-preview__panel {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	display: grid;
	gap: 14px;
	grid-template-columns: 70px minmax(0, 1fr);
	padding: 12px;
}

.yoko-course-teacher-spotlight-builder-preview__panel > span {
	aspect-ratio: 1 / 1;
	background: var(--yoko-color-soft);
	border-radius: 6px;
	display: block;
}

.yoko-course-teacher-spotlight-builder-preview__panel strong {
	color: var(--yoko-color-text);
	display: block;
	font-size: 14px;
	line-height: 1.3;
}

.yoko-course-teacher-spotlight-builder-preview__panel small {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 12px;
	line-height: 1.4;
}

.yoko-course-media-section {
	background: var(--yoko-color-surface);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	overflow: hidden;
	padding: 46px 0 50px;
	position: relative;
}

.yoko-course-media-section *,
.yoko-course-media-section *::before,
.yoko-course-media-section *::after {
	box-sizing: border-box;
}

.yoko-course-media-section::before {
	background-image: radial-gradient(rgba(5, 54, 83, 0.16) 1.2px, transparent 1.2px);
	background-size: 14px 14px;
	content: "";
	inset: 0 0 auto;
	height: 118px;
	pointer-events: none;
	position: absolute;
}

.yoko-course-media-section__inner {
	position: relative;
	z-index: 1;
}

.yoko-course-media-section__header {
	margin: 0 auto clamp(24px, 4vw, 42px);
	max-width: 920px;
	text-align: center;
}

.yoko-course-media-section__header.yoko-section-heading {
	--yoko-section-heading-base: var(--yoko-color-primary);
	--yoko-section-heading-accent: var(--yoko-color-primary);
}

.yoko-course-media-section__header h2:not(.yoko-section-heading__title) {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family-heading);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
	text-transform: uppercase;
}

.yoko-course-media-section__header h2:not(.yoko-section-heading__title) span {
	color: var(--yoko-color-primary);
}

.yoko-course-media-section__header div:not(.yoko-section-heading__subtitle) {
	color: var(--yoko-color-muted);
	font-size: 14px;
	line-height: 1.65;
	margin-top: 8px;
}

.yoko-course-media-section__header p {
	margin: 0;
}

.yoko-course-tiktok-showcase__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 1040px;
}

.yoko-course-tiktok-video {
	min-width: 0;
}

.yoko-course-tiktok-video__frame {
	aspect-ratio: 9 / 16;
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 10px 24px rgba(5, 54, 83, 0.05);
	color: #ffffff;
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	transform: translateY(0);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 100%;
}

.yoko-course-tiktok-video__frame:hover,
.yoko-course-tiktok-video__frame:focus-visible {
	border-color: rgba(236, 32, 40, 0.34);
	box-shadow: var(--yoko-shadow-card-hover);
	outline: 0;
	transform: translateY(-2px);
}

.yoko-course-tiktok-video__image {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
	width: 100%;
}

.yoko-course-tiktok-video__frame:hover .yoko-course-tiktok-video__image,
.yoko-course-tiktok-video__frame:focus-visible .yoko-course-tiktok-video__image {
	transform: scale(1.025);
}

.yoko-course-tiktok-video__frame::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(5, 54, 83, 0.74) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.yoko-course-tiktok-video__label {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 999px;
	color: var(--yoko-color-primary);
	font-size: 11px;
	font-weight: 800;
	left: 12px;
	line-height: 1;
	padding: 7px 9px;
	position: absolute;
	top: 12px;
	z-index: 2;
}

.yoko-course-tiktok-video__actions {
	align-items: center;
	display: grid;
	gap: 10px;
	position: absolute;
	right: 10px;
	top: 44%;
	transform: translateY(-50%);
	z-index: 2;
}

.yoko-course-tiktok-video__actions i {
	align-items: center;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 999px;
	color: var(--yoko-color-primary);
	display: inline-flex;
	font-size: 12px;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.yoko-course-tiktok-video__body {
	bottom: 0;
	display: grid;
	gap: 6px;
	left: 0;
	padding: 18px 16px 16px;
	position: absolute;
	right: 0;
	z-index: 2;
}

.yoko-course-tiktok-video__body strong {
	color: #ffffff;
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.34;
	text-shadow: 0 1px 12px rgba(5, 54, 83, 0.36);
}

.yoko-course-tiktok-video__body small {
	color: rgba(255, 255, 255, 0.84);
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.yoko-course-activity-slider {
	--yoko-activity-card-gap: clamp(14px, 1.6vw, 22px);
	--yoko-activity-card-width: clamp(190px, 15vw, 236px);
	background: var(--yoko-color-navy);
	color: #ffffff;
	min-height: clamp(520px, 48vw, 650px);
	padding: clamp(58px, 7vw, 86px) 0 clamp(54px, 7vw, 82px);
}

.yoko-course-activity-slider::before {
	background:
		linear-gradient(90deg, rgba(5, 13, 22, 0.88) 0%, rgba(5, 13, 22, 0.72) 40%, rgba(5, 13, 22, 0.44) 68%, rgba(5, 13, 22, 0.8) 100%),
		linear-gradient(180deg, rgba(5, 13, 22, 0.12) 0%, rgba(5, 13, 22, 0.82) 100%);
	content: "";
	height: auto;
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.yoko-course-activity-gallery__backgrounds,
.yoko-course-activity-gallery__background {
	inset: 0;
	position: absolute;
}

.yoko-course-activity-gallery__backgrounds {
	overflow: hidden;
	z-index: 0;
}

.yoko-course-activity-gallery__background {
	background-position: center;
	background-size: cover;
	filter: saturate(0.94);
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 420ms ease, transform 760ms ease;
}

.yoko-course-activity-gallery__background.is-active {
	opacity: 1;
	transform: scale(1);
}

.yoko-course-activity-gallery__inner {
	align-items: center;
	display: grid;
	gap: clamp(34px, 5vw, 64px);
	grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
	min-height: clamp(420px, 38vw, 520px);
	position: relative;
	z-index: 2;
}

.yoko-course-activity-gallery__content {
	min-width: 0;
	position: relative;
	z-index: 2;
}

.yoko-course-activity-gallery__copy {
	animation: yokoActivityCopyIn 360ms ease both;
	display: grid;
	gap: 12px;
	max-width: 460px;
}

.yoko-course-activity-gallery__copy[hidden] {
	display: none;
}

.yoko-course-activity-gallery__heading {
	color: #ffffff;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(26px, 3.2vw, 44px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.14;
	margin: 0;
	text-wrap: balance;
}

.yoko-course-activity-gallery__subheading {
	color: #ffffff;
	font-family: var(--yoko-font-family);
	font-size: clamp(16px, 1.65vw, 22px);
	font-weight: 800;
	line-height: 1.28;
	margin: 0;
}

.yoko-course-activity-gallery__description {
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(13px, 0.9vw, 15px);
	font-weight: 500;
	line-height: 1.58;
	max-width: 520px;
}

.yoko-course-activity-gallery__description p {
	margin: 0;
}

.yoko-course-activity-gallery__button.yoko-button {
	align-items: center;
	display: inline-flex;
	gap: 10px;
	justify-self: start;
	margin: 14px 0 0;
}

.yoko-course-activity-gallery__button i {
	font-size: 13px;
}

.yoko-course-activity-gallery__visual {
	min-width: 0;
	position: relative;
	z-index: 2;
}

.yoko-course-activity-gallery__viewport {
	overflow: hidden;
	padding: 4px 0 18px;
	width: 100%;
}

.yoko-course-activity-gallery__track {
	align-items: stretch;
	display: flex;
	gap: var(--yoko-activity-card-gap);
	transform: translate3d(0, 0, 0);
	transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.yoko-course-activity-card {
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: var(--yoko-radius-card);
	color: #ffffff;
	cursor: pointer;
	display: block;
	flex: 0 0 var(--yoko-activity-card-width);
	margin: 0;
	opacity: 0.72;
	padding: 0;
	text-align: left;
	transform: translateY(0) scale(0.98);
	transition: opacity 180ms ease, transform 180ms ease;
	width: var(--yoko-activity-card-width);
}

.yoko-course-activity-card:hover,
.yoko-course-activity-card:focus-visible,
.yoko-course-activity-card.is-active {
	opacity: 1;
	outline: 0;
	transform: translateY(-2px) scale(1);
}

.yoko-course-activity-card:focus-visible .yoko-course-activity-card__frame,
.yoko-course-activity-card.is-active .yoko-course-activity-card__frame {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.78), 0 22px 46px rgba(0, 0, 0, 0.28);
}

.yoko-course-activity-card__frame {
	aspect-ratio: 5 / 7;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.yoko-course-activity-card__frame::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.72) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.yoko-course-activity-card__image {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
	width: 100%;
}

.yoko-course-activity-card:hover .yoko-course-activity-card__image,
.yoko-course-activity-card:focus-visible .yoko-course-activity-card__image,
.yoko-course-activity-card.is-active .yoko-course-activity-card__image {
	transform: scale(1.035);
}

.yoko-course-activity-card__title {
	bottom: 18px;
	color: #ffffff;
	display: block;
	font-size: clamp(12px, 0.92vw, 15px);
	font-weight: 800;
	left: 18px;
	line-height: 1.18;
	position: absolute;
	right: 18px;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
	z-index: 2;
}

.yoko-course-activity-card--standalone {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	color: var(--yoko-color-text);
	cursor: default;
	padding: 0;
}

.yoko-course-activity-card--standalone .yoko-course-activity-card__summary {
	display: grid;
	gap: 4px;
	padding: 12px;
}

.yoko-course-activity-card--standalone .yoko-course-activity-card__summary strong {
	color: var(--yoko-color-heading);
	font-size: 15px;
	line-height: 1.3;
}

.yoko-course-activity-card--standalone .yoko-course-activity-card__summary small {
	color: var(--yoko-color-muted);
	font-size: 12px;
	line-height: 1.35;
}

.yoko-course-activity-gallery__controls {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: clamp(18px, 3vw, 32px);
	max-width: calc(var(--yoko-activity-card-width) + var(--yoko-activity-card-width) + var(--yoko-activity-card-width) + var(--yoko-activity-card-gap) + var(--yoko-activity-card-gap) + 80px);
}

.yoko-course-activity-gallery__nav {
	align-items: center;
	display: flex;
	gap: 12px;
	min-width: 0;
}

.yoko-course-activity-gallery__arrow {
	align-items: center;
	appearance: none;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	height: 48px;
	justify-content: center;
	margin: 0;
	padding: 0;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
	width: 48px;
}

.yoko-course-activity-gallery__arrow:hover,
.yoko-course-activity-gallery__arrow:focus-visible {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	color: #ffffff;
	outline: 0;
	transform: translateY(-2px);
}

.yoko-course-activity-gallery__arrow i {
	font-size: 14px;
}

.yoko-course-activity-gallery__progress {
	background: rgba(255, 255, 255, 0.78);
	display: inline-block;
	height: 3px;
	margin-left: 12px;
	width: clamp(72px, 10vw, 116px);
}

.yoko-course-activity-gallery__count {
	color: #ffffff;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 800;
	line-height: 1;
}

@keyframes yokoActivityCopyIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.yoko-course-social-builder {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	font-family: var(--yoko-font-family);
	padding: 16px;
}

.yoko-course-social-builder__header {
	margin-bottom: 12px;
	text-align: center;
}

.yoko-course-social-builder__header strong {
	color: var(--yoko-color-navy);
	display: block;
	font-family: var(--yoko-font-family-heading);
	font-size: 16px;
	line-height: 1.3;
}

.yoko-course-social-builder__header strong span {
	color: var(--yoko-color-primary);
}

.yoko-course-social-builder__header small {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 4px;
}

.yoko-course-social-builder__activity-hero {
	align-items: end;
	background: var(--yoko-color-navy);
	border-radius: var(--yoko-radius-card);
	color: #ffffff;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 12px;
	min-height: 120px;
	padding: 18px;
}

.yoko-course-social-builder__activity-hero strong {
	color: #ffffff;
	display: block;
	font-family: var(--yoko-font-family-heading);
	font-size: 18px;
	line-height: 1.25;
}

.yoko-course-social-builder__activity-hero small {
	color: rgba(255, 255, 255, 0.78);
	display: block;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 5px;
}

.yoko-course-social-builder__activity-controls {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 8px;
}

.yoko-course-social-builder__activity-controls span {
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	display: block;
	height: 28px;
	width: 28px;
}

.yoko-course-social-builder__activity-controls em {
	color: #ffffff;
	font-family: var(--yoko-font-family-heading);
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
}

.yoko-course-social-builder__activity-track {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yoko-course-social-builder__videos,
.yoko-course-social-builder__gallery {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yoko-course-social-builder__gallery {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-course-social-builder-item {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	display: grid;
	gap: 8px;
	padding: 9px;
}

.yoko-course-social-builder-item > span {
	background: var(--yoko-color-soft);
	border-radius: 6px;
	display: block;
}

.yoko-course-social-builder-item--video > span {
	aspect-ratio: 9 / 16;
}

.yoko-course-social-builder-item--photo > span {
	aspect-ratio: 16 / 10;
}

.yoko-course-social-builder-item--activity-slide > span {
	aspect-ratio: 5 / 7;
}

.yoko-course-social-builder-item strong {
	color: var(--yoko-color-text);
	display: block;
	font-size: 12px;
	line-height: 1.3;
}

.yoko-course-social-builder-item small {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 11px;
	line-height: 1.35;
}

.yoko-course-social-builder-item em {
	color: var(--yoko-color-primary);
	display: block;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.35;
	margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
	.yoko-course-benefit,
	.yoko-course-tiktok-video__frame,
	.yoko-course-tiktok-video__image,
	.yoko-course-activity-gallery__background,
	.yoko-course-activity-gallery__track,
	.yoko-course-activity-card,
	.yoko-course-activity-card__image,
	.yoko-course-activity-gallery__arrow {
		transition: none;
	}

	.yoko-course-tiktok-video__frame:hover,
	.yoko-course-tiktok-video__frame:focus-visible,
	.yoko-course-tiktok-video__frame:hover .yoko-course-tiktok-video__image,
	.yoko-course-tiktok-video__frame:focus-visible .yoko-course-tiktok-video__image,
	.yoko-course-activity-gallery__background,
	.yoko-course-benefit:hover,
	.yoko-course-activity-card,
	.yoko-course-activity-card:hover,
	.yoko-course-activity-card:focus-visible,
	.yoko-course-activity-card.is-active,
	.yoko-course-activity-card:hover .yoko-course-activity-card__image,
	.yoko-course-activity-card:focus-visible .yoko-course-activity-card__image,
	.yoko-course-activity-card.is-active .yoko-course-activity-card__image,
	.yoko-course-activity-gallery__arrow:hover,
	.yoko-course-activity-gallery__arrow:focus-visible {
		transform: none;
	}

	.yoko-course-activity-gallery__copy {
		animation: none;
	}
}

@media (max-width: 849px) {
	.yoko-course-tiktok-showcase__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 620px;
	}

	.yoko-course-activity-slider {
		--yoko-activity-card-width: clamp(210px, 36vw, 280px);
		min-height: auto;
		padding: 52px 0 56px;
	}

	.yoko-course-activity-slider::before {
		background:
			linear-gradient(180deg, rgba(5, 13, 22, 0.84) 0%, rgba(5, 13, 22, 0.62) 46%, rgba(5, 13, 22, 0.86) 100%),
			linear-gradient(90deg, rgba(5, 13, 22, 0.78) 0%, rgba(5, 13, 22, 0.44) 100%);
	}

	.yoko-course-activity-gallery__inner {
		gap: 30px;
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.yoko-course-activity-gallery__copy {
		max-width: 680px;
	}

	.yoko-course-activity-gallery__heading {
		font-size: clamp(24px, 4.4vw, 36px);
	}

	.yoko-course-activity-gallery__subheading {
		font-size: clamp(16px, 2.8vw, 22px);
	}

	.yoko-course-activity-gallery__controls {
		max-width: calc(var(--yoko-activity-card-width) + var(--yoko-activity-card-width) + var(--yoko-activity-card-gap) + 72px);
	}
}

@media (max-width: 549px) {
	.yoko-course-media-section {
		padding: 34px 0 40px;
	}

	.yoko-course-media-section__header {
		margin-bottom: 18px;
	}

	.yoko-course-media-section__header h2:not(.yoko-section-heading__title) {
		font-size: 20px;
	}

	.yoko-course-tiktok-showcase__grid {
		display: grid;
		gap: 14px;
		grid-auto-columns: minmax(214px, 72vw);
		grid-auto-flow: column;
		grid-template-columns: none;
		margin: 0 -15px;
		max-width: none;
		overflow-x: auto;
		padding: 0 15px 8px;
		scroll-snap-type: x mandatory;
	}

	.yoko-course-tiktok-video {
		scroll-snap-align: start;
	}

	.yoko-course-activity-slider {
		--yoko-activity-card-gap: 14px;
		--yoko-activity-card-width: min(74vw, 270px);
		padding: 44px 0 46px;
	}

	.yoko-course-activity-gallery__inner {
		gap: 24px;
	}

	.yoko-course-activity-gallery__copy {
		gap: 14px;
	}

	.yoko-course-activity-gallery__heading {
		font-size: clamp(23px, 6.8vw, 29px);
	}

	.yoko-course-activity-gallery__subheading {
		font-size: clamp(16px, 4.4vw, 19px);
	}

	.yoko-course-activity-gallery__description {
		font-size: 14px;
		line-height: 1.55;
	}

	.yoko-course-activity-gallery__viewport {
		margin-right: -15px;
		width: calc(100% + 15px);
	}

	.yoko-course-activity-gallery__controls {
		gap: 14px;
		margin-top: 12px;
		max-width: none;
	}

	.yoko-course-activity-gallery__arrow {
		height: 44px;
		width: 44px;
	}

	.yoko-course-activity-gallery__progress {
		width: 54px;
	}

	.yoko-course-social-builder__videos,
	.yoko-course-social-builder__gallery,
	.yoko-course-social-builder__activity-track {
		grid-template-columns: 1fr;
	}

	.yoko-course-social-builder__activity-hero {
		align-items: start;
		flex-direction: column;
	}
}

.yoko-course-path {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	position: relative;
}

.yoko-course-path-step {
	background: #ffffff;
	border: 1px solid #dfe7f1;
	border-radius: 16px;
	padding: 20px 16px;
	text-align: center;
}

.yoko-course-path-step span {
	align-items: center;
	background: #f2f6fb;
	border: 3px solid #ffffff;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(17, 91, 175, 0.12);
	color: var(--yoko-color-navy);
	display: inline-flex;
	font-size: 16px;
	font-weight: 900;
	height: 42px;
	justify-content: center;
	line-height: 1;
	margin-bottom: 12px;
	width: 42px;
}

.yoko-course-path-step--active span,
.yoko-course-path-step--done span {
	background: #ec2128;
	color: #ffffff;
}

.yoko-course-path-step h3 {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.3;
	margin: 0 0 6px;
}

.yoko-course-path-step p {
	color: var(--yoko-color-muted);
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.yoko-course-testimonials {
	display: grid;
	gap: clamp(14px, 1.8vw, 22px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.yoko-course-testimonials--columns-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-course-testimonials--columns-4 {
	gap: clamp(12px, 1.4vw, 18px);
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yoko-course-testimonial {
	padding: 20px;
}

.yoko-course-testimonial__rating {
	color: #f8b400;
	font-size: 15px;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.yoko-course-testimonial footer {
	border-top: 1px solid #edf1f6;
	margin-top: 14px;
	padding-top: 12px;
}

.yoko-course-testimonial strong,
.yoko-course-testimonial span {
	display: block;
	line-height: 1.35;
}

.yoko-course-testimonial strong {
	color: var(--yoko-color-navy);
	font-size: 14px;
	font-weight: 900;
}

.yoko-course-testimonial span {
	color: var(--yoko-color-muted);
	font-size: 13px;
	margin-top: 2px;
}

.yoko-course-testimonial--video {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.yoko-course-testimonial--video .yoko-course-testimonial__frame {
	color: #ffffff;
	font-size: inherit;
	line-height: 1;
}

.yoko-course-testimonial--video .yoko-course-testimonial__image {
	display: block;
	margin: 0;
}

.yoko-course-testimonial--video .yoko-course-testimonial__play {
	align-items: center;
	color: #ffffff;
	display: inline-flex;
	font-size: inherit;
	line-height: 1;
	margin-top: 0;
}

.yoko-course-testimonials--columns-4 .yoko-home-video-testimonial__play {
	border-width: 2px;
	height: 44px;
	width: 44px;
}

.yoko-course-testimonials--columns-4 .yoko-home-video-testimonial__play i {
	font-size: 15px;
}

.yoko-course-testimonial--video .yoko-course-testimonial__caption {
	color: #ffffff;
	display: grid;
	font-size: inherit;
	line-height: 1.35;
	margin-top: 0;
}

.yoko-course-testimonials--columns-4 .yoko-course-testimonial__caption {
	padding: 30px 12px 12px;
}

.yoko-course-testimonial--video .yoko-course-testimonial__caption strong {
	color: #ffffff;
	display: block;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.32;
}

.yoko-course-testimonial--video .yoko-course-testimonial__caption small {
	color: rgba(255, 255, 255, 0.84);
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.yoko-course-testimonials--columns-4 .yoko-course-testimonial__caption strong {
	font-size: 13px;
}

.yoko-course-testimonials--columns-4 .yoko-course-testimonial__caption small {
	font-size: 11px;
}

.yoko-course-faqs {
	display: grid;
	gap: 10px;
}

.yoko-course-faq {
	overflow: hidden;
}

.yoko-course-faq summary {
	color: var(--yoko-color-primary);
	cursor: pointer;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
	list-style: none;
	padding: 17px 20px;
}

.yoko-course-faq summary::-webkit-details-marker {
	display: none;
}

.yoko-course-faq summary::after {
	color: var(--yoko-color-primary);
	content: "\f078";
	float: right;
	font-family: "Font Awesome 6 Free";
	font-size: 12px;
	font-weight: 900;
	margin-left: 12px;
	transition: transform 0.2s ease;
}

.yoko-course-faq[open] summary::after {
	transform: rotate(180deg);
}

.yoko-course-faq > div {
	border-top: 1px solid #edf1f6;
	color: #536175;
	font-size: 14px;
	line-height: 1.65;
	padding: 16px 20px 18px;
}

.yoko-course-faq p {
	margin: 0;
}

.yoko-course-sidebar {
	position: sticky;
	top: var(--yoko-course-sidebar-sticky-top, 96px);
}

.yoko-course-sidebar--static {
	position: static;
	top: auto;
}

.yoko-course-sidebar__inner {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 14px;
	box-shadow: 0 14px 34px rgba(5, 54, 83, 0.08);
	padding: 16px 18px 18px;
}

.yoko-course-sidebar-card,
.yoko-course-cta-card {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	margin: 0 0 16px;
	padding: 18px;
}

.yoko-course-sidebar-card h3,
.yoko-course-cta-card h3 {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family-heading);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 8px;
}

.yoko-course-cta-card {
	padding: 20px;
}

.yoko-course-cta-card p {
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 16px;
}

.yoko-course-cta-card--navy {
	background: var(--yoko-color-navy);
	border-color: rgba(5, 54, 83, 0.2);
	color: #ffffff;
}

.yoko-course-cta-card--navy h3,
.yoko-course-cta-card--navy p {
	color: #ffffff;
}

.yoko-course-cta-card--navy p {
	color: rgba(255, 255, 255, 0.84);
}

.yoko-course-cta-card--soft {
	background: #fff7f7;
	border-color: rgba(236, 32, 40, 0.16);
}

.yoko-course-cta-card--outline {
	background: #ffffff;
	border-color: rgba(236, 32, 40, 0.28);
}

.yoko-course-cta-card__button {
	margin: 0;
}

.yoko-course-sidebar h2,
.yoko-course-sidebar h3 {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family-heading);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
}

.yoko-course-sidebar h2 {
	font-size: 18px;
	margin-bottom: 2px;
}

.yoko-course-toc,
.yoko-course-related-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.yoko-course-toc li,
.yoko-course-related-links li {
	border-top: 1px solid var(--yoko-color-border);
	margin: 0;
}

.yoko-course-toc a,
.yoko-course-related-links a,
.yoko-course-toc span,
.yoko-course-related-links span {
	color: #556277;
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	padding: 11px 0;
	text-decoration: none;
}

.yoko-course-toc a:hover,
.yoko-course-related-links a:hover {
	color: var(--yoko-color-primary);
}

.yoko-course-sidebar__cta {
	background: linear-gradient(135deg, var(--yoko-color-primary) 0%, #ff5a43 100%);
	border-radius: 14px;
	color: #ffffff;
	margin: 18px 0 16px;
	padding: 18px;
}

.yoko-course-sidebar__cta h3 {
	color: #ffffff;
	font-size: 18px;
	margin-bottom: 8px;
}

.yoko-course-sidebar__cta p {
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 14px;
}

.yoko-course-sidebar__button {
	background: #ffffff !important;
	border-color: #ffffff !important;
	color: var(--yoko-color-primary) !important;
	width: 100%;
}

.yoko-course-sidebar__stats {
	border: 1px solid var(--yoko-color-border);
	border-radius: 12px;
	margin: 0 0 16px;
	overflow: hidden;
}

.yoko-course-quick-stats .yoko-course-sidebar__stats {
	margin: 0;
}

.yoko-course-related-panel .yoko-course-related-links {
	margin-top: 4px;
}

.yoko-course-sidebar__stats div {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding: 10px 12px;
}

.yoko-course-sidebar__stats div + div {
	border-top: 1px solid var(--yoko-color-border);
}

.yoko-course-sidebar__stats span {
	color: var(--yoko-color-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
}

.yoko-course-sidebar__stats strong {
	color: var(--yoko-color-primary);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
	text-align: right;
}

.yoko-course-sidebar__subheading {
	font-size: 15px;
	margin-top: 2px !important;
	margin-bottom: 6px !important;
}

@media (max-width: 849px) {
	.yoko-course-hero__inner,
	.yoko-course-layout {
		grid-template-columns: 1fr;
	}

	.yoko-course-form {
		margin-left: 0;
		max-width: none;
	}

	.yoko-course-sidebar {
		position: static;
	}

	.yoko-course-stats,
	.yoko-course-path {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-course-program-showcase__collage {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
		max-width: 720px;
	}

	.yoko-course-program-showcase__media--main,
	.yoko-course-program-showcase__media--top,
	.yoko-course-program-showcase__media--middle,
	.yoko-course-program-showcase__media--right,
	.yoko-course-program-showcase__media--main:hover,
	.yoko-course-program-showcase__media--middle:hover,
	.yoko-course-program-showcase__media--right:hover {
		aspect-ratio: 16 / 10;
		grid-column: auto;
		grid-row: auto;
		transform: none;
	}

	.yoko-course-program-showcase__media--main {
		grid-column: 1 / -1;
	}

	.yoko-course-program-showcase__caption {
		max-width: 720px;
		padding-left: 0;
		text-align: center;
	}

	.yoko-course-program-showcase__icon--kana {
		left: 8px;
		top: -22px;
	}

	.yoko-course-program-showcase__icon--love {
		right: 38px;
		top: -20px;
	}

	.yoko-course-program-showcase__icon--letter {
		bottom: -22px;
		left: 18px;
	}

	.yoko-course-program-showcase__icon--sakura {
		right: 4px;
		top: 44%;
	}

	.yoko-course-benefits,
	.yoko-course-modules--grid,
	.yoko-course-schedules,
	.yoko-course-teachers,
	.yoko-course-testimonials {
		grid-template-columns: 1fr;
	}

	.yoko-course-testimonials--columns-3,
	.yoko-course-testimonials--columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-course-teacher-spotlight__cards,
	.yoko-course-teacher-spotlight-builder-preview__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-course-teacher-spotlight__panel,
	.yoko-course-teacher-spotlight__single {
		grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	}
}

@media (max-width: 549px) {
	.yoko-course-hero {
		padding: 28px 0 72px;
	}

	.yoko-course-hero h1 {
		font-size: clamp(25px, 8.6vw, 32px);
	}

	.yoko-course-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 4px 8px;
	}

	.yoko-course-testimonials--columns-4 {
		gap: 12px;
	}

	.yoko-course-testimonials--columns-4 .yoko-home-video-testimonial__play {
		height: 38px;
		width: 38px;
	}

	.yoko-course-testimonials--columns-4 .yoko-home-video-testimonial__play i {
		font-size: 13px;
	}

	.yoko-course-testimonials--columns-4 .yoko-course-testimonial__caption {
		padding: 24px 10px 10px;
	}

	.yoko-course-testimonials--columns-4 .yoko-course-testimonial__caption strong {
		font-size: 12px;
	}

	.yoko-course-path {
		grid-template-columns: 1fr;
	}

	.yoko-course-stat {
		min-height: 86px;
		padding: 12px 8px;
	}

	.yoko-course-program-showcase__collage {
		grid-template-columns: 1fr;
	}

	.yoko-course-program-showcase__icon {
		width: 44px;
	}

	.yoko-course-program-showcase__icon--kana {
		left: 10px;
		top: -14px;
	}

	.yoko-course-program-showcase__icon--love {
		right: 12px;
		top: -16px;
		width: 48px;
	}

	.yoko-course-program-showcase__icon--letter {
		bottom: -14px;
		left: 14px;
		width: 52px;
	}

	.yoko-course-program-showcase__icon--sakura {
		right: 12px;
		top: 52%;
		width: 56px;
	}

	.yoko-course-program-showcase__media--main {
		grid-column: auto;
	}

	.yoko-course-program-showcase__play {
		font-size: 18px;
		height: 52px;
		width: 52px;
	}

	.yoko-course-module--has-image {
		grid-template-columns: 1fr;
	}

	.yoko-course-module__media {
		aspect-ratio: 16 / 10;
		border-bottom: 1px solid var(--yoko-course-module-divider);
		border-right: 0;
		min-height: 0;
	}

	.yoko-course-module__header {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.yoko-course-module__badge {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.yoko-course-module__meta,
	.yoko-course-schedule__grid {
		grid-template-columns: 1fr;
	}

	.yoko-course-module__meta div + div {
		border-left: 0;
		border-top: 1px solid var(--yoko-course-module-divider);
	}

	.yoko-course-schedule__grid div + div {
		border-left: 0;
		border-top: 1px solid #e4eaf2;
	}

	.yoko-course-module__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.yoko-course-module__button {
		width: 100%;
	}

	.yoko-course-schedule header {
		display: block;
	}

	.yoko-course-teacher {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.yoko-course-teacher figure {
		height: 72px;
		width: 72px;
	}

	.yoko-course-teacher-spotlight {
		padding: 36px 0 42px;
	}

	.yoko-course-teacher-spotlight__header h2 {
		font-size: 24px;
	}

	.yoko-course-teacher-spotlight__cards,
	.yoko-course-teacher-spotlight-builder-preview__cards {
		grid-template-columns: 1fr;
	}

	.yoko-course-teacher-spotlight__card-button {
		min-height: 0;
	}

	.yoko-course-teacher-spotlight__panel,
	.yoko-course-teacher-spotlight__single,
	.yoko-course-teacher-spotlight-builder-preview__panel {
		gap: 18px;
		grid-template-columns: 1fr;
	}

	.yoko-course-teacher-spotlight__facts {
		grid-template-columns: 1fr;
	}

	.yoko-course-teacher-spotlight__profile h3,
	.yoko-course-teacher-spotlight__single h3 {
		font-size: 21px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yoko-course-program-showcase__icon {
		animation: none;
	}
}

.yoko-footer-4-col {
	--yoko-footer-4-bg: #233b5e;
	--yoko-footer-4-accent: var(--yoko-color-primary);
	--yoko-footer-4-heading: #ffffff;
	--yoko-footer-4-text: #c5ccd8;
	--yoko-footer-4-text-strong: #ffffff;
	--yoko-footer-4-line: rgba(255, 255, 255, 0.16);
	--yoko-footer-4-soft: rgba(255, 255, 255, 0.12);
	background: var(--yoko-footer-4-bg);
	color: var(--yoko-footer-4-text);
	font-family: var(--yoko-font-family);
	padding-top: clamp(30px, 4vw, 44px);
}

.yoko-footer-4-col[style*="#171C24"],
.yoko-footer-4-col[style*="#171c24"] {
	--yoko-footer-4-bg: #233b5e !important;
}

.yoko-footer-4-col *,
.yoko-footer-4-col *::before,
.yoko-footer-4-col *::after {
	box-sizing: border-box;
}

.yoko-footer-4-col a {
	color: inherit;
	text-decoration: none;
}

.yoko-footer-4-col__inner.container {
	position: relative;
}

.yoko-footer-4-col__grid {
	align-items: flex-start;
	display: flex;
	gap: clamp(24px, 3.4vw, 46px);
	justify-content: space-between;
}

.yoko-footer-4-col__column {
	flex: var(--yoko-footer-4-column-grow, 1) 1 0;
	min-width: 0;
}

.yoko-footer-4-col__column--width-brand {
	--yoko-footer-4-column-grow: 1.2;
}

.yoko-footer-4-col__column--width-narrow {
	--yoko-footer-4-column-grow: 0.74;
}

.yoko-footer-4-col__column--width-regular {
	--yoko-footer-4-column-grow: 0.86;
}

.yoko-footer-4-col__column--width-wide {
	--yoko-footer-4-column-grow: 1.18;
}

.yoko-footer-4-col__column--width-office {
	--yoko-footer-4-column-grow: 1.34;
}

.yoko-footer-4-col__column--align-center {
	text-align: center;
}

.yoko-footer-4-col__column--align-right {
	text-align: right;
}

.yoko-footer-4-col__column > * + * {
	margin-top: 14px;
}

.yoko-footer-4-col__heading {
	color: var(--yoko-footer-4-heading);
	font-family: var(--yoko-font-family);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 14px;
}

.yoko-footer-brand {
	max-width: 236px;
}

.yoko-footer-brand__mark {
	align-items: center;
	display: flex;
	min-height: 28px;
}

.yoko-footer-brand__image {
	display: block;
	height: auto;
	max-height: 44px;
	max-width: min(150px, 100%);
	object-fit: contain;
	width: auto;
}

.yoko-footer-brand__text-logo {
	color: var(--yoko-footer-4-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.yoko-footer-brand__eyebrow {
	color: #b1bac9;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
	margin-top: 7px;
	text-transform: uppercase;
}

.yoko-footer-brand__description {
	color: var(--yoko-footer-4-text);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.55;
	margin-top: 14px;
}

.yoko-footer-brand__description p,
.yoko-footer-text__body p,
.yoko-footer-schedule__text p,
.yoko-footer-address__text p {
	margin: 0;
}

.yoko-footer-contact {
	align-items: flex-start;
	color: var(--yoko-footer-4-text);
	display: grid;
	font-size: 13px;
	font-weight: 600;
	gap: 8px;
	grid-template-columns: 16px minmax(0, 1fr);
	line-height: 1.45;
}

.yoko-footer-contact__icon,
.yoko-footer-address__icon,
.yoko-footer-schedule__icon {
	color: var(--yoko-footer-4-accent);
	display: inline-flex;
	height: 16px;
	margin-top: 1px;
	width: 16px;
}

.yoko-footer-contact__icon svg,
.yoko-footer-address__icon svg,
.yoko-footer-schedule__icon svg,
.yoko-footer-social svg {
	fill: currentColor;
	height: 100%;
	width: 100%;
}

.yoko-footer-contact__body {
	min-width: 0;
}

.yoko-footer-contact strong {
	color: var(--yoko-footer-4-text-strong);
	font-weight: 800;
	margin-right: 4px;
}

.yoko-footer-contact a {
	color: var(--yoko-footer-4-text-strong);
	font-weight: 800;
}

.yoko-footer-contact a:hover,
.yoko-footer-menu__link:hover,
.yoko-footer-address__map:hover {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

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

.yoko-footer-social {
	align-items: center;
	background: var(--yoko-footer-4-soft);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 9px;
	font-weight: 900;
	height: 25px;
	justify-content: center;
	line-height: 1;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
	width: 25px;
}

.yoko-footer-social:hover {
	background: rgba(236, 32, 40, 0.16);
	border-color: rgba(236, 32, 40, 0.55);
	transform: translateY(-1px);
}

.yoko-footer-social svg {
	display: block;
	fill: currentColor;
	height: 12px;
	width: 12px;
}

.yoko-footer-social__glyph {
	color: currentColor;
	display: block;
	line-height: 1;
	transform: translateY(-0.5px);
}

.yoko-footer-menu__list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.yoko-footer-menu__item {
	margin: 0;
}

.yoko-footer-menu__link {
	color: var(--yoko-footer-4-text);
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.42;
}

.yoko-footer-text__body {
	color: var(--yoko-footer-4-text);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.58;
}

.yoko-footer-addresses > .yoko-footer-address:last-child {
	margin-bottom: 0;
}

.yoko-footer-address {
	align-items: flex-start;
	color: var(--yoko-footer-4-text);
	display: grid;
	font-size: 13px;
	font-weight: 600;
	gap: 8px;
	grid-template-columns: 16px minmax(0, 1fr);
	line-height: 1.5;
	margin-bottom: 12px;
	min-width: 0;
}

.yoko-footer-address h4 {
	color: var(--yoko-footer-4-text-strong);
	display: inline;
	font-family: var(--yoko-font-family);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: inherit;
	margin: 0 4px 0 0;
}

.yoko-footer-address__body,
.yoko-footer-address__text,
.yoko-footer-address__text p {
	display: inline;
}

.yoko-footer-address__map {
	color: #ffffff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	margin-top: 4px;
}

.yoko-footer-schedule {
	align-items: flex-start;
	border-top: 1px solid var(--yoko-footer-4-line);
	color: var(--yoko-footer-4-text);
	display: grid;
	font-size: 12px;
	font-weight: 700;
	gap: 8px;
	grid-template-columns: 16px minmax(0, 1fr);
	line-height: 1.5;
	margin-top: 17px;
	padding-top: 14px;
}

.yoko-footer-schedule__icon {
	color: #b1bac9;
}

.yoko-footer-4-col__copyright {
	border-top: 1px solid var(--yoko-footer-4-line);
	color: #aab3c2;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
	margin-top: clamp(28px, 4vw, 42px);
	padding: 17px 0 18px;
	text-align: center;
}

@media (max-width: 1024px) {
	.yoko-footer-4-col__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 549px) {
	.yoko-footer-4-col {
		padding-top: 28px;
	}

	.yoko-footer-4-col__grid {
		gap: 24px;
		grid-template-columns: 1fr;
	}

	.yoko-footer-brand {
		max-width: none;
	}

	.yoko-footer-4-col__column--align-right {
		text-align: left;
	}

	.yoko-footer-4-col__copyright {
		font-size: 11px;
		margin-top: 26px;
		padding: 14px 0 16px;
	}
}

.yoko-site-footer {
	--yoko-footer-bg: #233b5e;
	--yoko-footer-bottom: #1d314d;
	--yoko-footer-line: rgba(255, 255, 255, 0.28);
	--yoko-footer-muted: rgba(255, 255, 255, 0.78);
	--yoko-footer-soft: rgba(255, 255, 255, 0.12);
	background: var(--yoko-footer-bg);
	color: #ffffff;
	font-family: var(--yoko-font-family);
}

.yoko-site-footer *,
.yoko-site-footer *::before,
.yoko-site-footer *::after {
	box-sizing: border-box;
}

.yoko-site-footer a {
	color: inherit;
	text-decoration: none;
}

.yoko-site-footer__main {
	background: var(--yoko-footer-bg);
	padding: clamp(40px, 6vw, 70px) 0 clamp(28px, 4vw, 44px);
}

.yoko-site-footer__inner.container {
	position: relative;
}

.yoko-site-footer__top {
	align-items: start;
	display: grid;
	gap: clamp(28px, 3.4vw, 46px);
	grid-template-columns: minmax(210px, 0.8fr) minmax(360px, 1.4fr) minmax(190px, 0.72fr);
}

.yoko-site-footer__brand {
	min-width: 0;
}

.yoko-site-footer__logo {
	align-items: center;
	display: flex;
	margin: 0 0 16px;
	min-height: 58px;
}

.yoko-site-footer__logo img {
	display: block;
	height: auto;
	max-height: 74px;
	max-width: min(230px, 100%);
	object-fit: contain;
	width: auto;
}

.yoko-site-footer__logo-image--invert,
.yoko-site-footer__logo .yoko-site-footer__logo-image--invert {
	filter: brightness(0) invert(1);
}

.yoko-site-footer__logo span {
	color: #ffffff;
	font-size: 34px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
}

.yoko-site-footer__slogan {
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	margin: -4px 0 20px;
}

.yoko-site-footer__contact-list,
.yoko-site-footer__company-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.yoko-site-footer__contact-item {
	align-items: flex-start;
	color: var(--yoko-footer-muted);
	display: grid;
	font-size: 15px;
	gap: 10px;
	grid-template-columns: 22px minmax(0, 1fr);
	line-height: 1.45;
	margin: 0 0 11px;
}

.yoko-site-footer__contact-icon {
	align-items: center;
	background: var(--yoko-footer-soft);
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	height: 22px;
	justify-content: center;
	margin-top: 1px;
	width: 22px;
}

.yoko-site-footer__contact-icon svg {
	fill: currentColor;
	height: 12px;
	width: 12px;
}

.yoko-site-footer__contact-item strong {
	color: #ffffff;
	font-weight: 800;
	margin-right: 4px;
}

.yoko-site-footer__contact-item a:hover,
.yoko-site-footer-location__link:hover {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.yoko-site-footer__company h2 {
	color: #ffffff;
	font-family: var(--yoko-font-family);
	font-size: clamp(21px, 2vw, 28px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0 0 22px;
	text-transform: uppercase;
}

.yoko-site-footer__company-list {
	color: var(--yoko-footer-muted);
	font-size: 15px;
	line-height: 1.58;
}

.yoko-site-footer__company-list li {
	margin: 0 0 10px;
	padding-left: 15px;
	position: relative;
}

.yoko-site-footer__company-list li::before {
	color: #ffffff;
	content: "-";
	font-weight: 800;
	left: 0;
	position: absolute;
	top: 0;
}

.yoko-site-footer__company-list strong {
	color: #ffffff;
	font-weight: 800;
	margin-right: 5px;
}

.yoko-site-footer__actions {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 18px;
	justify-self: end;
	min-width: 0;
}

.yoko-site-footer__quick-hotline {
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 14px 28px rgba(8, 25, 47, 0.22);
	display: flex;
	gap: 11px;
	min-height: 54px;
	padding: 7px 18px 7px 8px;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.yoko-site-footer__quick-hotline:hover {
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 18px 34px rgba(8, 25, 47, 0.3);
	transform: translateY(-2px);
}

.yoko-site-footer__quick-hotline-icon {
	align-items: center;
	background: #ffffff;
	border-radius: 999px;
	color: #e83d33;
	display: inline-flex;
	flex: 0 0 40px;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.yoko-site-footer__quick-hotline-icon i {
	font-size: 17px;
	line-height: 1;
}

.yoko-site-footer__quick-hotline-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.yoko-site-footer__quick-hotline-label {
	color: var(--yoko-footer-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.yoko-site-footer__quick-hotline strong {
	color: #ffffff;
	font-size: clamp(20px, 1.8vw, 25px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
}

.yoko-site-footer__socials {
	display: flex;
	gap: 12px;
}

.yoko-site-footer__social {
	align-items: center;
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 10px 22px rgba(8, 25, 47, 0.24);
	color: #ffffff;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
	width: 42px;
}

.yoko-site-footer__social:hover {
	box-shadow: 0 14px 26px rgba(8, 25, 47, 0.32);
	filter: brightness(1.08);
	transform: translateY(-2px);
}

.yoko-site-footer__social i {
	font-size: 18px;
	line-height: 1;
}

.yoko-site-footer__social--mail,
.yoko-site-footer__social--youtube {
	background: #e83d33;
}

.yoko-site-footer__social--facebook {
	background: #1877f2;
}

.yoko-site-footer__cert {
	min-height: 52px;
}

.yoko-site-footer__cert img {
	display: block;
	height: auto;
	max-width: 190px;
	width: 100%;
}

.yoko-site-footer__cert-fallback {
	align-items: center;
	background: #ffffff;
	border-radius: 7px;
	color: #184b7a;
	display: inline-flex;
	gap: 8px;
	min-height: 50px;
	padding: 7px 10px;
}

.yoko-site-footer__cert-fallback > span {
	align-items: center;
	background: #e63b30;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	height: 24px;
	justify-content: center;
	width: 24px;
}

.yoko-site-footer__cert-fallback svg {
	fill: currentColor;
	height: 16px;
	width: 16px;
}

.yoko-site-footer__cert-fallback small {
	color: #184b7a;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.15;
	text-transform: uppercase;
	white-space: pre-line;
}

.yoko-site-footer__divider {
	background: var(--yoko-footer-line);
	height: 2px;
	margin: clamp(30px, 4vw, 46px) auto clamp(24px, 3vw, 34px);
	max-width: 1120px;
	width: 100%;
}

.yoko-site-footer__locations {
	display: grid;
	gap: clamp(22px, 3vw, 34px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-site-footer-location {
	align-items: flex-start;
	color: var(--yoko-footer-muted);
	display: grid;
	font-size: 15px;
	gap: 13px;
	grid-template-columns: 27px minmax(0, 1fr);
	line-height: 1.55;
	min-width: 0;
}

.yoko-site-footer-location__icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	height: 27px;
	justify-content: center;
	width: 27px;
}

.yoko-site-footer-location__icon svg {
	fill: currentColor;
	height: 15px;
	width: 15px;
}

.yoko-site-footer-location h3 {
	color: #ffffff;
	font-family: var(--yoko-font-family);
	font-size: 17px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 2px 0 8px;
}

.yoko-site-footer-location p {
	margin: 0 0 7px;
}

.yoko-site-footer-location__link {
	color: #77c9ff;
	display: inline-flex;
	font-size: 14px;
	font-style: italic;
	font-weight: 800;
	line-height: 1.35;
}

.yoko-site-footer__copyright {
	background: var(--yoko-footer-bottom);
	color: rgba(255, 255, 255, 0.84);
	font-size: 14px;
	line-height: 1.45;
	padding: 14px 0;
	text-align: center;
}

@media (max-width: 1024px) {
	.yoko-site-footer__top {
		grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
	}

	.yoko-site-footer__actions {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		grid-column: 1 / -1;
		justify-content: space-between;
		justify-self: stretch;
	}

	.yoko-site-footer__locations {
		gap: 22px;
	}
}

@media (max-width: 849px) {
	.yoko-site-footer__main {
		padding: 38px 0 30px;
	}

	.yoko-site-footer__top,
	.yoko-site-footer__locations {
		grid-template-columns: 1fr;
	}

	.yoko-site-footer__brand {
		text-align: center;
	}

	.yoko-site-footer__logo {
		justify-content: center;
	}

	.yoko-site-footer__slogan {
		margin-left: auto;
		margin-right: auto;
		max-width: 320px;
	}

	.yoko-site-footer__contact-list {
		margin-left: auto;
		margin-right: auto;
		max-width: 360px;
		text-align: left;
	}

	.yoko-site-footer__company h2,
	.yoko-site-footer__company-list {
		margin-left: auto;
		margin-right: auto;
		max-width: 620px;
	}

	.yoko-site-footer__actions {
		justify-content: center;
	}

	.yoko-site-footer__locations {
		margin-left: auto;
		margin-right: auto;
		max-width: 620px;
	}
}

@media (max-width: 549px) {
	.yoko-site-footer__main {
		padding: 34px 0 26px;
	}

	.yoko-site-footer__logo img {
		max-height: 62px;
		max-width: 190px;
	}

	.yoko-site-footer__company h2 {
		font-size: 20px;
	}

	.yoko-site-footer__contact-item,
	.yoko-site-footer__company-list,
	.yoko-site-footer-location {
		font-size: 14px;
	}

	.yoko-site-footer__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.yoko-site-footer__quick-hotline {
		justify-content: center;
		text-align: center;
	}

	.yoko-site-footer__socials,
	.yoko-site-footer__cert {
		justify-content: center;
		text-align: center;
	}

	.yoko-site-footer__cert-fallback {
		margin-left: auto;
		margin-right: auto;
	}

	.yoko-site-footer__cert img {
		margin-left: auto;
		margin-right: auto;
	}

	.yoko-site-footer__divider {
		margin: 28px auto 24px;
	}

	.yoko-site-footer__copyright {
		font-size: 12px;
		padding: 12px 0;
	}
}

@keyframes yoko-about-bg-drift {
	0% {
		transform: translate3d(0, 0, 0) rotate(0deg);
	}

	50% {
		transform: translate3d(18px, -14px, 0) rotate(4deg);
	}

	100% {
		transform: translate3d(0, 0, 0) rotate(0deg);
	}
}

.yoko-about-section {
	background: #ffffff;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-body);
	overflow: hidden;
	padding: var(--yoko-section-spacing) 0;
	position: relative;
}

.yoko-about-section *,
.yoko-about-section *::before,
.yoko-about-section *::after {
	box-sizing: border-box;
}

.yoko-about-section__inner {
	position: relative;
	z-index: 1;
}

.yoko-about-section__header {
	margin: 0 auto clamp(26px, 4vw, 44px);
	max-width: 880px;
	text-align: center;
}

.yoko-about-section__header--left {
	margin-left: 0;
	margin-right: 0;
	text-align: left;
}

.yoko-about-section__eyebrow {
	color: var(--yoko-color-accent);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.yoko-about-section__title {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-section-title);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0;
	text-transform: uppercase;
}

.yoko-about-section__intro {
	color: var(--yoko-color-muted);
	font-size: var(--yoko-font-size-section-intro);
	line-height: 1.65;
	margin: 14px auto 0;
	max-width: 760px;
}

.yoko-about-section__intro p,
.yoko-about-intro__body p,
.yoko-about-intro__closing p,
.yoko-about-values__card p,
.yoko-about-quality-commitment__copy p,
.yoko-about-quality-pillar p,
.yoko-about-testimonial__quote p {
	margin: 0;
}

.yoko-about-intro__layout {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.yoko-about-intro__media {
	position: relative;
}

.yoko-about-intro__media figure {
	margin: 0;
}

.yoko-about-intro__image {
	display: block;
	height: auto;
	width: 100%;
}

.yoko-about-intro__quote {
	background: var(--yoko-color-navy);
	border-radius: 10px;
	bottom: clamp(10px, 3vw, 28px);
	box-shadow: 0 16px 34px rgba(15, 63, 143, 0.18);
	color: #ffffff;
	font-size: clamp(15px, 1.4vw, 18px);
	font-weight: 900;
	left: 50%;
	line-height: 1.35;
	max-width: 420px;
	padding: 16px 20px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	transform: translateX(-50%);
	width: calc(100% - 42px);
}

.yoko-about-intro__body,
.yoko-about-intro__closing {
	color: var(--yoko-color-muted);
	font-size: 16px;
	line-height: 1.72;
}

.yoko-about-intro__closing {
	margin-top: 20px;
}

.yoko-about-intro__stats {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: clamp(22px, 3vw, 30px) 0;
}

.yoko-about-intro-stat {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(17, 91, 175, 0.08);
	min-height: 124px;
	padding: 18px 14px;
	text-align: center;
}

.yoko-about-intro-stat__number {
	color: var(--yoko-color-primary);
	font-size: 25px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 8px;
}

.yoko-about-intro-stat__number span {
	font-size: 38px;
}

.yoko-about-intro-stat p {
	color: var(--yoko-color-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.42;
	margin: 0;
}

.yoko-about-team {
	background: #17283c;
	color: #ffffff;
}

.yoko-about-history {
	background: linear-gradient(180deg, #ffffff 0%, var(--yoko-color-soft) 100%);
	color: var(--yoko-color-text);
	padding-bottom: clamp(54px, 6vw, 86px);
}

.yoko-about-team {
	background:
		radial-gradient(circle at 14% 22%, rgba(242, 101, 34, 0.2), transparent 28%),
		radial-gradient(circle at 82% 18%, rgba(125, 190, 225, 0.22), transparent 30%),
		linear-gradient(135deg, #102338 0%, #17283c 52%, #203b5a 100%);
	padding-bottom: clamp(54px, 6vw, 86px);
}

.yoko-about-history::before,
.yoko-about-history::after {
	content: none;
	display: none;
}

.yoko-about-team::before,
.yoko-about-team::after {
	border-radius: 999px;
	content: "";
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.yoko-about-team::before {
	background: rgba(125, 190, 225, 0.16);
	filter: blur(1px);
	height: 260px;
	left: -90px;
	top: 80px;
	width: 260px;
}

.yoko-about-team::after {
	background: rgba(242, 101, 34, 0.12);
	bottom: 34px;
	height: 220px;
	right: -70px;
	width: 220px;
}

@media (prefers-reduced-motion: no-preference) {
	.yoko-about-team::before,
	.yoko-about-team::after {
		animation: yoko-about-bg-drift 13s ease-in-out infinite;
	}

	.yoko-about-team::after {
		animation-delay: -5s;
	}
}

.yoko-about-team .yoko-about-section__title,
.yoko-about-team .yoko-about-section__intro {
	color: #ffffff;
}

.yoko-about-history .yoko-about-section__title {
	color: var(--yoko-color-heading);
}

.yoko-about-history .yoko-about-section__intro {
	color: var(--yoko-color-muted);
}

.yoko-about-history .yoko-about-section__header {
	margin-bottom: clamp(28px, 4vw, 48px);
}

.yoko-about-history__slider {
	--yoko-about-carousel-gap: 20px;
	--yoko-about-carousel-nav-gutter: 88px;
	--yoko-about-carousel-nav-size: 58px;
	--yoko-about-history-card-width: calc(25% - 15px);
}

.yoko-about-history .yoko-about-carousel__nav {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	box-shadow: var(--yoko-shadow-card);
	color: var(--yoko-color-primary);
}

.yoko-about-history .yoko-about-carousel__nav:hover,
.yoko-about-history .yoko-about-carousel__nav:focus-visible {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	color: #ffffff;
}

.yoko-about-history__timeline {
	align-items: stretch;
	gap: var(--yoko-about-carousel-gap);
	padding: 8px 0 24px;
}

.yoko-about-history-item {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	flex: 0 0 var(--yoko-about-history-card-width);
	min-width: 0;
	min-height: 386px;
	overflow: hidden;
	padding: 0;
	position: relative;
	scroll-snap-align: start;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.yoko-about-history-item::before {
	background: var(--yoko-color-primary);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.yoko-about-history-item:hover {
	border-color: rgba(236, 32, 40, 0.28);
	box-shadow: var(--yoko-shadow-card-hover);
	transform: translateY(-4px);
}

.yoko-about-history-item__media {
	background: #eef3f8;
	border-bottom: 1px solid var(--yoko-color-border);
	border-radius: 0;
	display: block;
	height: clamp(164px, 15vw, 196px);
	margin: 0;
	overflow: hidden;
}

.yoko-about-history-item__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-about-history-item__year {
	background: #fff4f4;
	border: 1px solid rgba(236, 32, 40, 0.22);
	border-radius: 999px;
	color: var(--yoko-color-primary);
	display: inline-flex;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	margin: 22px 22px 12px;
	padding: 8px 13px;
}

.yoko-about-history-item h3 {
	box-sizing: border-box;
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.34;
	margin: 0 22px 10px;
	max-width: calc(100% - 68px);
	overflow-wrap: break-word;
	text-wrap: balance;
	white-space: normal;
	width: max-content;
}

.yoko-about-history-item__body {
	color: var(--yoko-color-muted);
	font-size: 14px;
	line-height: 1.62;
	margin: 0 22px 24px;
}

.yoko-about-values {
	background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.yoko-about-values__split {
	display: grid;
	gap: clamp(16px, 2vw, 24px);
	grid-template-columns: 1fr;
}

.yoko-about-values__card {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 14px;
	box-shadow: 0 18px 42px rgba(17, 91, 175, 0.1);
	display: grid;
	gap: clamp(20px, 3vw, 40px);
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: clamp(240px, 23vw, 310px);
	overflow: hidden;
	padding: clamp(18px, 2.6vw, 30px);
	position: relative;
}

.yoko-about-values__card::before {
	background: linear-gradient(180deg, rgba(17, 91, 175, 0.08), rgba(242, 101, 34, 0.05));
	border-radius: 999px;
	content: "";
	height: 210px;
	pointer-events: none;
	position: absolute;
	right: -84px;
	top: -96px;
	width: 210px;
}

.yoko-about-values__card--mission {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.yoko-about-values__card--mission figure {
	order: 2;
}

.yoko-about-values__card--mission > div {
	order: 1;
}

.yoko-about-values__card figure {
	align-items: center;
	aspect-ratio: 16 / 9;
	background:
		radial-gradient(circle at 50% 50%, rgba(17, 91, 175, 0.08), transparent 58%),
		#f4f8fd;
	border-radius: 12px;
	display: flex;
	height: clamp(190px, 18vw, 240px);
	justify-content: center;
	margin: 0;
	min-height: 0;
	overflow: hidden;
	padding: clamp(14px, 1.8vw, 22px);
	position: relative;
	z-index: 1;
}

.yoko-about-values__image {
	display: block;
	height: 100%;
	max-height: 216px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.yoko-about-values__card--mission .yoko-about-values__image {
	height: 100%;
	max-height: none;
	object-fit: cover;
	width: 100%;
}

.yoko-about-values__card > div {
	padding: 0 clamp(6px, 1.4vw, 18px);
	position: relative;
	z-index: 1;
}

.yoko-about-values__card--vision > div {
	padding-left: clamp(10px, 2vw, 26px);
}

.yoko-about-values__card--mission > div {
	padding-right: clamp(10px, 2vw, 26px);
}

.yoko-about-values__card h3,
.yoko-about-values__core-heading,
.yoko-about-quality-commitment__copy h3,
.yoko-about-quality-pillar h3 {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family);
	font-size: clamp(19px, 1.7vw, 24px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.yoko-about-values__card p {
	color: var(--yoko-color-muted);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 0;
}

.yoko-about-values__core {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
	margin-top: clamp(28px, 5vw, 54px);
}

.yoko-about-values__core-content {
	min-width: 0;
}

.yoko-about-values__core-heading {
	text-wrap: balance;
}

.yoko-about-values__core-list {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-about-core-value {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 12px;
	box-shadow: 0 14px 30px rgba(17, 91, 175, 0.08);
	padding: 22px;
}

.yoko-about-core-value span {
	color: var(--yoko-color-accent);
	display: block;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 12px;
}

.yoko-about-core-value h3 {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: 18px;
	font-weight: 900;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.yoko-about-core-value p {
	color: var(--yoko-color-muted);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

.yoko-about-values__core-media {
	margin: 0;
}

.yoko-about-values__core-image {
	display: block;
	height: auto;
	width: 100%;
}

.yoko-about-team {
	background:
		radial-gradient(circle at 30% 28%, rgba(17, 91, 175, 0.22), transparent 28%),
		linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
}

.yoko-about-team__leaders {
	display: grid;
	gap: clamp(28px, 6vw, 82px);
	grid-template-columns: repeat(2, minmax(220px, 320px));
	justify-content: center;
	margin-bottom: clamp(30px, 5vw, 48px);
}

.yoko-about-team-leader {
	text-align: center;
}

.yoko-about-team-leader figure {
	align-items: end;
	background: radial-gradient(circle at 50% 72%, rgba(17, 91, 175, 0.6), transparent 48%);
	display: flex;
	height: 360px;
	justify-content: center;
	margin: 0 auto 16px;
	max-width: 300px;
}

.yoko-about-team-leader__image {
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: bottom center;
	width: auto;
}

.yoko-about-team-leader h3,
.yoko-about-team-member h3 {
	color: #ffffff;
	font-family: var(--yoko-font-family);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.3;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.yoko-about-team-leader p,
.yoko-about-team-member p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.yoko-about-team__members {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 860px;
}

.yoko-about-team-member {
	text-align: center;
}

.yoko-about-team-member figure {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin: 0 0 12px;
	overflow: hidden;
}

.yoko-about-team-member__image {
	aspect-ratio: 1 / 1.08;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.yoko-about-quality-commitment,
.yoko-about-teaching-consulting {
	background: #f6f9fd;
}

.yoko-about-quality-commitment::before,
.yoko-about-teaching-consulting::before {
	background: radial-gradient(circle, rgba(17, 91, 175, 0.09), transparent 62%);
	content: "";
	height: 420px;
	pointer-events: none;
	position: absolute;
	right: -150px;
	top: 60px;
	width: 420px;
}

@media (prefers-reduced-motion: no-preference) {
	.yoko-about-quality-commitment::before,
	.yoko-about-teaching-consulting::before {
		animation: yoko-about-bg-drift 12s ease-in-out infinite;
	}
}

.yoko-about-quality-commitment__layout {
	align-items: center;
	display: grid;
	gap: clamp(28px, 4vw, 48px);
	grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
}

.yoko-about-quality-commitment__copy {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 12px;
	box-shadow: 0 16px 34px rgba(17, 91, 175, 0.08);
	padding: clamp(24px, 4vw, 38px);
}

.yoko-about-quality-commitment__copy p {
	color: var(--yoko-color-muted);
	font-size: 15px;
	line-height: 1.7;
}

.yoko-about-quality-commitment__media {
	margin: 0;
}

.yoko-about-quality-commitment__image {
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.yoko-about-quality-commitment__slider {
	--yoko-about-carousel-gap: 0px;
	--yoko-about-carousel-nav-gutter: 52px;
	--yoko-about-carousel-nav-size: 42px;
	min-width: 0;
}

.yoko-about-quality-commitment__slider .yoko-about-carousel__track {
	padding: 0;
}

.yoko-about-quality-commitment__slide {
	aspect-ratio: 1 / 1;
	background: #edf3f9;
	border-radius: 12px;
	box-shadow: 0 18px 42px rgba(5, 54, 83, 0.12);
	flex: 0 0 100%;
	margin: 0;
	overflow: hidden;
	scroll-snap-align: center;
}

.yoko-about-quality-commitment__slide-image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-about-quality-commitment__cards {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 24px;
}

.yoko-about-quality-item {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 12px;
	box-shadow: 0 14px 30px rgba(17, 91, 175, 0.08);
	padding: 22px;
}

.yoko-about-quality-item > span {
	align-items: center;
	background: rgba(17, 91, 175, 0.1);
	border-radius: 999px;
	color: var(--yoko-color-primary);
	display: inline-flex;
	height: 44px;
	justify-content: center;
	margin-bottom: 14px;
	width: 44px;
}

.yoko-about-quality-item h3 {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.3;
	margin: 0 0 8px;
}

.yoko-about-quality-item p {
	color: var(--yoko-color-muted);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

.yoko-about-quality-commitment__wide {
	margin: 28px 0 0;
}

.yoko-about-quality-commitment__wide-image {
	aspect-ratio: 16 / 7;
	border-radius: 12px;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.yoko-about-teaching-consulting__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yoko-about-quality-pillar {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 14px;
	box-shadow: 0 18px 38px rgba(17, 91, 175, 0.1);
	overflow: hidden;
}

.yoko-about-quality-pillar figure {
	margin: 0;
}

.yoko-about-quality-pillar__image {
	aspect-ratio: 16 / 9;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.yoko-about-quality-pillar > div {
	padding: 24px;
}

.yoko-about-quality-pillar p {
	color: var(--yoko-color-muted);
	font-size: 15px;
	line-height: 1.65;
}

.yoko-about-quality-pillar ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.yoko-about-quality-pillar li {
	align-items: center;
	color: var(--yoko-color-navy);
	display: grid;
	font-size: 14px;
	font-weight: 800;
	gap: 9px;
	grid-template-columns: 18px minmax(0, 1fr);
	line-height: 1.35;
}

.yoko-about-quality-pillar li::before {
	background: var(--yoko-color-accent);
	border-radius: 999px;
	content: "";
	height: 8px;
	width: 8px;
}

.yoko-about-testimonials {
	background: #ffffff;
	color: var(--yoko-color-text);
	overflow: hidden;
	padding-bottom: clamp(64px, 8vw, 96px);
}

.yoko-about-testimonials .yoko-about-section__title,
.yoko-about-testimonials .yoko-about-section__intro {
	color: var(--yoko-color-heading);
}

.yoko-about-testimonials .yoko-about-section__intro {
	color: var(--yoko-color-muted);
}

.yoko-about-carousel {
	--yoko-about-carousel-gap: 18px;
	--yoko-about-carousel-nav-gutter: 76px;
	--yoko-about-carousel-nav-size: 56px;
	--yoko-about-carousel-nav-inset: calc((var(--yoko-about-carousel-nav-gutter) - var(--yoko-about-carousel-nav-size)) / 2);
	position: relative;
}

.yoko-about-carousel__viewport {
	margin-left: var(--yoko-about-carousel-nav-gutter);
	margin-right: var(--yoko-about-carousel-nav-gutter);
	overflow: hidden;
}

.yoko-about-carousel__track {
	display: flex;
	gap: var(--yoko-about-carousel-gap);
	overflow-x: auto;
	padding: 4px 0 18px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.yoko-about-carousel__track::-webkit-scrollbar {
	display: none;
}

.yoko-about-carousel__nav {
	align-items: center;
	background: #ffffff;
	border: 0;
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 12px 26px rgba(8, 25, 47, 0.2);
	color: var(--yoko-color-primary);
	cursor: pointer;
	display: inline-flex;
	font-size: 0;
	font-weight: 700;
	height: var(--yoko-about-carousel-nav-size);
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: var(--yoko-about-carousel-nav-size);
	z-index: 2;
}

.yoko-about-carousel__nav::before {
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	content: "";
	display: block;
	height: 12px;
	width: 12px;
}

.yoko-about-carousel__nav--prev {
	left: var(--yoko-about-carousel-nav-inset);
}

.yoko-about-carousel__nav--prev::before {
	margin-left: 4px;
	transform: rotate(-135deg);
}

.yoko-about-carousel__nav--next {
	right: var(--yoko-about-carousel-nav-inset);
}

.yoko-about-carousel__nav--next::before {
	margin-right: 4px;
	transform: rotate(45deg);
}

.yoko-about-carousel.is-static {
	--yoko-about-carousel-nav-gutter: 0px;
}

.yoko-about-carousel.is-static .yoko-about-carousel__nav {
	display: none;
}

.yoko-about-testimonial {
	background: #ffffff;
	border: 1px solid #edf2f8;
	border-radius: 12px;
	box-shadow: none;
	color: var(--yoko-color-text);
	display: flex;
	flex: 0 0 min(760px, calc(100% - 74px));
	flex-direction: column;
	gap: clamp(26px, 4vw, 46px);
	justify-content: center;
	min-height: 300px;
	padding: clamp(24px, 4vw, 38px);
	scroll-snap-align: center;
}

.yoko-about-testimonial__quote {
	border-left: 4px solid rgba(17, 91, 175, 0.18);
	color: #263f5f;
	font-size: clamp(18px, 1.55vw, 22px);
	font-weight: 700;
	line-height: 1.62;
	max-width: 94%;
	padding-left: clamp(18px, 2.4vw, 30px);
	position: relative;
}

.yoko-about-testimonial__quote::before {
	color: rgba(17, 91, 175, 0.1);
	content: "“";
	font-family: var(--yoko-font-family-quote, var(--yoko-font-family-heading));
	font-size: 78px;
	left: 10px;
	line-height: 1;
	position: absolute;
	top: -38px;
}

.yoko-about-testimonial__person {
	align-items: center;
	display: flex;
	gap: 16px;
	margin-top: 0;
}

.yoko-about-testimonial__person figure {
	border-radius: 999px;
	flex: 0 0 72px;
	height: 72px;
	margin: 0;
	overflow: hidden;
	width: 72px;
}

.yoko-about-testimonial__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-about-testimonial h3 {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: clamp(18px, 1.35vw, 20px);
	font-weight: 900;
	margin: 0 0 3px;
}

.yoko-about-testimonial__person p,
.yoko-about-testimonial strong {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 14px;
	line-height: 1.35;
	margin: 0;
}

.yoko-about-testimonial strong {
	color: var(--yoko-color-primary);
	font-weight: 900;
}

.yoko-about-partners {
	background: #ffffff;
}

.yoko-about-partners__slider {
	--yoko-about-carousel-gap: 16px;
}

.yoko-about-partner {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 10px;
	box-shadow: 0 12px 26px rgba(17, 91, 175, 0.08);
	color: var(--yoko-color-muted);
	display: flex;
	flex: 0 0 176px;
	flex-direction: column;
	justify-content: center;
	min-height: 126px;
	padding: 14px;
	scroll-snap-align: start;
	text-align: center;
}

.yoko-about-partner figure {
	align-items: center;
	display: flex;
	height: 70px;
	justify-content: center;
	margin: 0 0 8px;
	width: 100%;
}

.yoko-about-partner__image {
	display: block;
	height: auto;
	max-height: 66px;
	max-width: 138px;
	object-fit: contain;
	width: auto;
}

.yoko-about-partner span {
	font-size: 11px;
	font-weight: 800;
	line-height: 1.28;
}

@media (max-width: 1024px) {
	.yoko-about-history__slider {
		--yoko-about-carousel-nav-gutter: 82px;
		--yoko-about-carousel-nav-size: 54px;
		--yoko-about-history-card-width: calc(33.333333% - 13.333px);
	}

	.yoko-about-values__card {
		gap: clamp(18px, 3vw, 28px);
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		min-height: 0;
	}

	.yoko-about-values__card--mission {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.yoko-about-values__card figure {
		height: clamp(180px, 21vw, 220px);
		min-height: 0;
	}

	.yoko-about-quality-commitment__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-about-quality-commitment__layout {
		grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
	}
}

@media (max-width: 849px) {
	.yoko-about-intro__layout,
	.yoko-about-values__split,
	.yoko-about-values__core,
	.yoko-about-quality-commitment__layout,
	.yoko-about-teaching-consulting__grid {
		grid-template-columns: 1fr;
	}

	.yoko-about-section__header--left {
		text-align: center;
	}

	.yoko-about-intro__stats,
	.yoko-about-values__core-list,
	.yoko-about-team__members {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yoko-about-values__core-media {
		margin-left: auto;
		margin-right: auto;
		max-width: 360px;
	}

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

	.yoko-about-team-leader figure {
		height: 300px;
	}

	.yoko-about-values__card,
	.yoko-about-values__card--mission {
		grid-template-columns: 1fr;
	}

	.yoko-about-values__card {
		gap: 18px;
		padding: 22px;
	}

	.yoko-about-values__card--mission figure,
	.yoko-about-values__card--mission > div {
		order: initial;
	}

	.yoko-about-values__card figure {
		height: clamp(180px, 36vw, 220px);
		min-height: 0;
	}

	.yoko-about-values__card > div,
	.yoko-about-values__card--vision > div,
	.yoko-about-values__card--mission > div {
		padding-left: 0;
		padding-right: 0;
	}

	.yoko-about-quality-commitment__slider {
		--yoko-about-carousel-nav-gutter: 50px;
		--yoko-about-carousel-nav-size: 40px;
	}

	.yoko-about-quality-commitment__slide {
		aspect-ratio: 16 / 10;
	}

	.yoko-about-history__slider {
		--yoko-about-carousel-gap: 18px;
		--yoko-about-carousel-nav-gutter: 70px;
		--yoko-about-carousel-nav-size: 48px;
		--yoko-about-history-card-width: calc(50% - 9px);
	}
}

@media (max-width: 549px) {
	.yoko-about-section {
		padding: 38px 0;
	}

	.yoko-about-intro__quote {
		position: static;
		transform: none;
		width: 100%;
	}

	.yoko-about-intro__stats,
	.yoko-about-values__core-list,
	.yoko-about-quality-commitment__cards,
	.yoko-about-team__leaders,
	.yoko-about-team__members {
		grid-template-columns: 1fr;
	}

	.yoko-about-values__card {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px;
		text-align: center;
	}

	.yoko-about-values__card figure {
		height: 170px;
		min-height: 0;
		padding: 12px;
	}

	.yoko-about-values__core-heading {
		margin-bottom: 16px;
		text-align: center;
	}

	.yoko-about-history__timeline {
		display: flex;
		overflow-x: auto;
		padding: 6px 0 18px;
	}

	.yoko-about-history__slider {
		--yoko-about-carousel-gap: 16px;
		--yoko-about-carousel-nav-gutter: 46px;
		--yoko-about-carousel-nav-size: 38px;
		--yoko-about-history-card-width: 100%;
	}

	.yoko-about-history-item {
		display: block;
		flex-basis: var(--yoko-about-history-card-width);
		min-height: 370px;
	}

	.yoko-about-history-item__media {
		height: 168px;
		margin: 0;
	}

	.yoko-about-history-item__image {
		height: 100%;
		max-height: none;
		max-width: none;
		object-fit: cover;
		width: 100%;
	}

	.yoko-about-team-leader figure {
		height: 280px;
	}

	.yoko-about-quality-commitment__wide-image {
		aspect-ratio: 4 / 3;
	}

	.yoko-about-quality-commitment__copy {
		padding: 22px;
	}

	.yoko-about-quality-commitment__slider {
		--yoko-about-carousel-nav-gutter: 44px;
		--yoko-about-carousel-nav-size: 36px;
	}

	.yoko-about-quality-commitment__slide {
		aspect-ratio: 4 / 3;
	}

	.yoko-about-carousel:not(.yoko-about-history__slider) {
		--yoko-about-carousel-nav-gutter: 44px;
		--yoko-about-carousel-nav-size: 36px;
	}

	.yoko-about-testimonial {
		flex-basis: calc(100% - 48px);
		padding: 22px;
	}

	.yoko-about-partner {
		flex-basis: 148px;
	}
}

body.category-tin-tuc-su-kien-yoko #content.blog-wrapper.blog-archive.page-wrapper {
	background: #f5f7fb;
	padding: 0 0 clamp(44px, 6vw, 76px);
}

body.category-tin-tuc-su-kien-yoko .yoko-category-archive-hero {
	background: #ffffff;
	padding: clamp(18px, 2.5vw, 30px) 0 0;
}

body.category-tin-tuc-su-kien-yoko .yoko-category-archive-hero__inner {
	margin: 0 auto;
}

body.category-tin-tuc-su-kien-yoko .yoko-category-archive-hero__image {
	display: block;
	height: clamp(90px, 16.7vw, 220px);
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

body.category-tin-tuc-su-kien-yoko .archive-page-header {
	background: #ffffff;
	margin: 0 0 clamp(26px, 4vw, 42px);
	padding: clamp(26px, 4vw, 44px) 0 clamp(20px, 3vw, 32px);
}

body.category-tin-tuc-su-kien-yoko .archive-page-header .row {
	max-width: var(--yoko-content-width);
}

body.category-tin-tuc-su-kien-yoko .archive-page-header .page-title {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family);
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0;
	text-transform: none;
}

body.category-tin-tuc-su-kien-yoko .archive-page-header .page-title span {
	display: inline;
}

body.category-tin-tuc-su-kien-yoko .archive-page-header .taxonomy-description {
	color: var(--yoko-color-muted);
	font-size: 16px;
	line-height: 1.65;
	margin: 14px auto 0;
	max-width: 760px;
}

body.category-tin-tuc-su-kien-yoko #content.blog-archive > .row.row-large {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--yoko-content-width);
	padding-left: 15px;
	padding-right: 15px;
}

body.category-tin-tuc-su-kien-yoko #content.blog-archive > .row.row-divided > .col + .col:not(.large-12) {
	border-left: 0;
}

body.category-tin-tuc-su-kien-yoko #content.blog-archive > .row > .large-9.col {
	flex-basis: 100%;
	max-width: 100%;
	padding-bottom: 0;
}

body.category-tin-tuc-su-kien-yoko .post-sidebar {
	display: none;
}

body.category-tin-tuc-su-kien-yoko #post-list > .row {
	margin-left: -13px;
	margin-right: -13px;
}

body.category-tin-tuc-su-kien-yoko #post-list .post-item {
	padding: 0 13px 30px;
}

body.category-tin-tuc-su-kien-yoko #post-list .post-item > .col-inner,
body.category-tin-tuc-su-kien-yoko #post-list .box-blog-post {
	height: 100%;
}

body.category-tin-tuc-su-kien-yoko #post-list .box-blog-post {
	background: #ffffff;
	border: 1px solid rgba(17, 91, 175, 0.12);
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(15, 63, 143, 0.08);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.category-tin-tuc-su-kien-yoko #post-list .box-blog-post:hover,
body.category-tin-tuc-su-kien-yoko #post-list .box-blog-post:focus-within {
	border-color: rgba(17, 91, 175, 0.22);
	box-shadow: 0 18px 38px rgba(15, 63, 143, 0.14);
	transform: translateY(-3px);
}

body.category-tin-tuc-su-kien-yoko #post-list .box-image {
	margin: 0;
}

body.category-tin-tuc-su-kien-yoko #post-list .image-cover {
	background: #dfe8f4;
	padding-top: 70.333% !important;
}

body.category-tin-tuc-su-kien-yoko #post-list .image-cover img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

body.category-tin-tuc-su-kien-yoko #post-list .box-text {
	flex: 1 1 auto;
	padding: 18px 18px 20px;
	text-align: left !important;
}

body.category-tin-tuc-su-kien-yoko #post-list .post-title {
	font-family: var(--yoko-font-family);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.38;
	margin: 0;
	text-transform: none;
}

body.category-tin-tuc-su-kien-yoko #post-list .post-title a {
	color: var(--yoko-color-navy);
}

body.category-tin-tuc-su-kien-yoko #post-list .post-title a:hover,
body.category-tin-tuc-su-kien-yoko #post-list .post-title a:focus {
	color: var(--yoko-color-primary);
}

body.category-tin-tuc-su-kien-yoko #post-list .is-divider {
	background-color: var(--yoko-color-accent);
	height: 2px;
	margin: 12px 0 12px;
	max-width: 42px;
}

body.category-tin-tuc-su-kien-yoko #post-list .from_the_blog_excerpt {
	color: var(--yoko-color-muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

body.category-tin-tuc-su-kien-yoko #post-list .badge.absolute.top {
	left: 12px;
	right: auto;
	top: 12px;
}

body.category-tin-tuc-su-kien-yoko #post-list .badge-inner {
	background: linear-gradient(135deg, #f26522 0%, #ec2128 100%);
	border: 2px solid #ffffff;
	border-radius: 999px;
	box-shadow: 0 10px 20px rgba(236, 33, 40, 0.22);
	color: #ffffff;
}

body.category-tin-tuc-su-kien-yoko .nav-pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin: 12px 0 0;
}

body.category-tin-tuc-su-kien-yoko .nav-pagination > li {
	margin: 0;
}

body.category-tin-tuc-su-kien-yoko .nav-pagination .page-number {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(17, 91, 175, 0.18);
	border-radius: var(--yoko-radius-button);
	color: var(--yoko-color-navy);
	display: inline-flex;
	font-weight: 800;
	height: 38px;
	justify-content: center;
	min-width: 38px;
	padding: 0 12px;
}

body.category-tin-tuc-su-kien-yoko .nav-pagination .page-number.current,
body.category-tin-tuc-su-kien-yoko .nav-pagination .page-number:hover,
body.category-tin-tuc-su-kien-yoko .nav-pagination .page-number:focus {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	color: #ffffff;
}

@media (max-width: 849px) {
	body.category-tin-tuc-su-kien-yoko #content.blog-archive > .row.row-large {
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media (max-width: 549px) {
	body.category-tin-tuc-su-kien-yoko .yoko-category-archive-hero {
		padding-top: 12px;
	}

	body.category-tin-tuc-su-kien-yoko .yoko-category-archive-hero__inner {
		padding-left: 0;
		padding-right: 0;
	}

	body.category-tin-tuc-su-kien-yoko .yoko-category-archive-hero__image {
		height: 96px;
	}

	body.category-tin-tuc-su-kien-yoko .archive-page-header {
		margin-bottom: 24px;
		padding: 24px 0 18px;
	}

	body.category-tin-tuc-su-kien-yoko #post-list .post-item {
		padding-bottom: 20px;
	}

	body.category-tin-tuc-su-kien-yoko #post-list .box-text {
		padding: 16px 16px 18px;
	}
}

body.single-post #content.blog-single.page-wrapper {
	--yoko-single-post-top-spacing: clamp(28px, 4vw, 52px);
	background:
		linear-gradient(180deg, #ffffff 0, #ffffff 190px, var(--yoko-color-soft) 190px, var(--yoko-color-soft) 100%);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	padding: var(--yoko-single-post-top-spacing) 0 clamp(48px, 6vw, 82px);
}

body.single-post #content.blog-single .yoko-single-post-top-banner {
	display: flow-root;
	margin: calc(0px - var(--yoko-single-post-top-spacing)) 0 30px;
}

body.single-post #content.blog-single .yoko-single-post-top-banner > :first-child {
	margin-top: 0;
}

body.single-post #content.blog-single .yoko-single-post-top-banner > :last-child {
	margin-bottom: 0;
}

body.single-post #content.blog-single > .row.row-large {
	align-items: flex-start;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

body.single-post #content.blog-single > .row.row-divided > .col + .col:not(.large-12) {
	border-left: 0;
}

body.single-post #content.blog-single > .row > .large-9.col {
	padding-bottom: 0;
	padding-left: 15px;
	padding-right: 15px;
}

body.single-post #content.blog-single .post-sidebar {
	padding-left: 18px;
	padding-right: 15px;
}

body.single-post #content.blog-single .article-inner,
body.single-post #comments.comments-area,
body.single-post #content.blog-single .post-sidebar .widget {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
}

body.single-post #content.blog-single .article-inner {
	overflow: hidden;
}

body.single-post #content.blog-single .entry-header-text {
	padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 52px) clamp(20px, 3vw, 32px);
	text-align: left;
}

body.single-post #content.blog-single .entry-category {
	line-height: 1;
	margin: 0 0 14px;
}

body.single-post #content.blog-single .entry-category a {
	align-items: center;
	background: #fff0f1;
	border: 1px solid rgba(236, 32, 40, 0.18);
	border-radius: 999px;
	color: var(--yoko-color-primary);
	display: inline-flex;
	font-family: var(--yoko-font-family);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	padding: 8px 12px;
	text-transform: uppercase;
}

body.single-post #content.blog-single .entry-title {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(24px, 2.55vw, 34px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0;
	text-transform: none;
}

body.single-post #content.blog-single .entry-divider {
	background: var(--yoko-color-primary);
	height: 3px;
	margin: clamp(18px, 2.5vw, 24px) 0 14px;
	max-width: 72px;
}

body.single-post #content.blog-single .entry-meta {
	align-items: center;
	color: var(--yoko-color-muted);
	display: flex;
	flex-wrap: wrap;
	font-family: var(--yoko-font-family);
	font-size: 13px;
	font-weight: 700;
	gap: 8px 14px;
	letter-spacing: 0;
	line-height: 1.4;
	text-transform: none;
}

body.single-post #content.blog-single .entry-meta a {
	color: var(--yoko-color-heading);
}

body.single-post #content.blog-single .entry-meta a:hover,
body.single-post #content.blog-single .entry-meta a:focus {
	color: var(--yoko-color-primary);
}

body.single-post #content.blog-single .entry-image {
	background: var(--yoko-color-navy);
	margin: 0;
	overflow: hidden;
}

body.single-post #content.blog-single .entry-image a,
body.single-post #content.blog-single .entry-image img {
	display: block;
	width: 100%;
}

body.single-post #content.blog-single .entry-image img {
	height: auto;
	object-fit: cover;
}

body.single-post #content.blog-single .entry-image .badge.absolute.top {
	left: clamp(18px, 2.8vw, 28px);
	right: auto;
	top: clamp(18px, 2.8vw, 28px);
}

body.single-post #content.blog-single .entry-image .badge-inner {
	background: var(--yoko-color-primary);
	border: 2px solid #ffffff;
	border-radius: 8px;
	box-shadow: 0 12px 24px rgba(236, 32, 40, 0.22);
	color: #ffffff;
	min-height: 58px;
	min-width: 58px;
}

body.single-post #content.blog-single .entry-image .post-date-day {
	font-family: var(--yoko-font-family-heading);
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
}

body.single-post #content.blog-single .entry-image .post-date-month {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

body.single-post #content.blog-single .entry-content.single-page {
	margin-left: auto;
	margin-right: auto;
	max-width: 850px;
	padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 52px);
}

body.single-post #content.blog-single .entry-content.single-page > p:first-of-type {
	border-left: 4px solid var(--yoko-color-primary);
	color: var(--yoko-color-heading);
	font-size: clamp(17px, 1.55vw, 20px);
	font-weight: 700;
	line-height: 1.75;
	margin-top: 0;
	padding-left: 16px;
}

body.single-post #content.blog-single .entry-content.single-page p,
body.single-post #content.blog-single .entry-content.single-page li {
	color: var(--yoko-color-text);
	font-size: 16px;
	line-height: 1.78;
}

body.single-post #content.blog-single .entry-content.single-page p {
	margin-bottom: 18px;
}

body.single-post #content.blog-single .entry-content.single-page a {
	color: var(--yoko-color-primary);
	font-weight: 700;
	text-decoration: none;
	text-underline-offset: 3px;
}

body.single-post #content.blog-single .entry-content.single-page a:hover,
body.single-post #content.blog-single .entry-content.single-page a:focus {
	color: var(--yoko-color-primary-dark);
	text-decoration: underline;
}

body.single-post #content.blog-single .entry-content.single-page h1,
body.single-post #content.blog-single .entry-content.single-page h2,
body.single-post #content.blog-single .entry-content.single-page h3,
body.single-post #content.blog-single .entry-content.single-page h4,
body.single-post #content.blog-single .entry-content.single-page h5,
body.single-post #content.blog-single .entry-content.single-page h6 {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
	text-transform: none;
}

body.single-post #content.blog-single .entry-content.single-page h1,
body.single-post #content.blog-single .entry-content.single-page h2 {
	border-left: 3px solid var(--yoko-color-primary);
	font-size: clamp(21px, 1.8vw, 26px);
	margin: clamp(30px, 4vw, 42px) 0 14px;
	padding-left: 12px;
}

body.single-post #content.blog-single .entry-content.single-page h3 {
	font-size: clamp(19px, 1.45vw, 22px);
	margin: 26px 0 12px;
}

body.single-post #content.blog-single .entry-content.single-page h4 {
	font-size: clamp(17px, 1.25vw, 19px);
	margin: 22px 0 10px;
}

body.single-post #content.blog-single .entry-content.single-page h5,
body.single-post #content.blog-single .entry-content.single-page h6 {
	color: #344357;
	font-family: var(--yoko-font-family);
	font-size: 16px;
	font-weight: 800;
	margin: 18px 0 8px;
}

body.single-post #content.blog-single .entry-content.single-page ul,
body.single-post #content.blog-single .entry-content.single-page ol {
	margin: 0 0 22px;
	padding-left: 0;
}

body.single-post #content.blog-single .entry-content.single-page li {
	border-radius: var(--yoko-radius-card);
	list-style: none;
	margin-bottom: 8px;
	padding: 5px 12px 5px 32px;
	position: relative;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

body.single-post #content.blog-single .entry-content.single-page li::marker {
	color: var(--yoko-color-primary);
	font-weight: 800;
}

body.single-post #content.blog-single .entry-content.single-page ol {
	counter-reset: yoko-single-list-item;
}

body.single-post #content.blog-single .entry-content.single-page ol > li {
	counter-increment: yoko-single-list-item;
	padding-left: 40px;
}

body.single-post #content.blog-single .entry-content.single-page ul > li::before,
body.single-post #content.blog-single .entry-content.single-page ol > li::before {
	color: var(--yoko-color-primary);
	left: 12px;
	position: absolute;
	transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

body.single-post #content.blog-single .entry-content.single-page ul > li::before {
	background: var(--yoko-color-primary);
	border-radius: 999px;
	box-shadow: 0 0 0 0 rgba(236, 32, 40, 0);
	content: "";
	height: 5px;
	top: 17px;
	width: 5px;
}

body.single-post #content.blog-single .entry-content.single-page ol > li::before {
	content: counter(yoko-single-list-item) ".";
	font-weight: 800;
	left: 8px;
	line-height: 1.78;
	min-width: 22px;
	text-align: right;
	top: 5px;
}

body.single-post #content.blog-single .entry-content.single-page li:hover,
body.single-post #content.blog-single .entry-content.single-page li:focus-within {
	background: rgba(236, 32, 40, 0.06);
	color: var(--yoko-color-heading);
	transform: translateX(4px);
}

body.single-post #content.blog-single .entry-content.single-page ul > li:hover::before,
body.single-post #content.blog-single .entry-content.single-page ul > li:focus-within::before {
	background: var(--yoko-color-primary-dark);
	box-shadow: 0 0 0 4px rgba(236, 32, 40, 0.12);
	transform: scale(1.2);
}

body.single-post #content.blog-single .entry-content.single-page ol > li:hover::before,
body.single-post #content.blog-single .entry-content.single-page ol > li:focus-within::before {
	color: var(--yoko-color-primary-dark);
	transform: translateX(-2px);
}

body.single-post #content.blog-single .entry-content.single-page li > ul,
body.single-post #content.blog-single .entry-content.single-page li > ol {
	margin: 8px 0 0;
}

body.single-post #content.blog-single .entry-content.single-page img {
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 16px 32px rgba(5, 54, 83, 0.12);
	height: auto;
	margin: 8px auto 24px;
	max-width: 100%;
}

body.single-post #content.blog-single .entry-content.single-page table {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border) !important;
	border-collapse: separate !important;
	border-radius: var(--yoko-radius-card);
	border-spacing: 0;
	box-shadow: 0 12px 28px rgba(5, 54, 83, 0.06);
	display: block;
	margin: 24px 0 30px;
	overflow-x: auto;
	width: 100% !important;
}

body.single-post #content.blog-single .entry-content.single-page tbody {
	display: table;
	min-width: 620px;
	width: 100%;
}

body.single-post #content.blog-single .entry-content.single-page td,
body.single-post #content.blog-single .entry-content.single-page th {
	border: 0 !important;
	border-bottom: 1px solid var(--yoko-color-border) !important;
	color: var(--yoko-color-text);
	font-size: 15px;
	line-height: 1.55;
	padding: 13px 15px;
	vertical-align: top;
}

body.single-post #content.blog-single .entry-content.single-page tr:first-child td,
body.single-post #content.blog-single .entry-content.single-page th {
	background: var(--yoko-color-navy);
	color: #ffffff;
	font-weight: 800;
}

body.single-post #content.blog-single .entry-content.single-page tr:last-child td {
	border-bottom: 0 !important;
}

body.single-post #content.blog-single .blog-share {
	margin: 0 auto;
	max-width: 850px;
	padding: 0 clamp(22px, 4vw, 52px) 20px;
}

body.single-post #content.blog-single .blog-share .is-divider {
	background: var(--yoko-color-border);
	max-width: none;
}

body.single-post #content.blog-single .blog-share .button.icon {
	border-color: rgba(5, 54, 83, 0.16);
	color: var(--yoko-color-navy);
}

body.single-post #content.blog-single .blog-share .button.icon:hover,
body.single-post #content.blog-single .blog-share .button.icon:focus {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	color: #ffffff;
}

body.single-post #content.blog-single footer.entry-meta,
body.single-post #content.blog-single .entry-author,
body.single-post #content.blog-single .navigation-post {
	margin-left: auto;
	margin-right: auto;
	max-width: 850px;
	padding-left: clamp(22px, 4vw, 52px);
	padding-right: clamp(22px, 4vw, 52px);
}

body.single-post #content.blog-single footer.entry-meta {
	border-top: 1px solid var(--yoko-color-border);
	color: var(--yoko-color-muted);
	font-size: 13px;
	line-height: 1.6;
	padding-bottom: 18px;
	padding-top: 18px;
	text-align: left;
}

body.single-post #content.blog-single footer.entry-meta a {
	color: var(--yoko-color-primary);
	font-weight: 700;
}

body.single-post #content.blog-single .entry-author {
	border-top: 1px solid var(--yoko-color-border);
	padding-bottom: 22px;
	padding-top: 22px;
}

body.single-post #content.blog-single .blog-author-image img {
	border: 3px solid #ffffff;
	box-shadow: 0 10px 22px rgba(5, 54, 83, 0.14);
}

body.single-post #content.blog-single .author-name {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
}

body.single-post #content.blog-single .navigation-post {
	padding-bottom: clamp(22px, 3vw, 34px);
}

body.single-post #content.blog-single .next-prev-nav {
	border-color: var(--yoko-color-border);
	gap: 16px;
	padding: 16px 0;
}

body.single-post #content.blog-single .next-prev-nav a {
	color: var(--yoko-color-heading);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
}

body.single-post #content.blog-single .next-prev-nav a:hover,
body.single-post #content.blog-single .next-prev-nav a:focus {
	color: var(--yoko-color-primary);
}

body.single-post #comments.comments-area {
	margin-top: 26px;
	padding: clamp(22px, 3.4vw, 34px);
}

body.single-post #comments .comment-reply-title {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 10px;
	text-transform: none;
}

body.single-post #comments .comment-notes {
	color: var(--yoko-color-muted);
	font-size: 14px;
	line-height: 1.55;
	margin-bottom: 18px;
}

body.single-post #comments .comment-form {
	display: grid;
	gap: 16px;
}

body.single-post #comments .comment-form p {
	margin: 0;
}

body.single-post #comments .comment-form-author,
body.single-post #comments .comment-form-email,
body.single-post #comments .comment-form-url {
	min-width: 0;
}

body.single-post #comments .comment-form label {
	color: var(--yoko-color-heading);
	display: block;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	margin: 0 0 7px;
}

body.single-post #comments :where(input:not([type="submit"]):not([type="checkbox"]), textarea) {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: none;
	color: var(--yoko-color-text);
	font-size: 15px;
	min-height: 46px;
	padding: 11px 13px;
	width: 100%;
}

body.single-post #comments textarea {
	min-height: 140px;
	resize: vertical;
}

body.single-post #comments :where(input:not([type="submit"]):not([type="checkbox"]), textarea):focus {
	border-color: rgba(236, 32, 40, 0.42);
	box-shadow: 0 0 0 3px rgba(236, 32, 40, 0.1);
	outline: 0;
}

body.single-post #comments .comment-form-cookies-consent {
	align-items: flex-start;
	display: flex;
	gap: 9px;
}

body.single-post #comments .comment-form-cookies-consent input {
	margin-top: 4px;
}

body.single-post #comments .comment-form-cookies-consent label {
	color: var(--yoko-color-muted);
	font-weight: 600;
	margin: 0;
}

body.single-post #comments #submit {
	background: var(--yoko-color-primary) !important;
	border: 1px solid var(--yoko-color-primary) !important;
	border-radius: var(--yoko-radius-button) !important;
	box-shadow: 0 12px 24px rgba(236, 32, 40, 0.2);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	min-height: 46px;
	padding: 12px 24px;
	text-transform: none;
}

body.single-post #comments #submit:hover,
body.single-post #comments #submit:focus {
	background: var(--yoko-color-primary-dark) !important;
	border-color: var(--yoko-color-primary-dark) !important;
	color: #ffffff !important;
}

body.single-post #content.blog-single .post-sidebar .widget {
	margin-bottom: 18px;
	padding: 18px;
}

body.single-post #content.blog-single .post-sidebar .widget-title {
	border-bottom: 1px solid var(--yoko-color-border);
	color: var(--yoko-color-heading);
	display: block;
	font-family: var(--yoko-font-family-heading);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin-bottom: 14px;
	padding-bottom: 12px;
	text-transform: uppercase;
}

body.single-post #content.blog-single .post-sidebar .widget > .is-divider {
	display: none;
}

body.single-post #content.blog-single .post-sidebar .searchform input[type="search"] {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-button) 0 0 var(--yoko-radius-button);
	box-shadow: none;
	color: var(--yoko-color-text);
	font-size: 14px;
	height: 44px;
	padding: 0 14px;
}

body.single-post #content.blog-single .post-sidebar .searchform input[type="search"]:focus {
	border-color: rgba(236, 32, 40, 0.42);
	box-shadow: 0 0 0 3px rgba(236, 32, 40, 0.1);
	outline: 0;
}

body.single-post #content.blog-single .post-sidebar .ux-search-submit {
	background: var(--yoko-color-primary) !important;
	border: 1px solid var(--yoko-color-primary) !important;
	border-radius: 0 var(--yoko-radius-button) var(--yoko-radius-button) 0 !important;
	color: #ffffff !important;
	height: 44px;
	min-height: 44px;
	width: 48px;
}

body.single-post #content.blog-single .post-sidebar .ux-search-submit:hover,
body.single-post #content.blog-single .post-sidebar .ux-search-submit:focus {
	background: var(--yoko-color-primary-dark) !important;
	border-color: var(--yoko-color-primary-dark) !important;
}

body.single-post #content.blog-single .post-sidebar .widget_categories ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
}

body.single-post #content.blog-single .post-sidebar .widget_categories li {
	list-style: none;
	margin: 0;
}

body.single-post #content.blog-single .post-sidebar .widget_categories a {
	align-items: center;
	background: #f7f9fc;
	border: 1px solid transparent;
	border-radius: var(--yoko-radius-card);
	color: var(--yoko-color-heading);
	display: flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: space-between;
	line-height: 1.35;
	padding: 11px 12px;
}

body.single-post #content.blog-single .post-sidebar .widget_categories a::after {
	color: var(--yoko-color-primary);
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-size: 11px;
	font-weight: 900;
}

body.single-post #content.blog-single .post-sidebar .widget_categories a:hover,
body.single-post #content.blog-single .post-sidebar .widget_categories a:focus {
	background: #fff0f1;
	border-color: rgba(236, 32, 40, 0.22);
	color: var(--yoko-color-primary);
}

body.single-post #content.blog-single .post-sidebar .flatsome_recent_posts ul {
	margin: 0;
	padding: 0;
}

body.single-post #content.blog-single .post-sidebar .recent-blog-posts-li {
	border-bottom: 1px solid var(--yoko-color-border);
	list-style: none;
	margin: 0;
	padding: 0;
}

body.single-post #content.blog-single .post-sidebar .recent-blog-posts-li:last-child {
	border-bottom: 0;
}

body.single-post #content.blog-single .post-sidebar .recent-blog-posts {
	gap: 10px;
	padding: 12px 0;
}

body.single-post #content.blog-single .post-sidebar .recent-blog-posts .badge {
	height: 58px;
	width: 58px;
}

body.single-post #content.blog-single .post-sidebar .recent-blog-posts .badge-inner {
	border-radius: var(--yoko-radius-card);
	box-shadow: none;
	height: 58px;
	width: 58px;
}

body.single-post #content.blog-single .post-sidebar .recent-blog-posts a {
	color: var(--yoko-color-heading);
	display: block;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.42;
}

body.single-post #content.blog-single .post-sidebar .recent-blog-posts a:hover,
body.single-post #content.blog-single .post-sidebar .recent-blog-posts a:focus {
	color: var(--yoko-color-primary);
}

body.single-post #content.blog-single .post-sidebar .post_comments {
	display: none;
}

@media (min-width: 850px) {
	body.single-post #content.blog-single .post-sidebar .widget-area {
		position: sticky;
		top: 96px;
	}
}

@media (max-width: 849px) {
	body.single-post #content.blog-single > .row.row-large {
		padding-left: 12px;
		padding-right: 12px;
	}

	body.single-post #content.blog-single > .row > .large-9.col,
	body.single-post #content.blog-single .post-sidebar {
		flex-basis: 100%;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	body.single-post #content.blog-single .post-sidebar {
		margin-top: 24px;
	}

	body.single-post #comments.comments-area {
		margin-bottom: 24px;
	}
}

@media (max-width: 549px) {
	body.single-post #content.blog-single.page-wrapper {
		--yoko-single-post-top-spacing: 18px;
	}

	body.single-post #content.blog-single .article-inner,
	body.single-post #comments.comments-area,
	body.single-post #content.blog-single .post-sidebar .widget {
		border-radius: 8px;
	}

	body.single-post #content.blog-single .entry-header-text {
		padding: 24px 18px 20px;
	}

	body.single-post #content.blog-single .entry-title {
		font-size: 24px;
	}

	body.single-post #content.blog-single .entry-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	body.single-post #content.blog-single .entry-content.single-page {
		padding: 26px 18px;
	}

	body.single-post #content.blog-single .entry-content.single-page p,
	body.single-post #content.blog-single .entry-content.single-page li {
		font-size: 15px;
	}

	body.single-post #content.blog-single .entry-content.single-page li {
		padding: 4px 8px 4px 28px;
	}

	body.single-post #content.blog-single .entry-content.single-page ol > li {
		padding-left: 36px;
	}

	body.single-post #content.blog-single .entry-content.single-page ul > li::before {
		left: 10px;
		top: 16px;
	}

	body.single-post #content.blog-single .entry-content.single-page ol > li::before {
		left: 6px;
		min-width: 22px;
		top: 4px;
	}

	body.single-post #content.blog-single .entry-content.single-page li:hover,
	body.single-post #content.blog-single .entry-content.single-page li:focus-within {
		transform: translateX(2px);
	}

	body.single-post #content.blog-single .entry-content.single-page h1,
	body.single-post #content.blog-single .entry-content.single-page h2 {
		font-size: 21px;
		margin-top: 30px;
	}

	body.single-post #content.blog-single .entry-content.single-page h3 {
		font-size: 18px;
	}

	body.single-post #content.blog-single .entry-content.single-page h4 {
		font-size: 17px;
	}

	body.single-post #content.blog-single footer.entry-meta,
	body.single-post #content.blog-single .entry-author,
	body.single-post #content.blog-single .navigation-post {
		padding-left: 18px;
		padding-right: 18px;
	}

	body.single-post #content.blog-single .next-prev-nav {
		display: grid;
	}

	body.single-post #comments.comments-area {
		padding: 22px 18px;
	}
}

.yoko-contact-section,
.yoko-contact-section *,
.yoko-contact-section *::before,
.yoko-contact-section *::after {
	box-sizing: border-box;
}

.yoko-contact-section {
	background: #ffffff;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
}

.yoko-contact-panel {
	padding: clamp(34px, 5vw, 66px) 0 clamp(28px, 4vw, 48px);
}

.yoko-contact-panel__grid {
	align-items: start;
	display: grid;
	gap: clamp(28px, 5vw, 58px);
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
}

.yoko-contact-panel__header {
	margin: 0 0 22px;
}

.yoko-contact-panel__header h1,
.yoko-contact-panel__header h2,
.yoko-contact-locations__header h2 {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	letter-spacing: 0;
	margin: 0;
	text-transform: none;
}

.yoko-contact-panel__header h1 {
	font-size: clamp(30px, 3.4vw, 42px);
	font-weight: 800;
	line-height: 1.12;
}

.yoko-contact-panel__header h2 {
	font-size: clamp(17px, 1.5vw, 22px);
	font-weight: 800;
	line-height: 1.28;
	margin-top: 10px;
}

.yoko-contact-panel__intro {
	color: var(--yoko-color-muted);
	font-size: 15px;
	line-height: 1.65;
	margin-top: 8px;
	max-width: 560px;
}

.yoko-contact-panel__intro p,
.yoko-contact-locations__header p,
.yoko-contact-location__address p {
	margin: 0;
}

.yoko-contact-panel__form :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], input[type="search"], input[type="date"], textarea, select),
.yoko-contact-form-preview__field,
.yoko-contact-form-preview__captcha {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 8px;
	color: var(--yoko-color-text);
	display: block;
	min-height: 50px;
	width: 100%;
}

.yoko-contact-panel__form .wpcf7-form {
	display: grid;
	gap: 14px;
}

.yoko-contact-panel__form .wpcf7-form p,
.yoko-contact-panel__form .wpcf7-form-control-wrap,
.yoko-contact-panel__form .yoko-cf7-field {
	display: block;
	margin: 0;
	width: 100%;
}

.yoko-contact-panel__form .yoko-cf7-row,
.yoko-contact-panel__form .yoko-contact-cf7-row {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yoko-contact-panel__form :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], input[type="search"], input[type="date"], textarea, select) {
	box-shadow: none;
	font-size: 15px;
	padding: 12px 14px;
}

.yoko-contact-panel__form textarea {
	min-height: 96px;
	resize: vertical;
}

.yoko-contact-panel__form :where(label),
.yoko-contact-form-preview label > span:first-child {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 8px;
}

.yoko-contact-panel__form :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], input[type="search"], input[type="date"], textarea, select):focus {
	border-color: rgba(236, 32, 40, 0.45);
	box-shadow: 0 0 0 3px rgba(236, 32, 40, 0.1);
	outline: 0;
}

.yoko-contact-panel__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit),
.yoko-contact-form-preview__submit {
	background: var(--yoko-color-primary) !important;
	border: 0 !important;
	border-radius: 8px !important;
	box-shadow: 0 12px 24px rgba(236, 32, 40, 0.18);
	color: #ffffff !important;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	justify-content: center;
	min-height: 50px;
	padding: 13px 22px;
	text-transform: none;
	width: 100%;
}

.yoko-contact-panel__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit):hover,
.yoko-contact-panel__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit):focus,
.yoko-contact-form-preview__submit:hover,
.yoko-contact-form-preview__submit:focus {
	background: var(--yoko-color-primary-dark) !important;
	color: #ffffff !important;
}

.yoko-contact-form-preview {
	display: grid;
	gap: 16px;
}

.yoko-contact-form-preview__row {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yoko-contact-form-preview__field {
	align-items: center;
	color: #8b95a3;
	display: flex;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 14px;
}

.yoko-contact-form-preview__field--textarea {
	align-items: flex-start;
	line-height: 1.45;
	min-height: 88px;
}

.yoko-contact-form-preview__captcha {
	align-items: center;
	color: var(--yoko-color-muted);
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 10px;
	justify-content: flex-start;
	padding: 13px 14px;
}

.yoko-contact-form-preview__captcha span {
	border: 1px solid #dbe1ea;
	border-radius: 4px;
	height: 22px;
	width: 22px;
}

.yoko-contact-panel__methods {
	display: grid;
	gap: 14px;
}

.yoko-contact-method {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(5, 54, 83, 0.05);
	color: var(--yoko-color-text);
	display: flex;
	gap: 16px;
	min-height: 84px;
	padding: 16px 18px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.yoko-contact-method:hover,
.yoko-contact-method:focus {
	border-color: rgba(236, 32, 40, 0.28);
	box-shadow: 0 14px 28px rgba(5, 54, 83, 0.1);
	color: var(--yoko-color-text);
	transform: translateY(-2px);
}

.yoko-contact-method__icon {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	flex: 0 0 46px;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.yoko-contact-method--green .yoko-contact-method__icon {
	background: #dcf7e4;
	color: #39a95a;
}

.yoko-contact-method--red .yoko-contact-method__icon {
	background: #ffe3e3;
	color: var(--yoko-color-primary);
}

.yoko-contact-method--blue .yoko-contact-method__icon {
	background: #dfecff;
	color: #377bd8;
}

.yoko-contact-method--gray .yoko-contact-method__icon {
	background: #eef2f6;
	color: #607087;
}

.yoko-contact-method__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.yoko-contact-method__body strong {
	color: var(--yoko-color-heading);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.28;
}

.yoko-contact-method__body small {
	color: var(--yoko-color-muted);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.yoko-contact-panel__socials {
	display: flex;
	gap: 10px;
	margin: 18px 0 18px;
}

.yoko-contact-panel__socials a {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-button);
	color: #8792a1;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	width: 44px;
}

.yoko-contact-panel__socials a:hover,
.yoko-contact-panel__socials a:focus {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	color: #ffffff;
	transform: translateY(-2px);
}

.yoko-contact-panel__promo {
	background: linear-gradient(135deg, #1c2733 0%, #2d1f2a 100%);
	border-radius: 8px;
	color: #ffffff;
	overflow: hidden;
	padding: 22px 24px;
	position: relative;
}

.yoko-contact-panel__promo span {
	color: #ff6a5f;
	display: block;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1.2;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.yoko-contact-panel__promo strong {
	display: block;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.12;
	max-width: 330px;
}

.yoko-contact-panel__promo .button {
	background: var(--yoko-color-primary) !important;
	border: 0 !important;
	border-radius: 8px !important;
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 800;
	margin: 18px 0 0;
	min-height: 42px;
	padding: 10px 16px;
	text-transform: none;
}

.yoko-contact-locations {
	background: #ffffff;
	padding: clamp(36px, 5vw, 62px) 0 clamp(42px, 6vw, 72px);
}

.yoko-contact-locations__header {
	margin: 0 auto clamp(18px, 2.8vw, 28px);
	max-width: 780px;
	text-align: center;
}

.yoko-contact-locations__header h2 {
	font-size: clamp(23px, 2.3vw, 32px);
	font-weight: 800;
	line-height: 1.18;
}

.yoko-contact-locations__header div {
	color: var(--yoko-color-muted);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	margin-top: 8px;
}

.yoko-contact-locations__grid {
	display: grid;
	gap: clamp(18px, 2.4vw, 28px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-contact-location {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: visible;
}

.yoko-contact-location__media {
	aspect-ratio: 16 / 9;
	background: #edf2f8;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(5, 54, 83, 0.1);
	margin: 0;
	overflow: hidden;
}

.yoko-contact-location__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-contact-location__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 12px 2px 0;
}

.yoko-contact-location h3 {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(16px, 1.2vw, 18px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0 0 7px;
}

.yoko-contact-location__address {
	color: var(--yoko-color-muted);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 14px;
}

.yoko-contact-location__button {
	background: #ffffff !important;
	border: 1px solid var(--yoko-color-border) !important;
	border-radius: 8px !important;
	box-shadow: 0 6px 14px rgba(5, 54, 83, 0.06);
	color: var(--yoko-color-heading) !important;
	font-size: 14px;
	font-weight: 800;
	margin: auto 0 0;
	min-height: 44px;
	padding: 10px 16px;
	text-transform: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
	width: 100%;
}

.yoko-contact-location__button:hover,
.yoko-contact-location__button:focus {
	background: #f7f9fc !important;
	border-color: rgba(236, 32, 40, 0.28) !important;
	box-shadow: 0 10px 22px rgba(5, 54, 83, 0.1);
	color: var(--yoko-color-primary) !important;
	transform: translateY(-1px);
}

@media (max-width: 849px) {
	.yoko-contact-panel__grid,
	.yoko-contact-locations__grid {
		grid-template-columns: 1fr;
	}

	.yoko-contact-panel__aside {
		display: grid;
		gap: 18px;
	}

	.yoko-contact-panel__socials {
		margin: 0;
	}
}

@media (max-width: 549px) {
	.yoko-contact-panel {
		padding: 32px 0 28px;
	}

	.yoko-contact-panel__grid {
		gap: 26px;
	}

	.yoko-contact-panel__header {
		margin-bottom: 18px;
	}

	.yoko-contact-form-preview__row {
		grid-template-columns: 1fr;
	}

	.yoko-contact-panel__form .yoko-cf7-row,
	.yoko-contact-panel__form .yoko-contact-cf7-row {
		grid-template-columns: 1fr;
	}

	.yoko-contact-method {
		align-items: flex-start;
		gap: 12px;
		min-height: 0;
		padding: 14px;
	}

	.yoko-contact-method__icon {
		flex-basis: 42px;
		height: 42px;
		width: 42px;
	}

	.yoko-contact-panel__socials a {
		height: 42px;
		width: 42px;
	}

	.yoko-contact-panel__promo {
		padding: 20px;
	}

	.yoko-contact-locations {
		padding-top: 30px;
	}
}

.yoko-scholarship-panel {
	--yoko-scholarship-panel-bg: #ffffff;
	--yoko-scholarship-number-color: #2F7F98;
	--yoko-scholarship-heading-color: #2F7F98;
	--yoko-scholarship-subtitle-bg: #858585;
	--yoko-scholarship-subtitle-color: #ffffff;
	--yoko-scholarship-divider-color: #2F7F98;
	--yoko-scholarship-text-color: var(--yoko-color-text);
	background: var(--yoko-scholarship-panel-bg);
	color: var(--yoko-scholarship-text-color);
	font-family: var(--yoko-font-family);
	padding: clamp(26px, 4vw, 46px) 0;
}

.yoko-scholarship-panel *,
.yoko-scholarship-panel *::before,
.yoko-scholarship-panel *::after {
	box-sizing: border-box;
}

.yoko-scholarship-panel__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.yoko-scholarship-panel__header {
	align-items: start;
	display: grid;
	gap: clamp(18px, 4vw, 42px);
	grid-template-columns: minmax(72px, 1fr) minmax(0, 820px);
}

.yoko-scholarship-panel__number {
	color: var(--yoko-scholarship-number-color);
	display: inline-flex;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(44px, 5.6vw, 64px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.9;
}

.yoko-scholarship-panel__title-group {
	justify-self: end;
	text-align: right;
	width: 100%;
}

.yoko-scholarship-panel__heading {
	color: var(--yoko-color-heading) !important;
	font-family: var(--yoko-font-family-heading);
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 0 10px;
	text-transform: uppercase;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

.yoko-scholarship-panel__subtitle {
	background: var(--yoko-scholarship-subtitle-bg);
	color: var(--yoko-scholarship-subtitle-color);
	display: inline-flex;
	font-size: clamp(13px, 1.2vw, 16px);
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	max-width: 100%;
	min-height: 34px;
	padding: 8px 32px;
	text-align: center;
	text-transform: uppercase;
	width: fit-content;
}

.yoko-scholarship-panel__divider {
	background: var(--yoko-scholarship-divider-color);
	height: 2px;
	margin-top: -2px;
	width: 100%;
}

.yoko-scholarship-panel__content {
	color: var(--yoko-scholarship-text-color);
}

.yoko-scholarship-panel__content > :last-child {
	margin-bottom: 0;
}

.yoko-scholarship-panel__description {
	color: var(--yoko-scholarship-text-color);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.72;
}

.yoko-scholarship-panel__description p {
	margin: 0;
}

.yoko-scholarship-panel__description p + p {
	margin-top: 18px;
}

.yoko-scholarship-panel__description strong {
	font-weight: 800;
}

@media (min-width: 850px) and (max-width: 1199px) {
	.yoko-scholarship-panel__header {
		grid-template-columns: minmax(72px, 1fr) minmax(0, 720px);
	}

	.yoko-scholarship-panel__heading {
		font-size: 22px;
	}
}

@media (max-width: 849px) {
	.yoko-scholarship-panel {
		padding: 28px 0;
	}

	.yoko-scholarship-panel__inner {
		gap: 16px;
	}

	.yoko-scholarship-panel__header {
		gap: 12px;
		grid-template-columns: 1fr;
	}

	.yoko-scholarship-panel__title-group {
		justify-self: start;
		text-align: left;
	}

	.yoko-scholarship-panel__subtitle {
		justify-content: flex-start;
		text-align: left;
	}
}

@media (max-width: 549px) {
	.yoko-scholarship-panel__number {
		font-size: 42px;
	}

	.yoko-scholarship-panel__heading {
		font-size: 21px;
	}

	.yoko-scholarship-panel__description {
		font-size: 14px;
		line-height: 1.65;
	}
}

.yoko-title-content-box {
	--yoko-title-box-frame: #3B4851;
	--yoko-title-box-tab-bg: #3B4851;
	--yoko-title-box-tab-color: #ffffff;
	--yoko-title-box-content-bg: #ffffff;
	--yoko-title-box-text: var(--yoko-color-text);
	background: transparent;
	color: var(--yoko-title-box-text);
	font-family: var(--yoko-font-family);
	margin: clamp(18px, 3vw, 30px) 0;
	position: relative;
	text-align: left;
	width: 100%;
}

.yoko-title-content-box *,
.yoko-title-content-box *::before,
.yoko-title-content-box *::after {
	box-sizing: border-box;
}

.yoko-title-content-box__tab {
	display: flex;
	justify-content: center;
	margin-bottom: -1px;
	position: relative;
	z-index: 2;
}

.yoko-title-content-box__title {
	background: var(--yoko-title-box-tab-bg);
	border-radius: 16px 16px 0 0;
	color: var(--yoko-title-box-tab-color);
	display: inline-flex;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
	max-width: min(100%, 600px);
	min-height: 44px;
	min-width: min(480px, 86%);
	overflow-wrap: normal;
	padding: 10px clamp(20px, 3vw, 34px) 12px;
	text-align: center;
	text-transform: uppercase;
	word-break: normal;
}

.yoko-title-content-box__panel {
	background: var(--yoko-title-box-content-bg);
	border: 8px solid var(--yoko-title-box-frame);
	color: var(--yoko-title-box-text);
	min-height: 150px;
	padding: clamp(28px, 4.6vw, 48px) clamp(22px, 4.8vw, 36px);
	text-align: left;
	width: 100%;
}

.yoko-title-content-box__content {
	color: var(--yoko-title-box-text) !important;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.72;
	opacity: 1 !important;
	text-align: left !important;
	-webkit-text-fill-color: currentColor !important;
}

.yoko-title-content-box__content > :first-child {
	margin-top: 0;
}

.yoko-title-content-box__content > :last-child {
	margin-bottom: 0;
}

.yoko-title-content-box__content p {
	color: var(--yoko-title-box-text) !important;
	margin: 0 0 16px;
	opacity: 1 !important;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-title-box-text) !important;
}

.yoko-title-content-box__content :where(div, span, small, li, dd, dt, em, i, u, sub, sup) {
	color: var(--yoko-title-box-text) !important;
	opacity: 1 !important;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-title-box-text) !important;
}

.yoko-title-content-box__content :where(h1, h2, h3, h4, h5, h6) {
	color: var(--yoko-title-box-frame) !important;
	font-family: var(--yoko-font-family-heading);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0 0 14px;
	opacity: 1 !important;
	overflow-wrap: anywhere;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-title-box-frame) !important;
}

.yoko-title-content-box__content strong,
.yoko-title-content-box__content b {
	color: var(--yoko-title-box-text) !important;
	font-weight: 800;
	opacity: 1 !important;
	-webkit-text-fill-color: var(--yoko-title-box-text) !important;
}

.yoko-title-content-box__content a {
	color: var(--yoko-color-primary) !important;
	font-weight: 700;
	opacity: 1 !important;
	text-decoration: none;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

.yoko-title-content-box__content a :where(span, strong, b, em, i, small) {
	color: var(--yoko-color-primary) !important;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

.yoko-title-content-box__content a:hover,
.yoko-title-content-box__content a:focus {
	color: var(--yoko-color-primary-dark) !important;
	text-decoration: underline;
	-webkit-text-fill-color: var(--yoko-color-primary-dark) !important;
}

.yoko-title-content-box__content a:hover :where(span, strong, b, em, i, small),
.yoko-title-content-box__content a:focus :where(span, strong, b, em, i, small) {
	color: var(--yoko-color-primary-dark) !important;
	-webkit-text-fill-color: var(--yoko-color-primary-dark) !important;
}

.yoko-title-content-box__content blockquote {
	border-left: 4px solid var(--yoko-title-box-frame);
	color: var(--yoko-title-box-text) !important;
	font-style: normal;
	margin: 0 0 18px;
	opacity: 1 !important;
	padding: 4px 0 4px 18px;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-title-box-text) !important;
}

.yoko-title-content-box__content blockquote > :last-child {
	margin-bottom: 0;
}

.yoko-title-content-box__content table {
	border-collapse: collapse;
	color: var(--yoko-title-box-text) !important;
	font-size: 0.95em;
	margin: 0 0 18px;
	text-align: left;
	width: 100%;
}

.yoko-title-content-box__content :where(th, td) {
	border: 1px solid color-mix(in srgb, var(--yoko-title-box-frame) 22%, #ffffff);
	color: var(--yoko-title-box-text) !important;
	padding: 10px 12px;
	text-align: left !important;
	vertical-align: top;
	-webkit-text-fill-color: var(--yoko-title-box-text) !important;
}

.yoko-title-content-box__content th {
	background: color-mix(in srgb, var(--yoko-title-box-frame) 8%, #ffffff);
	font-weight: 800;
}

.yoko-title-content-box__content hr {
	background: color-mix(in srgb, var(--yoko-title-box-frame) 18%, #ffffff);
	border: 0;
	height: 1px;
	margin: 20px 0;
}

.yoko-title-content-box__content :where(figure, img) {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
}

.yoko-title-content-box__content img {
	border-radius: 8px;
	display: block;
	height: auto;
}

.yoko-title-content-box__content figcaption {
	color: var(--yoko-color-muted) !important;
	font-size: 13px;
	line-height: 1.5;
	margin-top: 8px;
	opacity: 1 !important;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-color-muted) !important;
}

.yoko-title-content-box__content :where(code, pre) {
	background: #F7F9FC;
	color: var(--yoko-title-box-text) !important;
	font-family: var(--yoko-font-family-code, var(--yoko-font-family));
	opacity: 1 !important;
	-webkit-text-fill-color: var(--yoko-title-box-text) !important;
}

.yoko-title-content-box__content code {
	border-radius: 4px;
	font-size: 0.92em;
	padding: 0.12em 0.35em;
}

.yoko-title-content-box__content pre {
	border: 1px solid color-mix(in srgb, var(--yoko-title-box-frame) 14%, #ffffff);
	border-radius: 8px;
	margin: 0 0 18px;
	overflow-x: auto;
	padding: 14px 16px;
	text-align: left !important;
}

.yoko-title-content-box__content mark {
	background: #FFF4CC;
	color: var(--yoko-title-box-text) !important;
	padding: 0.08em 0.24em;
	-webkit-text-fill-color: var(--yoko-title-box-text) !important;
}

.yoko-title-content-box__content ul,
.yoko-title-content-box__content ol {
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.yoko-title-content-box__content li {
	margin: 0;
	min-width: 0;
	padding-left: 28px;
	position: relative;
}

.yoko-title-content-box__content ul > li::before {
	background: var(--yoko-title-box-frame);
	border-radius: 999px;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: 0.86em;
	width: 14px;
}

.yoko-title-content-box__content ol {
	counter-reset: yoko-title-content-box-list;
}

.yoko-title-content-box__content ol > li {
	counter-increment: yoko-title-content-box-list;
	padding-left: 36px;
}

.yoko-title-content-box__content ol > li::before {
	align-items: center;
	background: var(--yoko-title-box-frame);
	border-radius: 50%;
	color: #ffffff;
	content: counter(yoko-title-content-box-list);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	height: 24px;
	justify-content: center;
	left: 0;
	line-height: 1;
	position: absolute;
	top: 0.1em;
	width: 24px;
}

.yoko-title-content-box__content li > ul,
.yoko-title-content-box__content li > ol {
	gap: 10px;
	margin: 12px 0 0;
}

.yoko-title-content-box__content li > :last-child,
.yoko-title-content-box__content > :last-child {
	margin-bottom: 0;
}

@media (max-width: 849px) {
	.yoko-title-content-box {
		margin: 18px 0;
	}

	.yoko-title-content-box__title {
		border-radius: 14px 14px 0 0;
		font-size: clamp(17px, 4.8vw, 21px);
		min-height: 42px;
		min-width: min(420px, 88%);
		padding: 9px 18px 11px;
	}

	.yoko-title-content-box__panel {
		border-width: 6px;
		min-height: 0;
		padding: 26px 20px 24px;
	}

	.yoko-title-content-box__content {
		font-size: 15px;
		line-height: 1.66;
	}

	.yoko-title-content-box__content ul,
	.yoko-title-content-box__content ol {
		gap: 14px;
	}
}

@media (max-width: 549px) {
	.yoko-title-content-box__title {
		max-width: calc(100% - 24px);
		min-width: min(320px, 92%);
		width: fit-content;
	}

	.yoko-title-content-box__panel {
		padding: 24px 18px 22px;
	}

	.yoko-title-content-box__content li {
		padding-left: 24px;
	}

	.yoko-title-content-box__content ol > li {
		padding-left: 32px;
	}
}

.yoko-numbered-media-block {
	--yoko-numbered-media-accent: var(--yoko-color-primary);
	--yoko-numbered-media-number-bg: var(--yoko-color-primary);
	--yoko-numbered-media-number-text: #ffffff;
	--yoko-numbered-media-title: var(--yoko-color-navy);
	--yoko-numbered-media-text: var(--yoko-color-text);
	--yoko-numbered-media-horizontal-gap: clamp(24px, 3.6vw, 42px);
	background: transparent;
	color: var(--yoko-numbered-media-text);
	font-family: var(--yoko-font-family);
	margin: clamp(22px, 3.2vw, 34px) 0;
	text-align: left;
	width: 100%;
}

.yoko-numbered-media-block *,
.yoko-numbered-media-block *::before,
.yoko-numbered-media-block *::after {
	box-sizing: border-box;
}

.yoko-numbered-media-block__grid {
	align-items: center;
	display: grid;
	gap: var(--yoko-numbered-media-horizontal-gap);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 100%;
}

.yoko-numbered-media-block--layout-right .yoko-numbered-media-block__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yoko-numbered-media-block--layout-left .yoko-numbered-media-block__media,
.yoko-numbered-media-block--layout-left .yoko-numbered-media-block__body,
.yoko-numbered-media-block--layout-right .yoko-numbered-media-block__media,
.yoko-numbered-media-block--layout-right .yoko-numbered-media-block__body {
	align-self: center;
	justify-self: stretch;
}

.yoko-numbered-media-block--layout-top .yoko-numbered-media-block__grid,
.yoko-numbered-media-block--layout-bottom .yoko-numbered-media-block__grid {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.yoko-numbered-media-block--no-media .yoko-numbered-media-block__grid {
	display: block;
}

.yoko-numbered-media-block__media {
	background: #ffffff;
	margin: 0;
	min-width: 0;
	overflow: hidden;
	width: 100%;
}

.yoko-numbered-media-block--ratio-16-10 .yoko-numbered-media-block__media {
	aspect-ratio: 16 / 10;
}

.yoko-numbered-media-block--ratio-4-3 .yoko-numbered-media-block__media {
	aspect-ratio: 4 / 3;
}

.yoko-numbered-media-block--ratio-3-2 .yoko-numbered-media-block__media {
	aspect-ratio: 3 / 2;
}

.yoko-numbered-media-block--ratio-1-1 .yoko-numbered-media-block__media {
	aspect-ratio: 1 / 1;
}

.yoko-numbered-media-block--ratio-natural .yoko-numbered-media-block__media {
	aspect-ratio: auto;
}

.yoko-numbered-media-block__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-numbered-media-block--fit-contain .yoko-numbered-media-block__image {
	object-fit: contain;
}

.yoko-numbered-media-block--ratio-natural .yoko-numbered-media-block__image {
	height: auto;
	object-fit: contain;
}

.yoko-numbered-media-block__body {
	min-width: 0;
	text-align: left !important;
	width: 100%;
}

.yoko-numbered-media-block__header {
	align-items: center;
	display: flex;
	gap: clamp(18px, 3vw, 30px);
	justify-content: flex-start;
	margin: 0 0 clamp(20px, 3vw, 30px);
	min-width: 0;
	text-align: left !important;
}

.yoko-numbered-media-block__number {
	align-items: center;
	background: var(--yoko-numbered-media-number-bg);
	border-radius: var(--yoko-radius-card, 8px);
	color: var(--yoko-numbered-media-number-text);
	display: inline-flex;
	flex: 0 0 auto;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(22px, 2.1vw, 28px);
	font-weight: 800;
	height: clamp(56px, 5vw, 64px);
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	min-width: clamp(56px, 5vw, 64px);
	padding: 0 10px;
	text-align: center;
	-webkit-text-fill-color: var(--yoko-numbered-media-number-text);
}

.yoko-numbered-media-block__title {
	color: var(--yoko-numbered-media-title);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(19px, 2vw, 25px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.24;
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
	text-align: left !important;
	text-transform: uppercase;
	text-wrap: balance;
}

.yoko-numbered-media-block__description {
	color: var(--yoko-numbered-media-text) !important;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	opacity: 1 !important;
	text-align: left !important;
	-webkit-text-fill-color: currentColor !important;
}

.yoko-numbered-media-block__description > :first-child {
	margin-top: 0;
}

.yoko-numbered-media-block__description > :last-child {
	margin-bottom: 0;
}

.yoko-numbered-media-block__description p {
	color: var(--yoko-numbered-media-text) !important;
	margin: 0 0 20px;
	opacity: 1 !important;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-numbered-media-text) !important;
}

.yoko-numbered-media-block__description :where(div, span, small, li, dd, dt, em, i, u, sub, sup) {
	color: var(--yoko-numbered-media-text) !important;
	opacity: 1 !important;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-numbered-media-text) !important;
}

.yoko-numbered-media-block__description :where(h1, h2, h3, h4, h5, h6) {
	color: var(--yoko-numbered-media-title) !important;
	font-family: var(--yoko-font-family-heading);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0 0 14px;
	opacity: 1 !important;
	overflow-wrap: anywhere;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-numbered-media-title) !important;
}

.yoko-numbered-media-block__description strong,
.yoko-numbered-media-block__description b {
	color: var(--yoko-numbered-media-text) !important;
	font-weight: 800;
	opacity: 1 !important;
	-webkit-text-fill-color: var(--yoko-numbered-media-text) !important;
}

.yoko-numbered-media-block__description a {
	color: var(--yoko-color-primary) !important;
	font-weight: 700;
	opacity: 1 !important;
	text-decoration: none;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

.yoko-numbered-media-block__description a :where(span, strong, b, em, i, small) {
	color: var(--yoko-color-primary) !important;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

.yoko-numbered-media-block__description a:hover,
.yoko-numbered-media-block__description a:focus {
	color: var(--yoko-color-primary-dark) !important;
	text-decoration: underline;
	-webkit-text-fill-color: var(--yoko-color-primary-dark) !important;
}

.yoko-numbered-media-block__description a:hover :where(span, strong, b, em, i, small),
.yoko-numbered-media-block__description a:focus :where(span, strong, b, em, i, small) {
	color: var(--yoko-color-primary-dark) !important;
	-webkit-text-fill-color: var(--yoko-color-primary-dark) !important;
}

.yoko-numbered-media-block__description blockquote {
	border-left: 4px solid var(--yoko-numbered-media-accent);
	color: var(--yoko-numbered-media-text) !important;
	font-style: normal;
	margin: 0 0 20px;
	opacity: 1 !important;
	padding: 4px 0 4px 18px;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-numbered-media-text) !important;
}

.yoko-numbered-media-block__description blockquote > :last-child {
	margin-bottom: 0;
}

.yoko-numbered-media-block__description table {
	border-collapse: collapse;
	color: var(--yoko-numbered-media-text) !important;
	font-size: 0.95em;
	margin: 0 0 20px;
	text-align: left;
	width: 100%;
}

.yoko-numbered-media-block__description :where(th, td) {
	border: 1px solid color-mix(in srgb, var(--yoko-numbered-media-accent) 22%, #ffffff);
	color: var(--yoko-numbered-media-text) !important;
	padding: 10px 12px;
	text-align: left !important;
	vertical-align: top;
	-webkit-text-fill-color: var(--yoko-numbered-media-text) !important;
}

.yoko-numbered-media-block__description th {
	background: color-mix(in srgb, var(--yoko-numbered-media-accent) 8%, #ffffff);
	font-weight: 800;
}

.yoko-numbered-media-block__description hr {
	background: color-mix(in srgb, var(--yoko-numbered-media-accent) 18%, #ffffff);
	border: 0;
	height: 1px;
	margin: 22px 0;
}

.yoko-numbered-media-block__description :where(figure, img) {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
}

.yoko-numbered-media-block__description img {
	border-radius: 8px;
	display: block;
	height: auto;
}

.yoko-numbered-media-block__description figcaption {
	color: var(--yoko-color-muted) !important;
	font-size: 13px;
	line-height: 1.5;
	margin-top: 8px;
	opacity: 1 !important;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-color-muted) !important;
}

.yoko-numbered-media-block__description :where(code, pre) {
	background: #F7F9FC;
	color: var(--yoko-numbered-media-text) !important;
	font-family: var(--yoko-font-family-code, var(--yoko-font-family));
	opacity: 1 !important;
	-webkit-text-fill-color: var(--yoko-numbered-media-text) !important;
}

.yoko-numbered-media-block__description code {
	border-radius: 4px;
	font-size: 0.92em;
	padding: 0.12em 0.35em;
}

.yoko-numbered-media-block__description pre {
	border: 1px solid color-mix(in srgb, var(--yoko-numbered-media-accent) 14%, #ffffff);
	border-radius: 8px;
	margin: 0 0 20px;
	overflow-x: auto;
	padding: 14px 16px;
	text-align: left !important;
}

.yoko-numbered-media-block__description mark {
	background: #FFF4CC;
	color: var(--yoko-numbered-media-text) !important;
	padding: 0.08em 0.24em;
	-webkit-text-fill-color: var(--yoko-numbered-media-text) !important;
}

.yoko-numbered-media-block__description ul,
.yoko-numbered-media-block__description ol {
	display: grid;
	gap: 10px;
	margin: 0 0 20px;
	padding: 0;
}

.yoko-numbered-media-block__description ul {
	list-style: none;
}

.yoko-numbered-media-block__description ul > li {
	padding-left: 22px;
	position: relative;
}

.yoko-numbered-media-block__description ul > li::before {
	background: var(--yoko-numbered-media-accent);
	border-radius: 50%;
	content: "";
	height: 7px;
	left: 0;
	position: absolute;
	top: 0.72em;
	width: 7px;
}

.yoko-numbered-media-block__description ol {
	padding-left: 1.35em;
}

.yoko-numbered-media-block__description li {
	margin: 0;
	min-width: 0;
}

.yoko-numbered-media-block__description li > :last-child {
	margin-bottom: 0;
}

@media (max-width: 849px) {
	.yoko-numbered-media-block {
		margin: 24px 0;
	}

	.yoko-numbered-media-block__grid,
	.yoko-numbered-media-block--layout-right .yoko-numbered-media-block__grid {
		align-items: stretch;
		display: flex;
		flex-direction: column;
		gap: 22px;
	}

	.yoko-numbered-media-block--layout-left .yoko-numbered-media-block__media,
	.yoko-numbered-media-block--layout-top .yoko-numbered-media-block__media {
		order: 1;
	}

	.yoko-numbered-media-block--layout-left .yoko-numbered-media-block__body,
	.yoko-numbered-media-block--layout-top .yoko-numbered-media-block__body {
		order: 2;
	}

	.yoko-numbered-media-block--layout-right .yoko-numbered-media-block__body,
	.yoko-numbered-media-block--layout-bottom .yoko-numbered-media-block__body {
		order: 1;
	}

	.yoko-numbered-media-block--layout-right .yoko-numbered-media-block__media,
	.yoko-numbered-media-block--layout-bottom .yoko-numbered-media-block__media {
		order: 2;
	}

	.yoko-numbered-media-block__header {
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 18px;
	}

	.yoko-numbered-media-block__number {
		font-size: 22px;
		height: 56px;
		min-width: 56px;
	}

	.yoko-numbered-media-block__title {
		font-size: clamp(18px, 5vw, 22px);
	}
}

@media (max-width: 549px) {
	.yoko-numbered-media-block__header {
		gap: 14px;
	}

	.yoko-numbered-media-block__number {
		font-size: 20px;
		height: 52px;
		min-width: 52px;
	}

	.yoko-numbered-media-block__description {
		font-size: 14px;
		line-height: 1.68;
	}
}

.yoko-image-feature-cards {
	--yoko-image-feature-cards-columns: 3;
	--yoko-image-feature-cards-gap: 24px;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	margin: clamp(22px, 3vw, 34px) 0;
	width: 100%;
}

.col-inner > .yoko-image-feature-cards:last-child {
	margin-bottom: 0;
}

.yoko-image-feature-cards *,
.yoko-image-feature-cards *::before,
.yoko-image-feature-cards *::after {
	box-sizing: border-box;
}

.yoko-image-feature-cards--columns-2 {
	--yoko-image-feature-cards-columns: 2;
}

.yoko-image-feature-cards--columns-3 {
	--yoko-image-feature-cards-columns: 3;
}

.yoko-image-feature-cards--columns-4 {
	--yoko-image-feature-cards-columns: 4;
}

.yoko-image-feature-cards--gap-compact {
	--yoko-image-feature-cards-gap: 18px;
}

.yoko-image-feature-cards--gap-relaxed {
	--yoko-image-feature-cards-gap: 30px;
}

.yoko-image-feature-cards__grid {
	align-items: stretch;
	display: grid;
	gap: var(--yoko-image-feature-cards-gap);
	grid-template-columns: repeat(var(--yoko-image-feature-cards-columns), minmax(0, 1fr));
	width: 100%;
}

.yoko-image-feature-card {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	transition: box-shadow 160ms ease, transform 160ms ease;
}

.yoko-image-feature-card:hover {
	box-shadow: var(--yoko-shadow-card-hover);
	transform: translateY(-2px);
}

.yoko-image-feature-card__media-band {
	align-items: center;
	background: #FFF4F3;
	display: flex;
	height: clamp(136px, 12vw, 156px);
	justify-content: center;
	padding: 0;
	width: 100%;
}

.yoko-image-feature-card__media-frame {
	align-items: center;
	background: #FFF4F3;
	display: inline-flex;
	height: 100%;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.yoko-image-feature-card__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-image-feature-card--fit-contain .yoko-image-feature-card__image {
	object-fit: contain;
}

.yoko-image-feature-card__image-placeholder {
	align-items: center;
	color: var(--yoko-color-primary);
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.25;
	text-align: center;
}

.yoko-image-feature-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: clamp(18px, 2.4vw, 22px);
	text-align: left;
}

.yoko-image-feature-card__number {
	align-items: center;
	align-self: flex-start;
	background: rgba(236, 32, 40, 0.09);
	border-radius: 8px;
	color: var(--yoko-color-primary);
	display: inline-flex;
	font-family: var(--yoko-font-family);
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	margin: 0 0 16px;
	min-height: 28px;
	min-width: 30px;
	padding: 7px 9px;
	text-align: center;
	-webkit-text-fill-color: var(--yoko-color-primary);
}

.yoko-image-feature-card__title {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(15px, 1.15vw, 17px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.32;
	margin: 0;
	overflow-wrap: anywhere;
	text-align: left;
	text-wrap: balance;
}

.yoko-image-feature-card__description {
	color: var(--yoko-color-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	margin: 12px 0 0;
}

.yoko-image-feature-card__description > :first-child {
	margin-top: 0;
}

.yoko-image-feature-card__description > :last-child {
	margin-bottom: 0;
}

@media (max-width: 849px) {
	.yoko-image-feature-cards {
		--yoko-image-feature-cards-columns: 2;
		--yoko-image-feature-cards-gap: 18px;
		margin: 24px 0;
	}

	.yoko-image-feature-card__media-band {
		height: 138px;
	}
}

@media (max-width: 549px) {
	.yoko-image-feature-cards {
		--yoko-image-feature-cards-columns: 1;
		--yoko-image-feature-cards-gap: 16px;
	}

	.yoko-image-feature-card__body {
		padding: 18px;
	}

	.yoko-image-feature-card__number {
		margin-bottom: 14px;
	}

	.yoko-image-feature-card__description {
		font-size: 13px;
		line-height: 1.62;
	}
}

.yoko-numbered-content-panel {
	--yoko-numbered-panel-bg: #ffffff;
	--yoko-numbered-panel-number: #EC2028;
	--yoko-numbered-panel-title: #EC2028;
	--yoko-numbered-panel-text: #1F2937;
	--yoko-numbered-panel-table-head-bg: #EC2028;
	--yoko-numbered-panel-table-section-bg: #FFF1F2;
	--yoko-numbered-panel-table-border: #F3B4B8;
	--yoko-numbered-panel-table-head-text: #ffffff;
	background: var(--yoko-numbered-panel-bg);
	color: var(--yoko-numbered-panel-text);
	font-family: var(--yoko-font-family);
	margin: 0 0 clamp(14px, 2.2vw, 24px);
	overflow: hidden;
	padding: clamp(20px, 3.2vw, 32px);
	text-align: left;
	width: 100%;
}

.yoko-numbered-content-panel--cost-table {
	--yoko-numbered-panel-bg: #ffffff !important;
	--yoko-numbered-panel-number: #EC2028 !important;
	--yoko-numbered-panel-title: #EC2028 !important;
	--yoko-numbered-panel-text: #1F2937 !important;
	--yoko-numbered-panel-table-head-bg: #EC2028 !important;
	--yoko-numbered-panel-table-section-bg: #FFF1F2 !important;
	--yoko-numbered-panel-table-border: var(--yoko-color-border, #E6EAF0) !important;
	--yoko-numbered-panel-table-head-text: #ffffff !important;
	background: #ffffff;
	border: 1px solid var(--yoko-numbered-panel-table-border);
	border-radius: var(--yoko-radius-card, 8px);
	box-shadow: 0 16px 36px rgba(5, 54, 83, 0.08);
}

.col-inner > .yoko-numbered-content-panel:last-child {
	margin-bottom: 0;
}

.yoko-numbered-content-panel *,
.yoko-numbered-content-panel *::before,
.yoko-numbered-content-panel *::after {
	box-sizing: border-box;
}

.yoko-numbered-content-panel__header {
	display: grid;
	gap: 14px;
	margin: 0 0 clamp(16px, 2.4vw, 24px);
	text-align: left;
}

.yoko-numbered-content-panel__number {
	color: var(--yoko-numbered-panel-number);
	display: block;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(44px, 6vw, 64px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.9;
	text-align: left;
}

.yoko-numbered-content-panel__title {
	color: var(--yoko-numbered-panel-title);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0;
	max-width: 980px;
	overflow-wrap: anywhere;
	text-align: left;
	text-transform: uppercase;
	text-wrap: balance;
}

.yoko-numbered-content-panel__content {
	color: var(--yoko-numbered-panel-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.72;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-color: var(--yoko-numbered-panel-table-border) transparent;
	text-align: left;
}

.yoko-numbered-content-panel__content > :first-child {
	margin-top: 0;
}

.yoko-numbered-content-panel__content > :last-child {
	margin-bottom: 0;
}

.yoko-numbered-content-panel__content :where(.text, .ux-html, p, li, dd, dt, strong, b, em, i, small) {
	color: var(--yoko-numbered-panel-text) !important;
	opacity: 1 !important;
	-webkit-text-fill-color: var(--yoko-numbered-panel-text) !important;
}

.yoko-numbered-content-panel__content :where(.text, .ux-html, p, li, dd, dt) {
	text-align: left;
}

.yoko-numbered-content-panel__content :where(.text-left, .has-text-align-left, .alignleft, .align-left, .elementor-align-left) {
	text-align: left !important;
}

.yoko-numbered-content-panel__content :where(.text-center, .has-text-align-center, .aligncenter, .align-center, .elementor-align-center) {
	text-align: center !important;
}

.yoko-numbered-content-panel__content :where(.text-right, .has-text-align-right, .alignright, .align-right, .elementor-align-right) {
	text-align: right !important;
}

.yoko-numbered-content-panel__content :where(.text-center, .text-right, .has-text-align-center, .has-text-align-right, .aligncenter, .alignright, .align-center, .align-right, .elementor-align-center, .elementor-align-right) :where(p, div, span, a, strong, b, em, i, small) {
	text-align: inherit !important;
}

.yoko-numbered-content-panel__content p {
	margin: 0 0 18px;
}

.yoko-numbered-content-panel__content :where(h1, h2, h3, h4, h5, h6) {
	color: var(--yoko-numbered-panel-title) !important;
	font-family: var(--yoko-font-family-heading);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0 0 14px;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-numbered-panel-title) !important;
}

.yoko-numbered-content-panel__content a:not(.button):not(.elementor-button):not(.wp-element-button):not(.wp-block-button__link) {
	color: var(--yoko-color-primary) !important;
	font-weight: 700;
	text-decoration: none;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

.yoko-numbered-content-panel__content a:not(.button):not(.elementor-button):not(.wp-element-button):not(.wp-block-button__link):hover,
.yoko-numbered-content-panel__content a:not(.button):not(.elementor-button):not(.wp-element-button):not(.wp-block-button__link):focus {
	color: var(--yoko-color-primary-dark) !important;
	text-decoration: underline;
	-webkit-text-fill-color: var(--yoko-color-primary-dark) !important;
}

.yoko-numbered-content-panel__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) {
	align-items: center !important;
	color: #ffffff !important;
	display: flex !important;
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-button, 14px);
	font-weight: 800;
	float: none !important;
	justify-content: center !important;
	line-height: 1.2;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: min(100%, 520px);
	min-height: 42px;
	text-align: center !important;
	text-decoration: none !important;
	width: fit-content !important;
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-numbered-content-panel__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):hover,
.yoko-numbered-content-panel__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):focus {
	color: #ffffff !important;
	text-decoration: none !important;
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-numbered-content-panel__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link) {
	color: var(--yoko-numbered-panel-title) !important;
	-webkit-text-fill-color: var(--yoko-numbered-panel-title) !important;
}

.yoko-numbered-content-panel__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) :where(span, i, strong, b, em) {
	color: currentColor !important;
	text-align: inherit !important;
	-webkit-text-fill-color: currentColor !important;
}

.yoko-numbered-content-panel__content > :where(a.button, button.button) {
	border-radius: var(--yoko-radius-button) !important;
	display: flex !important;
	margin: clamp(18px, 2.4vw, 26px) auto 0 !important;
	max-width: min(100%, 520px);
	min-height: 44px;
	padding: 0 24px;
	white-space: normal;
	width: fit-content !important;
}

.yoko-numbered-content-panel__content :where(p, .text, .text-inner, .ux-html, .button-wrapper, .elementor-widget-button, .elementor-button-wrapper, .wp-block-button):has(:where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link)) {
	display: block !important;
	text-align: center !important;
}

.yoko-numbered-content-panel__content > .table-responsive + :where(a.button, button.button) {
	background: var(--yoko-numbered-panel-title) !important;
	border-color: var(--yoko-numbered-panel-title) !important;
	box-shadow: 0 10px 22px rgba(5, 54, 83, 0.18);
	margin-top: clamp(18px, 2.4vw, 28px) !important;
}

.yoko-numbered-content-panel__content > .table-responsive + :where(a.button, button.button):hover,
.yoko-numbered-content-panel__content > .table-responsive + :where(a.button, button.button):focus {
	background: var(--yoko-color-primary) !important;
	border-color: var(--yoko-color-primary) !important;
	box-shadow: 0 14px 28px rgba(236, 32, 40, 0.18);
}

.yoko-numbered-content-panel__content > :where(a.button.alignleft, a.button.align-left, button.button.alignleft, button.button.align-left),
.yoko-numbered-content-panel__content :where(.text-left, .has-text-align-left, .alignleft, .align-left, .elementor-align-left) > :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-numbered-content-panel__content :where(a.button.alignleft, a.button.align-left, button.button.alignleft, button.button.align-left, .wp-block-button.alignleft, .wp-block-button.align-left, .elementor-align-left .elementor-button) {
	display: flex !important;
	float: none !important;
	margin-left: 0 !important;
	margin-right: auto !important;
	width: fit-content !important;
}

.yoko-numbered-content-panel__content > :where(a.button.aligncenter, a.button.align-center, button.button.aligncenter, button.button.align-center),
.yoko-numbered-content-panel__content :where(.text-center, .has-text-align-center, .aligncenter, .align-center, .elementor-align-center) > :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-numbered-content-panel__content :where(a.button.aligncenter, a.button.align-center, button.button.aligncenter, button.button.align-center, .wp-block-button.aligncenter, .wp-block-button.align-center, .elementor-align-center .elementor-button) {
	display: flex !important;
	float: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 100%;
	width: fit-content !important;
}

.yoko-numbered-content-panel__content > :where(a.button.alignright, a.button.align-right, button.button.alignright, button.button.align-right),
.yoko-numbered-content-panel__content :where(.text-right, .has-text-align-right, .alignright, .align-right, .elementor-align-right) > :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-numbered-content-panel__content :where(a.button.alignright, a.button.align-right, button.button.alignright, button.button.align-right, .wp-block-button.alignright, .wp-block-button.align-right, .elementor-align-right .elementor-button) {
	display: flex !important;
	float: none !important;
	margin-left: auto !important;
	margin-right: 0 !important;
	max-width: 100%;
	width: fit-content !important;
}

.yoko-numbered-content-panel__content :where(.text-left, .has-text-align-left, .alignleft, .align-left, .elementor-align-left) :where(h1, h2, h3, h4, h5, h6, p, div, span, a, strong, b, em, i, small) {
	text-align: inherit !important;
}

.yoko-numbered-content-panel__content :where(.text-center, .has-text-align-center, .aligncenter, .align-center, .elementor-align-center) :where(h1, h2, h3, h4, h5, h6, p, div, span, a, strong, b, em, i, small) {
	text-align: inherit !important;
}

.yoko-numbered-content-panel__content :where(.text-right, .has-text-align-right, .alignright, .align-right, .elementor-align-right) :where(h1, h2, h3, h4, h5, h6, p, div, span, a, strong, b, em, i, small) {
	text-align: inherit !important;
}

.yoko-numbered-content-panel__content :where(ul, ol) {
	display: grid;
	gap: 10px;
	margin: 0 0 18px;
	padding-left: 1.25em;
}

.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) {
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid color-mix(in srgb, var(--yoko-numbered-panel-title) 18%, #ffffff);
	border-left: 5px solid var(--yoko-color-primary);
	border-radius: 8px;
	box-shadow: 0 12px 26px rgba(5, 54, 83, 0.08);
	margin-top: clamp(18px, 2.6vw, 30px);
	padding: clamp(16px, 2.5vw, 24px);
	text-align: left !important;
}

.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) :where(.elementor-widget-container, .text-inner) {
	margin: 0;
}

.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) p:first-child {
	align-items: center;
	color: var(--yoko-numbered-panel-title) !important;
	display: flex;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 800;
	gap: 10px;
	line-height: 1.25;
	margin: 0 0 14px;
	text-align: left !important;
	text-transform: uppercase;
	-webkit-text-fill-color: var(--yoko-numbered-panel-title) !important;
}

.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) p:first-child::before {
	background: var(--yoko-color-primary);
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(236, 32, 40, 0.12);
	content: "";
	flex: 0 0 9px;
	height: 9px;
	width: 9px;
}

.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) p:first-child :where(strong, b, span) {
	color: inherit !important;
	font: inherit;
	text-align: inherit !important;
	-webkit-text-fill-color: currentColor !important;
}

.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) :where(ul, ol) {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) li {
	color: var(--yoko-numbered-panel-text) !important;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.68;
	margin: 0;
	padding-left: 26px;
	position: relative;
	text-align: left !important;
	-webkit-text-fill-color: var(--yoko-numbered-panel-text) !important;
}

.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) li::before {
	background: var(--yoko-numbered-panel-title);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(5, 54, 83, 0.08);
	content: "";
	height: 7px;
	left: 4px;
	position: absolute;
	top: 0.82em;
	width: 7px;
}

.yoko-numbered-content-panel__content :where(figure, img) {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
}

.yoko-numbered-content-panel__content img {
	border-radius: 8px;
	display: block;
	height: auto;
}

.yoko-numbered-content-panel__content :where(img.aligncenter, figure.aligncenter, .aligncenter img) {
	margin-left: auto;
	margin-right: auto;
}

.yoko-numbered-content-panel__content :where(img.alignright, figure.alignright, .alignright img) {
	float: none;
	margin-left: auto;
	margin-right: 0;
}

.yoko-numbered-content-panel__content .table-responsive {
	margin: 0 0 22px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
}

.yoko-numbered-content-panel__content table {
	background: #ffffff;
	border: 0;
	border-collapse: collapse;
	color: var(--yoko-numbered-panel-text) !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 22px;
	min-width: 760px;
	table-layout: auto;
	text-align: left;
	width: 100%;
	-webkit-text-fill-color: var(--yoko-numbered-panel-text) !important;
}

.yoko-numbered-content-panel__content .table-responsive > table {
	margin-bottom: 0;
}

.yoko-numbered-content-panel__content caption {
	background: var(--yoko-numbered-panel-table-head-bg);
	border: 2px solid var(--yoko-numbered-panel-table-border);
	border-bottom: 0;
	color: var(--yoko-numbered-panel-table-head-text) !important;
	font-family: var(--yoko-font-family-heading);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
	padding: 10px 14px;
	text-align: center;
	text-transform: uppercase;
	-webkit-text-fill-color: var(--yoko-numbered-panel-table-head-text) !important;
}

.yoko-numbered-content-panel__content .table-title {
	background: var(--yoko-numbered-panel-table-head-bg) !important;
	color: var(--yoko-numbered-panel-table-head-text) !important;
	font-family: var(--yoko-font-family-heading);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
	padding: 10px 14px;
	text-align: center !important;
	text-transform: uppercase;
	width: auto;
	-webkit-text-fill-color: var(--yoko-numbered-panel-table-head-text) !important;
}

.yoko-numbered-content-panel__content .table-title p {
	color: var(--yoko-numbered-panel-table-head-text) !important;
	font: inherit;
	margin: 0;
	text-align: center !important;
	text-transform: inherit;
	-webkit-text-fill-color: var(--yoko-numbered-panel-table-head-text) !important;
}

.yoko-numbered-content-panel__content :where(th, td) {
	border: 2px solid var(--yoko-numbered-panel-table-border);
	color: var(--yoko-numbered-panel-text) !important;
	padding: 10px 16px;
	text-align: left;
	vertical-align: middle;
	-webkit-text-fill-color: var(--yoko-numbered-panel-text) !important;
}

.yoko-numbered-content-panel__content thead th,
.yoko-numbered-content-panel__content thead td {
	background: color-mix(in srgb, var(--yoko-numbered-panel-table-head-bg) 84%, #ffffff);
	color: var(--yoko-numbered-panel-table-head-text) !important;
	font-family: var(--yoko-font-family-heading);
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	-webkit-text-fill-color: var(--yoko-numbered-panel-table-head-text) !important;
}

.yoko-numbered-content-panel__content tbody th,
.yoko-numbered-content-panel__content tbody :where(th, td)[colspan],
.yoko-numbered-content-panel__content tbody tr.section-row > :where(th, td),
.yoko-numbered-content-panel__content tbody tr:has(> :where(th, td)[colspan]) > :where(th, td) {
	background: var(--yoko-numbered-panel-table-section-bg);
	color: var(--yoko-numbered-panel-table-head-text) !important;
	font-weight: 800;
	-webkit-text-fill-color: var(--yoko-numbered-panel-table-head-text) !important;
}

.yoko-numbered-content-panel__content thead tr > :where(th, td):first-child:not([colspan]),
.yoko-numbered-content-panel__content tbody tr > :where(th, td):first-child:not([colspan]) {
	min-width: 58px;
	text-align: center;
	width: 8%;
}

.yoko-numbered-content-panel__content thead tr > :where(th, td):nth-child(2):not([colspan]),
.yoko-numbered-content-panel__content tbody tr > :where(th, td):nth-child(2):not([colspan]) {
	width: 60%;
}

.yoko-numbered-content-panel__content thead tr > :where(th, td):last-child:not([colspan]),
.yoko-numbered-content-panel__content tbody tr > :where(th, td):last-child:not([colspan]) {
	text-align: center;
	white-space: nowrap;
	width: 32%;
}

.yoko-numbered-content-panel__content tbody tr.section-row > :where(th, td):nth-child(2),
.yoko-numbered-content-panel__content tbody tr:has(> :where(th, td)[colspan]) > :where(th, td)[colspan] {
	text-align: left;
	white-space: normal;
}

.yoko-numbered-content-panel__content tr:last-child :where(th, td) {
	border-bottom-width: 2px;
}

.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content .table-responsive {
	background: #ffffff;
	border: 1px solid var(--yoko-numbered-panel-table-border);
	border-radius: var(--yoko-radius-card, 8px);
	box-shadow: 0 12px 28px rgba(5, 54, 83, 0.08);
	margin-bottom: 22px;
	overflow: auto;
}

.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content table {
	background: #ffffff !important;
	border: 1px solid var(--yoko-numbered-panel-table-border);
	color: var(--yoko-numbered-panel-text) !important;
	margin-bottom: 0;
	-webkit-text-fill-color: var(--yoko-numbered-panel-text) !important;
}

.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content caption,
.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content .table-title {
	background: var(--yoko-numbered-panel-table-head-bg) !important;
	border-color: var(--yoko-numbered-panel-table-border) !important;
	color: var(--yoko-numbered-panel-table-head-text) !important;
	-webkit-text-fill-color: var(--yoko-numbered-panel-table-head-text) !important;
}

.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content .table-title p {
	color: var(--yoko-numbered-panel-table-head-text) !important;
	-webkit-text-fill-color: var(--yoko-numbered-panel-table-head-text) !important;
}

.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content thead th,
.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content thead td {
	background: var(--yoko-numbered-panel-table-head-bg) !important;
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--yoko-numbered-panel-table-head-text) !important;
	-webkit-text-fill-color: var(--yoko-numbered-panel-table-head-text) !important;
}

.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content tbody tr:not(.section-row):nth-child(even) > :where(th, td) {
	background: #fffafa;
}

.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content :where(th, td) {
	border-color: var(--yoko-numbered-panel-table-border);
}

.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content tbody th,
.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content tbody :where(th, td)[colspan],
.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content tbody tr.section-row > :where(th, td),
.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content tbody tr:has(> :where(th, td)[colspan]) > :where(th, td) {
	background: var(--yoko-numbered-panel-table-section-bg) !important;
	color: var(--yoko-color-primary) !important;
	font-weight: 800;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content tbody tr:not(.section-row) > :where(th, td):first-child:not([colspan]),
.yoko-numbered-content-panel--cost-table .yoko-numbered-content-panel__content tbody tr:not(.section-row) > :where(th, td):last-child:not([colspan]) {
	color: #111827 !important;
	font-weight: 800;
	-webkit-text-fill-color: #111827 !important;
}

@media (max-width: 849px) {
	.yoko-numbered-content-panel {
		margin: 0 0 18px;
		padding: 22px 16px 24px;
	}

	.yoko-numbered-content-panel__header {
		gap: 12px;
		margin-bottom: 20px;
	}

	.yoko-numbered-content-panel__number {
		font-size: 46px;
	}

	.yoko-numbered-content-panel__title {
		font-size: 19px;
	}

	.yoko-numbered-content-panel__content {
		font-size: 14px;
		line-height: 1.65;
	}

	.yoko-numbered-content-panel__content table {
		font-size: 13px;
		min-width: 700px;
	}

	.yoko-numbered-content-panel__content caption {
		font-size: 13px;
		padding: 9px 10px;
	}

	.yoko-numbered-content-panel__content :where(th, td) {
		padding: 9px 10px;
	}

	.yoko-numbered-content-panel__content > :where(a.button, button.button) {
		max-width: 100%;
		padding-left: 18px;
		padding-right: 18px;
		width: fit-content;
	}
}

@media (max-width: 549px) {
	.yoko-numbered-content-panel {
		padding-left: 14px;
		padding-right: 14px;
	}

	.yoko-numbered-content-panel__number {
		font-size: 42px;
	}

	.yoko-numbered-content-panel__title {
		font-size: 18px;
	}

	.yoko-numbered-content-panel__content table {
		min-width: 660px;
	}

	.yoko-numbered-content-panel__content > :where(a.button, button.button) {
		font-size: 13px;
		line-height: 1.28;
		min-height: 42px;
		width: 100%;
	}

	.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) {
		padding: 16px 14px;
	}

	.yoko-numbered-content-panel__content > :where(a.button, button.button) + :where(.elementor-element, .text, .ux-html, .wp-block-group) li {
		font-size: 14px;
		line-height: 1.62;
		padding-left: 22px;
	}
}

.yoko-cost-table {
	--yoko-cost-table-bg: #F3F4F6;
	--yoko-cost-table-card-x: clamp(18px, 3vw, 36px);
	background: var(--yoko-cost-table-bg);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-body);
	overflow-x: hidden;
	padding: clamp(16px, 2.6vw, 28px) 0 clamp(34px, 5vw, 64px);
	text-align: left;
}

.yoko-cost-table *,
.yoko-cost-table *::before,
.yoko-cost-table *::after {
	box-sizing: border-box;
}

.yoko-cost-table__inner {
	min-width: 0;
	padding-left: clamp(10px, 1.6vw, 18px);
	padding-right: clamp(10px, 1.6vw, 18px);
	width: 100%;
}

.yoko-cost-table__main {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 18px 42px rgba(5, 54, 83, 0.1);
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.yoko-cost-table__header {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: clamp(20px, 2.8vw, 30px) var(--yoko-cost-table-card-x) clamp(16px, 2.2vw, 22px);
}

.yoko-cost-table__heading {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(18px, 1.7vw, 24px);
	font-weight: var(--yoko-font-weight-heading);
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
	overflow-wrap: anywhere;
	text-align: left;
	text-transform: none;
}

.yoko-cost-table__unit {
	color: #8A8F98;
	flex: 0 0 auto;
	font-family: var(--yoko-font-family-meta);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	text-align: right;
	text-transform: uppercase;
}

.yoko-cost-table__table-wrap {
	overflow: visible;
	width: 100%;
}

.yoko-cost-table__table {
	background: #ffffff;
	border: 0;
	border-collapse: collapse;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
	table-layout: fixed;
	width: 100%;
}

.yoko-cost-table__col-number {
	width: 72px;
}

.yoko-cost-table__col-amount {
	width: 190px;
}

.yoko-cost-table-row > :where(th, td) {
	background: #ffffff;
	border: 0;
	border-top: 1px solid var(--yoko-color-border);
	padding: 15px var(--yoko-cost-table-card-x);
	text-align: left;
	text-transform: none !important;
	vertical-align: middle;
}

.yoko-cost-table-row--section > th {
	background: #FFF1F2;
	border-top: 0;
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family-subheading);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	padding-left: var(--yoko-cost-table-card-x);
	padding-right: var(--yoko-cost-table-card-x);
	padding-bottom: 10px;
	padding-top: 10px;
	text-transform: uppercase !important;
}

.yoko-cost-table-row__number {
	color: #878C95;
	font-family: var(--yoko-font-family-code);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
	white-space: nowrap;
}

.yoko-cost-table-row__item {
	color: var(--yoko-color-navy);
	font-weight: 800;
	min-width: 0;
	overflow-wrap: anywhere;
	text-transform: none !important;
}

.yoko-cost-table-row__title {
	color: var(--yoko-color-navy);
	display: block;
	font-family: var(--yoko-font-family-heading);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	text-align: left;
	text-transform: none !important;
}

.yoko-cost-table-row__description {
	color: var(--yoko-color-muted);
	display: block;
	font-family: var(--yoko-font-family-description);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
	margin-top: 3px;
	text-align: left;
	text-transform: none !important;
}

.yoko-cost-table-row__amount {
	color: #14233B;
	font-family: var(--yoko-font-family-code);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	text-align: right;
	white-space: nowrap;
}

.yoko-cost-table-row--summary > :where(th, td) {
	padding-bottom: 14px;
	padding-top: 14px;
}

.yoko-cost-table-row--summary .yoko-cost-table-row__item {
	color: #606874;
	font-family: var(--yoko-font-family-body);
	font-size: 14px;
	font-weight: 600;
	text-transform: none !important;
}

.yoko-cost-table-row--summary .yoko-cost-table-row__amount {
	color: #14233B;
}

.yoko-cost-table__total {
	align-items: center;
	background: #14233B;
	color: #ffffff;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	min-height: clamp(76px, 8vw, 92px);
	padding: clamp(22px, 3vw, 30px) var(--yoko-cost-table-card-x);
}

.yoko-cost-table__total-label {
	color: rgba(255, 255, 255, 0.68);
	font-family: var(--yoko-font-family-subheading);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
	text-transform: uppercase;
}

.yoko-cost-table__total-value {
	color: #ffffff;
	font-family: var(--yoko-font-family-code);
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.12;
	text-align: right;
	white-space: normal;
}

.yoko-cost-table__notes {
	background: #ffffff;
	display: grid;
	gap: 11px;
	list-style: none;
	margin: 0;
	padding: clamp(18px, 2.5vw, 26px) var(--yoko-cost-table-card-x) clamp(20px, 2.8vw, 30px);
}

.yoko-cost-table-note {
	color: #5F6670;
	font-family: var(--yoko-font-family-description);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.62;
	margin: 0;
	padding-left: 22px;
	position: relative;
	text-align: left;
}

.yoko-cost-table-note::before {
	background: var(--yoko-color-primary);
	border-radius: 50%;
	content: "";
	height: 5px;
	left: 4px;
	position: absolute;
	top: 0.75em;
	width: 5px;
}

.yoko-cost-table__fee-grid {
	display: grid;
	gap: clamp(14px, 1.8vw, 22px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(22px, 3.4vw, 34px);
}

.yoko-cost-fee-card {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 12px 28px rgba(5, 54, 83, 0.08);
	color: var(--yoko-color-navy);
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	min-height: 96px;
	min-width: 0;
	padding: 18px clamp(14px, 2vw, 22px);
	text-align: center;
}

.yoko-cost-fee-card__label {
	color: #9499A3;
	font-family: var(--yoko-font-family-subheading);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	text-transform: uppercase;
}

.yoko-cost-fee-card__amount {
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family-code);
	font-size: clamp(19px, 2vw, 24px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.yoko-cost-fee-card--primary {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	box-shadow: 0 16px 34px rgba(236, 32, 40, 0.22);
	color: #ffffff;
}

.yoko-cost-fee-card--primary .yoko-cost-fee-card__label,
.yoko-cost-fee-card--primary .yoko-cost-fee-card__amount {
	color: #ffffff;
}

.yoko-cost-table__fee-note {
	color: #9AA0A9;
	font-family: var(--yoko-font-family-description);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	margin: 12px auto 0;
	max-width: 720px;
	text-align: center;
}

.yoko-cost-table__fee-note p {
	margin: 0;
}

.yoko-cost-table-builder-preview__children {
	border-top: 1px solid var(--yoko-color-border);
	display: grid;
	gap: 0;
}

.yoko-cost-table-child-preview {
	align-items: center;
	background: #ffffff;
	border-bottom: 1px solid var(--yoko-color-border);
	color: var(--yoko-color-text);
	display: grid;
	gap: 8px;
	grid-template-columns: auto auto minmax(0, 1fr) auto;
	min-width: 0;
	padding: 10px clamp(14px, 2vw, 22px);
	text-align: left;
}

.yoko-cost-table-child-preview--section {
	background: #FFF1F2;
}

.yoko-cost-table-child-preview--note {
	background: #ffffff;
	grid-template-columns: auto minmax(0, 1fr);
}

.yoko-cost-table-child-preview__type {
	background: rgba(5, 54, 83, 0.08);
	border-radius: 999px;
	color: var(--yoko-color-navy);
	font-family: var(--yoko-font-family-meta);
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	padding: 5px 7px;
	text-transform: uppercase;
}

.yoko-cost-table-child-preview--section .yoko-cost-table-child-preview__type,
.yoko-cost-table-child-preview--note .yoko-cost-table-child-preview__type {
	background: rgba(236, 32, 40, 0.1);
	color: var(--yoko-color-primary);
}

.yoko-cost-table-child-preview__number {
	color: #8A8F98;
	font-family: var(--yoko-font-family-code);
	font-size: 12px;
	font-weight: 700;
}

.yoko-cost-table-child-preview__title {
	color: var(--yoko-color-navy);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	min-width: 0;
	overflow-wrap: anywhere;
}

.yoko-cost-table-child-preview__title p,
.yoko-cost-table-child-preview__description p {
	margin: 0;
}

.yoko-cost-table-child-preview__description {
	color: var(--yoko-color-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
}

.yoko-cost-table-child-preview__amount {
	color: #14233B;
	font-family: var(--yoko-font-family-code);
	font-size: 13px;
	font-weight: 900;
	text-align: right;
	white-space: nowrap;
}

@media (max-width: 849px) {
	.yoko-cost-table {
		--yoko-cost-table-card-x: 18px;
	}

	.yoko-cost-table__col-number {
		width: 58px;
	}

	.yoko-cost-table__col-amount {
		width: 170px;
	}

	.yoko-cost-table-row > :where(th, td) {
		padding-left: var(--yoko-cost-table-card-x);
		padding-right: var(--yoko-cost-table-card-x);
	}

	.yoko-cost-table__total {
		padding-left: var(--yoko-cost-table-card-x);
		padding-right: var(--yoko-cost-table-card-x);
	}

	.yoko-cost-table__notes {
		padding-left: var(--yoko-cost-table-card-x);
		padding-right: var(--yoko-cost-table-card-x);
	}

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

@media (max-width: 549px) {
	.yoko-cost-table {
		--yoko-cost-table-card-x: 16px;
		padding: 18px 0 42px;
	}

	.yoko-cost-table__inner {
		padding-left: 10px;
		padding-right: 10px;
	}

	.yoko-cost-table__header {
		align-items: start;
		display: grid;
		gap: 8px;
		padding: 20px var(--yoko-cost-table-card-x) 16px;
	}

	.yoko-cost-table__unit {
		text-align: left;
	}

	.yoko-cost-table__table,
	.yoko-cost-table__table tbody,
	.yoko-cost-table-row,
	.yoko-cost-table-row > :where(th, td) {
		display: block;
		width: 100%;
	}

	.yoko-cost-table__table colgroup {
		display: none;
	}

	.yoko-cost-table-row {
		border-top: 1px solid var(--yoko-color-border);
		display: grid;
		gap: 4px 12px;
		grid-template-columns: 34px minmax(0, 1fr);
		padding: 14px var(--yoko-cost-table-card-x);
	}

	.yoko-cost-table-row > :where(th, td) {
		border: 0;
		padding: 0;
	}

	.yoko-cost-table-row--section {
		background: #FFF1F2;
		border-top: 0;
		display: block;
		padding: 10px var(--yoko-cost-table-card-x);
	}

	.yoko-cost-table-row--section > th {
		background: transparent;
	}

	.yoko-cost-table-row__number {
		grid-column: 1;
		grid-row: 1 / span 2;
		padding-top: 2px;
	}

	.yoko-cost-table-row__item,
	.yoko-cost-table-row__amount {
		grid-column: 2;
	}

	.yoko-cost-table-row__amount {
		font-size: 13px;
		margin-top: 4px;
		text-align: left;
		white-space: normal;
	}

	.yoko-cost-table-row--summary {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.yoko-cost-table-row--summary .yoko-cost-table-row__number {
		display: none;
	}

	.yoko-cost-table-row--summary .yoko-cost-table-row__item,
	.yoko-cost-table-row--summary .yoko-cost-table-row__amount {
		grid-column: 1;
	}

	.yoko-cost-table__total {
		align-items: start;
		display: grid;
		gap: 10px;
		justify-content: stretch;
		min-height: 0;
		padding: 20px var(--yoko-cost-table-card-x);
	}

	.yoko-cost-table__total-value {
		font-size: 25px;
		text-align: left;
	}

	.yoko-cost-table__notes {
		padding: 18px var(--yoko-cost-table-card-x) 20px;
	}

	.yoko-cost-table-note {
		font-size: 12px;
		line-height: 1.58;
	}

	.yoko-cost-table__fee-grid {
		grid-template-columns: 1fr;
		margin-top: 18px;
	}

	.yoko-cost-fee-card {
		min-height: 84px;
	}

	.yoko-cost-table-builder-preview__children {
		display: grid;
	}

	.yoko-cost-table-child-preview {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.yoko-cost-table-child-preview__number,
	.yoko-cost-table-child-preview__amount,
	.yoko-cost-table-child-preview__description {
		grid-column: 2;
	}

	.yoko-cost-table-child-preview__amount {
		text-align: left;
		white-space: normal;
	}
}

.yoko-scholarship-showcase {
	--yoko-scholarship-showcase-bg: #ffffff;
	--yoko-scholarship-showcase-accent: var(--yoko-color-primary);
	--yoko-scholarship-showcase-number-bg: var(--yoko-color-primary);
	--yoko-scholarship-showcase-number-text: #ffffff;
	--yoko-scholarship-showcase-title: var(--yoko-color-heading);
	--yoko-scholarship-showcase-text: #1F2937;
	--yoko-scholarship-showcase-divider: var(--yoko-color-primary);
	--yoko-scholarship-showcase-media: 40%;
	background: var(--yoko-scholarship-showcase-bg);
	color: var(--yoko-scholarship-showcase-text);
	font-family: var(--yoko-font-family);
	margin: 0 0 clamp(22px, 3vw, 34px);
	padding: clamp(10px, 1.8vw, 18px) 0;
	text-align: left;
	width: 100%;
}

.col-inner > .yoko-scholarship-showcase:last-child {
	margin-bottom: 0;
}

.yoko-scholarship-showcase *,
.yoko-scholarship-showcase *::before,
.yoko-scholarship-showcase *::after {
	box-sizing: border-box;
}

.yoko-scholarship-showcase__header {
	align-items: center;
	display: flex;
	gap: clamp(12px, 1.8vw, 20px);
	margin: 0 0 clamp(18px, 2.8vw, 30px);
	text-align: left;
}

.yoko-scholarship-showcase__number {
	align-items: center;
	background: var(--yoko-scholarship-showcase-number-bg);
	border-radius: var(--yoko-radius-card, 8px);
	color: var(--yoko-scholarship-showcase-number-text);
	display: inline-flex;
	flex: 0 0 auto;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(22px, 2.1vw, 28px);
	font-weight: 800;
	height: clamp(56px, 5vw, 64px);
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	min-width: clamp(56px, 5vw, 64px);
	padding: 0 10px;
	text-align: center;
	-webkit-text-fill-color: var(--yoko-scholarship-showcase-number-text);
}

.yoko-scholarship-showcase__divider {
	background: var(--yoko-scholarship-showcase-divider);
	display: none;
	flex: 0 0 2px;
	height: clamp(44px, 5vw, 62px);
}

.yoko-scholarship-showcase__title {
	color: var(--yoko-scholarship-showcase-title);
	flex: 1 1 auto;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(19px, 2vw, 26px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.26;
	margin: 0;
	overflow-wrap: anywhere;
	text-align: left;
	text-transform: uppercase;
	text-wrap: balance;
	-webkit-text-fill-color: var(--yoko-scholarship-showcase-title);
}

.yoko-scholarship-showcase__body {
	align-items: center;
	display: grid;
	gap: clamp(20px, 3vw, 36px);
}

.yoko-scholarship-showcase--layout-media_left.yoko-scholarship-showcase--has-media .yoko-scholarship-showcase__body,
.yoko-scholarship-showcase--layout-media_right.yoko-scholarship-showcase--has-media .yoko-scholarship-showcase__body {
	grid-template-columns: minmax(220px, var(--yoko-scholarship-showcase-media)) minmax(0, 1fr);
}

.yoko-scholarship-showcase--layout-media_right .yoko-scholarship-showcase__media {
	order: 2;
}

.yoko-scholarship-showcase--layout-media_right .yoko-scholarship-showcase__content {
	order: 1;
}

.yoko-scholarship-showcase--layout-media_top .yoko-scholarship-showcase__body,
.yoko-scholarship-showcase--layout-media_bottom .yoko-scholarship-showcase__body,
.yoko-scholarship-showcase--layout-content_only .yoko-scholarship-showcase__body,
.yoko-scholarship-showcase--no-media .yoko-scholarship-showcase__body {
	grid-template-columns: minmax(0, 1fr);
}

.yoko-scholarship-showcase--layout-media_top .yoko-scholarship-showcase__media {
	order: 1;
}

.yoko-scholarship-showcase--layout-media_top .yoko-scholarship-showcase__content {
	order: 2;
}

.yoko-scholarship-showcase--layout-media_bottom .yoko-scholarship-showcase__content {
	order: 1;
}

.yoko-scholarship-showcase--layout-media_bottom .yoko-scholarship-showcase__media {
	order: 2;
}

.yoko-scholarship-showcase__media {
	align-self: center;
	background: #ffffff;
	border: 0;
	display: flex;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.yoko-scholarship-showcase__media--ratio-wide {
	aspect-ratio: 21 / 9;
}

.yoko-scholarship-showcase__media--ratio-landscape {
	aspect-ratio: 16 / 10;
}

.yoko-scholarship-showcase__media--ratio-standard {
	aspect-ratio: 4 / 3;
}

.yoko-scholarship-showcase__media--ratio-square {
	aspect-ratio: 1 / 1;
}

.yoko-scholarship-showcase__image,
.yoko-scholarship-showcase__media img {
	display: block;
	height: auto;
	max-height: 320px;
	max-width: 100%;
	width: auto;
}

.yoko-scholarship-showcase__media:not(.yoko-scholarship-showcase__media--ratio-natural) .yoko-scholarship-showcase__image,
.yoko-scholarship-showcase__media:not(.yoko-scholarship-showcase__media--ratio-natural) img {
	height: 100%;
	width: 100%;
}

.yoko-scholarship-showcase__media--fit-contain .yoko-scholarship-showcase__image,
.yoko-scholarship-showcase__media--fit-contain img {
	object-fit: contain;
}

.yoko-scholarship-showcase__media--fit-cover .yoko-scholarship-showcase__image,
.yoko-scholarship-showcase__media--fit-cover img {
	object-fit: cover;
}

.yoko-scholarship-showcase__media-placeholder {
	align-items: center;
	aspect-ratio: 16 / 9;
	background: #F3F7FA;
	border: 1px dashed #B7C7D0;
	color: #6B7A86;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: center;
	min-height: 140px;
	width: 100%;
}

.yoko-scholarship-showcase__content {
	color: var(--yoko-scholarship-showcase-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.72;
	min-width: 0;
	overflow-wrap: anywhere;
	text-align: left;
}

.yoko-scholarship-showcase__content > :first-child {
	margin-top: 0;
}

.yoko-scholarship-showcase__content > :last-child {
	margin-bottom: 0;
}

.yoko-scholarship-showcase__content :where(.text, .ux-html, p, li, dd, dt, strong, b, em, i, small, span) {
	color: var(--yoko-scholarship-showcase-text) !important;
	opacity: 1 !important;
	-webkit-text-fill-color: var(--yoko-scholarship-showcase-text) !important;
}

.yoko-scholarship-showcase__content :where(.text-left, .has-text-align-left, .alignleft, .align-left, .elementor-align-left) {
	text-align: left !important;
}

.yoko-scholarship-showcase__content :where(.text-center, .has-text-align-center, .aligncenter, .align-center, .elementor-align-center) {
	text-align: center !important;
}

.yoko-scholarship-showcase__content :where(.text-right, .has-text-align-right, .alignright, .align-right, .elementor-align-right) {
	text-align: right !important;
}

.yoko-scholarship-showcase__content :where(.text-left, .text-center, .text-right, .has-text-align-left, .has-text-align-center, .has-text-align-right, .alignleft, .aligncenter, .alignright, .align-left, .align-center, .align-right, .elementor-align-left, .elementor-align-center, .elementor-align-right) :where(h1, h2, h3, h4, h5, h6, p, div, span, a, strong, b, em, i, small) {
	text-align: inherit !important;
}

.yoko-scholarship-showcase__content p {
	margin: 0 0 16px;
}

.yoko-scholarship-showcase__content :where(h1, h2, h3, h4, h5, h6) {
	color: var(--yoko-scholarship-showcase-title) !important;
	font-family: var(--yoko-font-family-heading);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0 0 12px;
	text-align: left;
	-webkit-text-fill-color: var(--yoko-scholarship-showcase-title) !important;
}

.yoko-scholarship-showcase__content a:not(.button):not(.elementor-button):not(.wp-element-button):not(.wp-block-button__link) {
	color: var(--yoko-color-primary) !important;
	font-weight: 700;
	text-decoration: none;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

.yoko-scholarship-showcase__content a:not(.button):not(.elementor-button):not(.wp-element-button):not(.wp-block-button__link):hover,
.yoko-scholarship-showcase__content a:not(.button):not(.elementor-button):not(.wp-element-button):not(.wp-block-button__link):focus {
	color: var(--yoko-color-primary-dark) !important;
	text-decoration: underline;
	-webkit-text-fill-color: var(--yoko-color-primary-dark) !important;
}

.yoko-scholarship-showcase__content :where(ul, ol) {
	display: grid;
	gap: 9px;
	margin: 0 0 18px;
	padding: 0;
}

.yoko-scholarship-showcase__content ul {
	list-style: none;
}

.yoko-scholarship-showcase__content ul > li {
	padding-left: 24px;
	position: relative;
}

.yoko-scholarship-showcase__content ul > li::before {
	background: var(--yoko-scholarship-showcase-accent);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(233, 119, 42, 0.12);
	content: "";
	height: 7px;
	left: 4px;
	position: absolute;
	top: 0.78em;
	width: 7px;
}

.yoko-scholarship-showcase__content ol {
	counter-reset: yoko-scholarship-showcase-list;
	list-style: none;
}

.yoko-scholarship-showcase__content ol > li {
	counter-increment: yoko-scholarship-showcase-list;
	padding-left: 34px;
	position: relative;
}

.yoko-scholarship-showcase__content ol > li::before {
	align-items: center;
	background: var(--yoko-scholarship-showcase-title);
	border-radius: 50%;
	color: #ffffff;
	content: counter(yoko-scholarship-showcase-list);
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	height: 22px;
	justify-content: center;
	left: 0;
	line-height: 1;
	position: absolute;
	top: 0.18em;
	width: 22px;
	-webkit-text-fill-color: #ffffff;
}

.yoko-scholarship-showcase__content :where(figure, img, .img, .img-inner, .ux-image) {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

.yoko-scholarship-showcase__content :where(img, .img-inner img) {
	border-radius: 8px;
	display: block;
	height: auto;
}

.yoko-scholarship-showcase__content :where(img.aligncenter, figure.aligncenter, .aligncenter img) {
	margin-left: auto;
	margin-right: auto;
}

.yoko-scholarship-showcase__content :where(img.alignright, figure.alignright, .alignright img) {
	float: none;
	margin-left: auto;
	margin-right: 0;
}

.yoko-scholarship-showcase__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) {
	align-items: center !important;
	color: #ffffff !important;
	display: flex !important;
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-button, 14px);
	font-weight: 800;
	float: none !important;
	justify-content: center !important;
	line-height: 1.2;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: min(100%, 520px);
	min-height: 42px;
	text-align: center !important;
	text-decoration: none !important;
	white-space: normal;
	width: fit-content !important;
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-scholarship-showcase__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):hover,
.yoko-scholarship-showcase__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):focus {
	color: #ffffff !important;
	text-decoration: none !important;
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-scholarship-showcase__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link) {
	color: var(--yoko-scholarship-showcase-title) !important;
	-webkit-text-fill-color: var(--yoko-scholarship-showcase-title) !important;
}

.yoko-scholarship-showcase__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) :where(span, i, strong, b, em) {
	color: currentColor !important;
	text-align: inherit !important;
	-webkit-text-fill-color: currentColor !important;
}

.yoko-scholarship-showcase__content > :where(a.button, button.button) {
	border-radius: var(--yoko-radius-button) !important;
	display: flex !important;
	margin: clamp(18px, 2.4vw, 26px) auto 0 !important;
	max-width: min(100%, 520px);
	min-height: 44px;
	padding: 0 24px;
	width: fit-content !important;
}

.yoko-scholarship-showcase__content :where(p, .text, .text-inner, .ux-html, .button-wrapper, .elementor-button-wrapper, .wp-block-button):has(:where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link)),
.yoko-scholarship-card__content :where(p, .text, .text-inner, .ux-html, .button-wrapper, .elementor-button-wrapper, .wp-block-button):has(:where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link)) {
	display: block !important;
	text-align: center !important;
}

.yoko-scholarship-showcase__content :where(.text-center, .has-text-align-center, .aligncenter, .align-center, .elementor-align-center, .wp-block-button.aligncenter, .wp-block-button.align-center) {
	text-align: center !important;
}

.yoko-scholarship-showcase__content > :where(a.button.alignleft, a.button.align-left, button.button.alignleft, button.button.align-left),
.yoko-scholarship-showcase__content :where(.text-left, .has-text-align-left, .alignleft, .align-left, .elementor-align-left) > :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-scholarship-showcase__content :where(a.button.alignleft, a.button.align-left, button.button.alignleft, button.button.align-left, .wp-block-button.alignleft, .wp-block-button.align-left, .elementor-align-left .elementor-button) {
	display: flex !important;
	float: none !important;
	margin-left: 0 !important;
	margin-right: auto !important;
	max-width: 100%;
	width: fit-content !important;
}

.yoko-scholarship-showcase__content > :where(a.button.aligncenter, a.button.align-center, button.button.aligncenter, button.button.align-center),
.yoko-scholarship-showcase__content :where(.text-center, .has-text-align-center, .aligncenter, .align-center, .elementor-align-center) > :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-scholarship-showcase__content :where(a.button.aligncenter, a.button.align-center, button.button.aligncenter, button.button.align-center, .wp-block-button.aligncenter, .wp-block-button.align-center, .elementor-align-center .elementor-button) {
	display: flex !important;
	float: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 100%;
	width: fit-content !important;
}

.yoko-scholarship-showcase__content > :where(a.button.alignright, a.button.align-right, button.button.alignright, button.button.align-right),
.yoko-scholarship-showcase__content :where(.text-right, .has-text-align-right, .alignright, .align-right, .elementor-align-right) > :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-scholarship-showcase__content :where(a.button.alignright, a.button.align-right, button.button.alignright, button.button.align-right, .wp-block-button.alignright, .wp-block-button.align-right, .elementor-align-right .elementor-button) {
	display: flex !important;
	float: none !important;
	margin-left: auto !important;
	margin-right: 0 !important;
	max-width: 100%;
	width: fit-content !important;
}

.yoko-scholarship-showcase__content .table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
}

.yoko-scholarship-showcase__content table {
	background: #ffffff;
	border: 0;
	border-collapse: collapse;
	color: var(--yoko-scholarship-showcase-text) !important;
	font-size: 14px;
	line-height: 1.42;
	margin: 0 0 20px;
	min-width: 680px;
	table-layout: auto;
	width: 100%;
	-webkit-text-fill-color: var(--yoko-scholarship-showcase-text) !important;
}

.yoko-scholarship-showcase__content :where(th, td) {
	border: 1px solid #C8D5DC;
	color: var(--yoko-scholarship-showcase-text) !important;
	padding: 10px 13px;
	vertical-align: middle;
	-webkit-text-fill-color: var(--yoko-scholarship-showcase-text) !important;
}

.yoko-scholarship-showcase__content thead :where(th, td) {
	background: var(--yoko-scholarship-showcase-title);
	color: #ffffff !important;
	font-family: var(--yoko-font-family-heading);
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-scholarship-showcase__content tbody :where(th, td)[colspan],
.yoko-scholarship-showcase__content tbody tr:has(> :where(th, td)[colspan]) > :where(th, td) {
	background: color-mix(in srgb, var(--yoko-scholarship-showcase-title) 72%, #ffffff);
	color: #ffffff !important;
	font-weight: 800;
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-scholarship-card {
	--yoko-scholarship-card-bg: #ffffff;
	--yoko-scholarship-card-accent: #E9772A;
	--yoko-scholarship-card-title: #ffffff;
	--yoko-scholarship-card-text: #1F2937;
	--yoko-scholarship-card-border: #E9772A;
	background: var(--yoko-scholarship-card-bg);
	border: 2px solid var(--yoko-scholarship-card-border);
	border-radius: 8px;
	color: var(--yoko-scholarship-card-text);
	font-family: var(--yoko-font-family);
	margin: clamp(28px, 3.6vw, 42px) 0 0;
	max-width: none;
	overflow: visible;
	position: relative;
	text-align: left;
	width: 100%;
}

.yoko-scholarship-showcase__content > .yoko-scholarship-card:first-child {
	margin-top: clamp(18px, 2.4vw, 26px);
}

.yoko-scholarship-card + .yoko-scholarship-card {
	margin-top: clamp(38px, 4.4vw, 52px);
}

.yoko-scholarship-card *,
.yoko-scholarship-card *::before,
.yoko-scholarship-card *::after {
	box-sizing: border-box;
}

.yoko-scholarship-card--tabbed {
	padding-top: clamp(20px, 2.8vw, 30px);
}

.yoko-scholarship-card__tab {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.yoko-scholarship-card--tabbed .yoko-scholarship-card__tab {
	left: 50%;
	position: absolute;
	top: 0;
	transform: translate(-50%, -50%);
	width: min(88%, 420px);
}

.yoko-scholarship-card__title {
	background: var(--yoko-scholarship-card-accent);
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(233, 119, 42, 0.2);
	color: var(--yoko-scholarship-card-title) !important;
	display: inline-flex;
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(16px, 1.6vw, 20px);
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
	min-height: 42px;
	padding: 11px 28px;
	text-align: center;
	text-transform: none;
	width: 100%;
	-webkit-text-fill-color: var(--yoko-scholarship-card-title) !important;
}

.yoko-scholarship-card--simple {
	padding-top: 0;
}

.yoko-scholarship-card--simple .yoko-scholarship-card__tab {
	background: var(--yoko-scholarship-card-accent);
	border-radius: 6px 6px 0 0;
	justify-content: flex-start;
	padding: 0;
}

.yoko-scholarship-card--simple .yoko-scholarship-card__title {
	border-radius: 6px 6px 0 0;
	box-shadow: none;
	justify-content: flex-start;
	padding-left: clamp(16px, 2vw, 22px);
	text-align: left;
}

.yoko-scholarship-card__media {
	background: #F6F8FA;
	display: block;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.yoko-scholarship-card--tabbed .yoko-scholarship-card__media {
	border-radius: 5px 5px 0 0;
}

.yoko-scholarship-card--simple .yoko-scholarship-card__media {
	border-radius: 0;
}

.yoko-scholarship-card__media--ratio-wide {
	aspect-ratio: 21 / 9;
}

.yoko-scholarship-card__media--ratio-landscape {
	aspect-ratio: 16 / 10;
}

.yoko-scholarship-card__media--ratio-standard {
	aspect-ratio: 4 / 3;
}

.yoko-scholarship-card__media--ratio-square {
	aspect-ratio: 1 / 1;
}

.yoko-scholarship-card__image,
.yoko-scholarship-card__media img {
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
}

.yoko-scholarship-card__media:not(.yoko-scholarship-card__media--ratio-natural) .yoko-scholarship-card__image,
.yoko-scholarship-card__media:not(.yoko-scholarship-card__media--ratio-natural) img {
	height: 100%;
	object-position: center;
	width: 100%;
}

.yoko-scholarship-card__media--fit-cover .yoko-scholarship-card__image,
.yoko-scholarship-card__media--fit-cover img {
	object-fit: cover;
}

.yoko-scholarship-card__media--fit-contain .yoko-scholarship-card__image,
.yoko-scholarship-card__media--fit-contain img {
	object-fit: contain;
}

.yoko-scholarship-card__content {
	color: var(--yoko-scholarship-card-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.72;
	padding: clamp(16px, 2.2vw, 24px);
	text-align: left;
}

.yoko-scholarship-card--no-media .yoko-scholarship-card__content {
	padding-top: clamp(22px, 2.8vw, 30px);
}

.yoko-scholarship-card__content > :first-child {
	margin-top: 0;
}

.yoko-scholarship-card__content > :last-child {
	margin-bottom: 0;
}

.yoko-scholarship-card__content > :where(.text, .ux-html, .img, .ux-image, .button, .row, .row-small, .row-large) {
	margin-bottom: 16px;
}

.yoko-scholarship-card__content > :where(.text, .ux-html, .img, .ux-image, .button, .row, .row-small, .row-large):last-child {
	margin-bottom: 0;
}

.yoko-scholarship-card__content :where(.text-inner, .ux-html) > :first-child {
	margin-top: 0;
}

.yoko-scholarship-card__content :where(.text-inner, .ux-html) > :last-child {
	margin-bottom: 0;
}

.yoko-scholarship-card__content :where(.text, .ux-html, p, li, dd, dt, strong, b, em, i, small, span) {
	color: var(--yoko-scholarship-card-text) !important;
	opacity: 1 !important;
	-webkit-text-fill-color: var(--yoko-scholarship-card-text) !important;
}

.yoko-scholarship-card__content p {
	margin: 0 0 14px;
}

.yoko-scholarship-card__content :where(ul, ol) {
	display: grid;
	gap: 8px;
	margin: 0 0 14px;
	padding-left: 1.25em;
}

.yoko-scholarship-card__content :where(figure, img, .img, .img-inner, .ux-image) {
	max-width: 100%;
}

.yoko-scholarship-card__content :where(figure, .img, .ux-image) {
	margin-left: auto;
	margin-right: auto;
}

.yoko-scholarship-card__content :where(img, .img-inner img) {
	border-radius: 8px;
	display: block;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.yoko-scholarship-card__content :where(.img-inner) {
	border-radius: 8px;
	overflow: hidden;
}

.yoko-scholarship-card__content :where(.aligncenter, .text-center, .has-text-align-center) :where(figure, .img, .ux-image),
.yoko-scholarship-card__content :where(figure.aligncenter, img.aligncenter, .img.aligncenter, .ux-image.aligncenter) {
	margin-left: auto;
	margin-right: auto;
}

.yoko-scholarship-card__content :where(.alignright, .text-right, .has-text-align-right) :where(figure, .img, .ux-image),
.yoko-scholarship-card__content :where(figure.alignright, img.alignright, .img.alignright, .ux-image.alignright) {
	float: none;
	margin-left: auto;
	margin-right: 0;
}

.yoko-scholarship-card__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) {
	align-items: center !important;
	color: #ffffff !important;
	display: flex !important;
	float: none !important;
	font-weight: 800;
	justify-content: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: min(100%, 520px);
	text-align: center !important;
	text-decoration: none !important;
	width: fit-content !important;
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-scholarship-card__content :where(.text-center, .has-text-align-center, .aligncenter, .align-center, .elementor-align-center, .wp-block-button.aligncenter, .wp-block-button.align-center) {
	text-align: center !important;
}

.yoko-scholarship-card__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) :where(span, i, strong, b, em) {
	color: currentColor !important;
	text-align: inherit !important;
	-webkit-text-fill-color: currentColor !important;
}

.yoko-scholarship-card__content :where(a.button.alignleft, a.button.align-left, button.button.alignleft, button.button.align-left, .wp-block-button.alignleft, .wp-block-button.align-left, .elementor-align-left .elementor-button) {
	display: flex !important;
	float: none !important;
	margin-left: 0 !important;
	margin-right: auto !important;
	width: fit-content !important;
}

.yoko-scholarship-card__content :where(a.button.aligncenter, a.button.align-center, button.button.aligncenter, button.button.align-center, .wp-block-button.aligncenter, .wp-block-button.align-center, .elementor-align-center .elementor-button) {
	display: flex !important;
	float: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
	width: fit-content !important;
}

.yoko-scholarship-card__content :where(a.button.alignright, a.button.align-right, button.button.alignright, button.button.align-right, .wp-block-button.alignright, .wp-block-button.align-right, .elementor-align-right .elementor-button) {
	display: flex !important;
	float: none !important;
	margin-left: auto !important;
	margin-right: 0 !important;
	width: fit-content !important;
}

@media (max-width: 849px) {
	.yoko-scholarship-showcase {
		margin-bottom: 24px;
		padding: 8px 0;
	}

	.yoko-scholarship-showcase__header {
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 20px;
	}

	.yoko-scholarship-showcase__number {
		font-size: 22px;
		height: 56px;
		min-width: 56px;
	}

	.yoko-scholarship-showcase__divider {
		height: 46px;
		margin-top: 1px;
	}

	.yoko-scholarship-showcase__title {
		font-size: 20px;
		line-height: 1.3;
	}

	.yoko-scholarship-showcase--layout-media_left.yoko-scholarship-showcase--has-media .yoko-scholarship-showcase__body,
	.yoko-scholarship-showcase--layout-media_right.yoko-scholarship-showcase--has-media .yoko-scholarship-showcase__body {
		grid-template-columns: minmax(0, 1fr);
	}

	.yoko-scholarship-showcase__body {
		gap: 18px;
	}

	.yoko-scholarship-showcase__content {
		font-size: 14px;
		line-height: 1.68;
	}

	.yoko-scholarship-showcase__content table {
		font-size: 13px;
		min-width: 640px;
	}

	.yoko-scholarship-card {
		border-radius: 7px;
		margin-top: 34px;
	}

	.yoko-scholarship-card__title {
		font-size: 16px;
		min-height: 40px;
		padding: 10px 20px;
	}

	.yoko-scholarship-card__content {
		font-size: 14px;
		line-height: 1.66;
		padding: 16px;
	}
}

@media (max-width: 549px) {
	.yoko-scholarship-showcase__header {
		gap: 10px;
	}

	.yoko-scholarship-showcase__number {
		font-size: 20px;
		height: 52px;
		min-width: 52px;
	}

	.yoko-scholarship-showcase__divider {
		flex-basis: 2px;
		height: 40px;
	}

	.yoko-scholarship-showcase__title {
		font-size: 18px;
	}

	.yoko-scholarship-showcase__media--ratio-wide {
		aspect-ratio: 16 / 10;
	}

	.yoko-scholarship-showcase__content :where(ul, ol) {
		gap: 8px;
	}

	.yoko-scholarship-showcase__content > :where(a.button, button.button) {
		max-width: 100%;
		padding-left: 18px;
		padding-right: 18px;
		width: 100%;
	}

	.yoko-scholarship-showcase__content table {
		min-width: 600px;
	}

	.yoko-scholarship-card {
		margin-top: 32px;
	}

	.yoko-scholarship-card--tabbed {
		padding-top: 22px;
	}

	.yoko-scholarship-card--tabbed .yoko-scholarship-card__tab {
		width: calc(100% - 26px);
	}

	.yoko-scholarship-card__title {
		font-size: 15px;
		line-height: 1.25;
		padding-left: 16px;
		padding-right: 16px;
	}

	.yoko-scholarship-card__media--ratio-wide {
		aspect-ratio: 16 / 10;
	}

	.yoko-scholarship-card__content {
		padding: 15px 14px 16px;
	}
}

/* YOKO intro media element. */
.yoko-intro-media {
	background: var(--yoko-color-surface);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-body);
	padding: 58px 0;
}

.yoko-intro-media *,
.yoko-intro-media *::before,
.yoko-intro-media *::after {
	box-sizing: border-box;
}

.yoko-intro-media__inner {
	margin: 0 auto;
	width: 100%;
}

.yoko-intro-media__layout {
	align-items: start;
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.9fr);
}

.yoko-intro-media__content {
	min-width: 0;
	padding-top: 4px;
}

.yoko-intro-media__heading {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: 34px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 22px;
	max-width: 680px;
	text-transform: uppercase;
	white-space: pre-line;
}

.yoko-intro-media__kicker {
	color: var(--yoko-color-text);
	font-size: 16px;
	font-style: italic;
	font-weight: 800;
	line-height: 1.5;
	margin: 0 0 14px;
}

.yoko-intro-media__body,
.yoko-intro-media__bottom {
	color: var(--yoko-color-text);
	font-size: 15px;
	line-height: 1.82;
}

.yoko-intro-media__body p,
.yoko-intro-media__bottom p {
	margin: 0;
}

.yoko-intro-media__body p + p,
.yoko-intro-media__bottom p + p {
	margin-top: 12px;
}

.yoko-intro-media__media {
	min-width: 0;
	width: 100%;
}

.yoko-intro-media__video {
	aspect-ratio: 16 / 9;
	background: #111827;
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 18px 34px rgba(5, 54, 83, 0.14);
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.yoko-intro-media__video:hover,
.yoko-intro-media__video:focus {
	text-decoration: none;
}

.yoko-intro-media__image,
.yoko-intro-media__placeholder {
	display: block;
	height: 100%;
	width: 100%;
}

.yoko-intro-media__image {
	object-fit: cover;
}

.yoko-intro-media__placeholder {
	align-items: center;
	background: linear-gradient(135deg, #EAF0F6 0%, #FFFFFF 100%);
	color: var(--yoko-color-heading);
	display: flex;
	font-size: 18px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.4;
	padding: 24px;
	text-align: center;
}

.yoko-intro-media__shade {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.48) 100%);
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.yoko-intro-media__video-label {
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	left: 14px;
	letter-spacing: 0;
	line-height: 1.35;
	max-width: calc(100% - 28px);
	pointer-events: none;
	position: absolute;
	right: 14px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
	top: 12px;
}

.yoko-intro-media__play {
	align-items: center;
	background: var(--yoko-color-primary);
	border-radius: var(--yoko-radius-button);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
	display: flex;
	height: 64px;
	justify-content: center;
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
}

.yoko-intro-media__play span {
	border-bottom: 13px solid transparent;
	border-left: 20px solid #ffffff;
	border-top: 13px solid transparent;
	display: block;
	height: 0;
	margin-left: 5px;
	width: 0;
}

.yoko-intro-media__youtube-badge {
	align-items: center;
	background: rgba(0, 0, 0, 0.78);
	border-radius: 3px;
	bottom: 12px;
	color: #ffffff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 7px;
	height: 26px;
	letter-spacing: 0;
	line-height: 1;
	padding: 0 9px;
	pointer-events: none;
	position: absolute;
	right: 12px;
}

.yoko-intro-media__youtube-badge::before {
	background: var(--yoko-color-primary);
	border-radius: 2px;
	content: "";
	display: block;
	height: 11px;
	width: 16px;
}

.yoko-intro-media__bottom {
	margin-top: 28px;
}

.yoko-intro-media__actions {
	align-items: center;
	display: flex;
	margin-top: 24px;
	width: 100%;
}

.yoko-intro-media__actions--left {
	justify-content: flex-start;
}

.yoko-intro-media__actions--center {
	justify-content: center;
}

.yoko-intro-media__actions--right {
	justify-content: flex-end;
}

.yoko-intro-media__actions .yoko-button {
	margin: 0;
}

@media (max-width: 849px) {
	.yoko-intro-media {
		padding: 44px 0;
	}

	.yoko-intro-media__layout {
		gap: 24px;
		grid-template-columns: 1fr;
	}

	.yoko-intro-media__content {
		padding-top: 0;
	}

	.yoko-intro-media__heading {
		font-size: 30px;
		margin-bottom: 18px;
		max-width: none;
	}

	.yoko-intro-media__media {
		margin: 0 auto;
		max-width: 620px;
	}

	.yoko-intro-media__bottom {
		margin-top: 22px;
	}
}

@media (max-width: 549px) {
	.yoko-intro-media {
		padding: 38px 0;
	}

	.yoko-intro-media__heading {
		font-size: 24px;
		line-height: 1.25;
		margin-bottom: 16px;
	}

	.yoko-intro-media__kicker {
		font-size: 15px;
	}

	.yoko-intro-media__body,
	.yoko-intro-media__bottom {
		font-size: 14px;
		line-height: 1.76;
	}

	.yoko-intro-media__play {
		height: 54px;
		width: 54px;
	}

	.yoko-intro-media__play span {
		border-bottom-width: 11px;
		border-left-width: 17px;
		border-top-width: 11px;
	}

	.yoko-intro-media__youtube-badge {
		bottom: 10px;
		font-size: 11px;
		height: 24px;
		right: 10px;
	}

	.yoko-intro-media__actions {
		margin-top: 20px;
	}
}

/* YOKO FAQ element. */
.yoko-faq {
	background: var(--yoko-faq-background, #F3F4F6);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-body);
	padding: var(--yoko-section-spacing) 0;
}

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

.yoko-faq__inner {
	margin: 0 auto;
	width: 100%;
}

.yoko-faq__header {
	margin: 0 auto 30px;
	max-width: 760px;
	text-align: center;
}

.yoko-faq__title {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: var(--yoko-font-size-section-title);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
}

.yoko-faq__intro {
	color: var(--yoko-color-muted);
	font-size: var(--yoko-font-size-section-intro);
	line-height: 1.7;
	margin: 12px auto 0;
	max-width: 660px;
}

.yoko-faq__intro p {
	margin: 0;
}

.yoko-faq__intro p + p {
	margin-top: 10px;
}

.yoko-faq__list {
	display: grid;
	gap: 12px;
	margin: 0 auto;
	max-width: 920px;
	width: 100%;
}

.yoko-faq-item {
	background: var(--yoko-color-surface);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 8px 20px rgba(5, 54, 83, 0.05);
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.yoko-faq-item[open] {
	border-color: rgba(236, 32, 40, 0.24);
	box-shadow: var(--yoko-shadow-card);
}

.yoko-faq-item__summary {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	line-height: 1.45;
	list-style: none;
	margin: 0;
	min-height: 62px;
	padding: 18px 20px;
}

.yoko-faq-item__summary::-webkit-details-marker {
	display: none;
}

.yoko-faq-item__summary:focus-visible {
	outline: 3px solid var(--yoko-button-focus-ring);
	outline-offset: -3px;
}

.yoko-faq-item--no-answer .yoko-faq-item__summary {
	cursor: default;
}

.yoko-faq-item--no-answer .yoko-faq-item__icon {
	display: none;
}

.yoko-faq-item__question {
	color: var(--yoko-color-heading);
	display: block;
	flex: 1 1 auto;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
	min-width: 0;
}

.yoko-faq-item__icon {
	align-items: center;
	background: #FFF4F4;
	border: 1px solid rgba(236, 32, 40, 0.32);
	border-radius: 999px;
	display: inline-flex;
	flex: 0 0 30px;
	height: 30px;
	justify-content: center;
	position: relative;
	width: 30px;
}

.yoko-faq-item__icon::before,
.yoko-faq-item__icon::after {
	background: var(--yoko-color-primary);
	border-radius: 999px;
	content: "";
	display: block;
	height: 2px;
	position: absolute;
	width: 12px;
}

.yoko-faq-item__icon::after {
	transform: rotate(90deg);
	transition: transform 160ms ease, opacity 160ms ease;
}

.yoko-faq-item[open] .yoko-faq-item__icon::after {
	opacity: 0;
	transform: rotate(0deg);
}

.yoko-faq-item__answer {
	border-top: 1px solid var(--yoko-color-border);
	color: var(--yoko-color-muted);
	font-size: 15px;
	line-height: 1.72;
	padding: 0 20px 19px;
}

.yoko-faq-item__answer p {
	margin: 14px 0 0;
}

.yoko-faq-item__answer p + p {
	margin-top: 10px;
}

.yoko-faq-item__answer > :first-child {
	margin-top: 14px;
}

.yoko-faq-item__answer > :last-child {
	margin-bottom: 0;
}

.yoko-faq-item__answer :where(h1, h2, h3, h4, h5, h6) {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(16px, 1.35vw, 20px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.32;
	margin: 18px 0 8px;
}

.yoko-faq-item__answer a {
	color: var(--yoko-color-primary);
	font-weight: 800;
	text-decoration: none;
}

.yoko-faq-item__answer a:hover,
.yoko-faq-item__answer a:focus {
	color: var(--yoko-color-primary-dark);
	text-decoration: underline;
}

.yoko-faq-item__answer :where(ul, ol) {
	display: grid;
	gap: 8px;
	margin: 14px 0 0;
	padding-left: 1.35em;
}

.yoko-faq-item__answer li {
	margin: 0;
}

.yoko-faq-item__answer :where(figure, img) {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
}

.yoko-faq-item__answer img {
	border-radius: var(--yoko-radius-card);
	display: block;
	height: auto;
	margin-top: 14px;
}

.yoko-faq-item__answer figcaption {
	color: var(--yoko-color-muted);
	font-size: 13px;
	line-height: 1.5;
	margin-top: 8px;
}

.yoko-faq-item__answer blockquote {
	border-left: 3px solid var(--yoko-color-primary);
	color: var(--yoko-color-text);
	margin: 16px 0 0;
	padding: 2px 0 2px 16px;
}

@media (max-width: 849px) {
	.yoko-faq__header {
		margin-bottom: 24px;
	}

	.yoko-faq__list {
		max-width: 100%;
	}
}

@media (max-width: 549px) {
	.yoko-faq {
		padding: 38px 0;
	}

	.yoko-faq__header {
		margin-bottom: 20px;
		text-align: left;
	}

	.yoko-faq__title {
		font-size: 24px;
		line-height: 1.25;
	}

	.yoko-faq__intro {
		font-size: 14px;
	}

	.yoko-faq__list {
		gap: 10px;
	}

	.yoko-faq-item__summary {
		align-items: flex-start;
		gap: 14px;
		min-height: 58px;
		padding: 16px;
	}

	.yoko-faq-item__question {
		font-size: 15px;
	}

	.yoko-faq-item__icon {
		flex-basis: 28px;
		height: 28px;
		margin-top: 1px;
		width: 28px;
	}

	.yoko-faq-item__answer {
		font-size: 14px;
		line-height: 1.68;
		padding: 0 16px 16px;
	}
}

/* YOKO text CTA button standardization. */
.yoko-button,
.yoko-home-hero-slide__button,
.yoko-home-section__button,
.yoko-home-study-timeline__slim-cta-button,
.yoko-home-service__button,
.yoko-home-community-channel__button,
.yoko-home-community-channel__body .button,
.yoko-home-posts__all-button,
.yoko-home-lead-form__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit, .button),
.yoko-course-form input[type="submit"],
.yoko-course-form .wpcf7-submit,
.yoko-course-module__button,
.yoko-course-sidebar__button,
.yoko-about-section__button,
.yoko-contact-panel__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit),
.yoko-contact-form-preview__submit,
.yoko-contact-panel__promo .button,
.yoko-contact-location__button,
.yoko-blog-popular-posts__cta a,
.yoko-blog-builder-preview__cta .yoko-button,
.yoko-scholarship-card__fallback-button,
.yoko-numbered-content-panel__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-scholarship-showcase__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-scholarship-card__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) {
	align-items: center !important;
	appearance: none;
	border: var(--yoko-button-border-width) solid transparent !important;
	border-radius: var(--yoko-radius-button) !important;
	box-shadow: none !important;
	display: inline-flex !important;
	font-family: var(--yoko-font-family) !important;
	font-size: var(--yoko-font-size-button) !important;
	font-weight: 800 !important;
	gap: var(--yoko-button-gap);
	justify-content: center !important;
	letter-spacing: 0 !important;
	line-height: 1.2 !important;
	max-width: 100%;
	min-height: var(--yoko-button-height) !important;
	min-width: 0 !important;
	padding: 0 var(--yoko-button-padding-x) !important;
	text-align: center !important;
	text-decoration: none !important;
	text-shadow: none !important;
	text-transform: none !important;
	transform: translateY(0);
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease !important;
	white-space: normal;
	-webkit-text-fill-color: currentColor !important;
}

.yoko-button :where(span, i, strong, b, em),
.yoko-home-hero-slide__button :where(span, i, strong, b, em),
.yoko-home-section__button :where(span, i, strong, b, em),
.yoko-home-study-timeline__slim-cta-button :where(span, i, strong, b, em),
.yoko-home-service__button :where(span, i, strong, b, em),
.yoko-home-community-channel__button :where(span, i, strong, b, em),
.yoko-home-posts__all-button :where(span, i, strong, b, em),
.yoko-course-module__button :where(span, i, strong, b, em),
.yoko-course-sidebar__button :where(span, i, strong, b, em),
.yoko-about-section__button :where(span, i, strong, b, em),
.yoko-contact-form-preview__submit :where(span, i, strong, b, em),
.yoko-contact-panel__promo .button :where(span, i, strong, b, em),
.yoko-contact-location__button :where(span, i, strong, b, em),
.yoko-blog-popular-posts__cta a :where(span, i, strong, b, em),
.yoko-numbered-content-panel__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) :where(span, i, strong, b, em),
.yoko-scholarship-showcase__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) :where(span, i, strong, b, em),
.yoko-scholarship-card__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) :where(span, i, strong, b, em) {
	color: currentColor !important;
	-webkit-text-fill-color: currentColor !important;
}

.yoko-button--primary,
.yoko-home-hero-slide__button,
.yoko-home-section__button.yoko-button--primary,
.yoko-home-services .yoko-home-section__button,
.yoko-home-lead-form__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit, .button),
.yoko-course-form input[type="submit"],
.yoko-course-form .wpcf7-submit,
.yoko-course-module__button,
.yoko-about-section__button,
.yoko-contact-panel__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit),
.yoko-contact-form-preview__submit,
.yoko-contact-panel__promo .button,
.yoko-scholarship-card__fallback-button,
.yoko-numbered-content-panel__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-scholarship-showcase__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link),
.yoko-scholarship-card__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link) {
	background: var(--yoko-color-primary) !important;
	border-color: var(--yoko-color-primary) !important;
	box-shadow: var(--yoko-button-shadow) !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-button--primary:hover,
.yoko-button--primary:focus,
.yoko-home-hero-slide__button:hover,
.yoko-home-hero-slide__button:focus,
.yoko-home-section__button.yoko-button--primary:hover,
.yoko-home-section__button.yoko-button--primary:focus,
.yoko-home-services .yoko-home-section__button:hover,
.yoko-home-services .yoko-home-section__button:focus,
.yoko-home-lead-form__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit, .button):hover,
.yoko-home-lead-form__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit, .button):focus,
.yoko-course-form input[type="submit"]:hover,
.yoko-course-form input[type="submit"]:focus,
.yoko-course-form .wpcf7-submit:hover,
.yoko-course-form .wpcf7-submit:focus,
.yoko-course-module__button:hover,
.yoko-course-module__button:focus,
.yoko-about-section__button:hover,
.yoko-about-section__button:focus,
.yoko-contact-panel__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit):hover,
.yoko-contact-panel__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit):focus,
.yoko-contact-form-preview__submit:hover,
.yoko-contact-form-preview__submit:focus,
.yoko-contact-panel__promo .button:hover,
.yoko-contact-panel__promo .button:focus,
.yoko-scholarship-card__fallback-button:hover,
.yoko-scholarship-card__fallback-button:focus,
.yoko-numbered-content-panel__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):hover,
.yoko-numbered-content-panel__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):focus,
.yoko-scholarship-showcase__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):hover,
.yoko-scholarship-showcase__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):focus,
.yoko-scholarship-card__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):hover,
.yoko-scholarship-card__content :where(a.button, button.button, .elementor-button, .wp-element-button, .wp-block-button__link):focus {
	background: var(--yoko-color-primary-dark) !important;
	border-color: var(--yoko-color-primary-dark) !important;
	box-shadow: var(--yoko-button-shadow-hover) !important;
	color: #ffffff !important;
	outline: 0;
	text-decoration: none !important;
	transform: translateY(-1px);
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-button--outline,
.yoko-home-section__button.yoko-button--outline,
.yoko-home-achievements .yoko-home-section__button,
.yoko-home-study-timeline__slim-cta-button,
.yoko-home-service__button,
.yoko-home-community-channel__button,
.yoko-home-community-channel__body .button,
.yoko-home-posts__all-button,
.yoko-course-sidebar__button,
.yoko-contact-location__button,
.yoko-blog-popular-posts__cta a,
.yoko-blog-builder-preview__cta .yoko-button,
.yoko-numbered-content-panel__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link),
.yoko-scholarship-showcase__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link),
.yoko-scholarship-card__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link) {
	background: #ffffff !important;
	border-color: var(--yoko-color-primary) !important;
	box-shadow: none !important;
	color: var(--yoko-color-primary) !important;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

.yoko-button--outline:hover,
.yoko-button--outline:focus,
.yoko-home-section__button.yoko-button--outline:hover,
.yoko-home-section__button.yoko-button--outline:focus,
.yoko-home-achievements .yoko-home-section__button:hover,
.yoko-home-achievements .yoko-home-section__button:focus,
.yoko-home-study-timeline__slim-cta-button:hover,
.yoko-home-study-timeline__slim-cta-button:focus,
.yoko-home-service__button:hover,
.yoko-home-service__button:focus,
.yoko-home-community-channel__button:hover,
.yoko-home-community-channel__button:focus,
.yoko-home-community-channel__body .button:hover,
.yoko-home-community-channel__body .button:focus,
.yoko-home-posts__all-button:hover,
.yoko-home-posts__all-button:focus,
.yoko-course-sidebar__button:hover,
.yoko-course-sidebar__button:focus,
.yoko-contact-location__button:hover,
.yoko-contact-location__button:focus,
.yoko-blog-popular-posts__cta a:hover,
.yoko-blog-popular-posts__cta a:focus,
.yoko-blog-builder-preview__cta .yoko-button:hover,
.yoko-blog-builder-preview__cta .yoko-button:focus,
.yoko-numbered-content-panel__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link):hover,
.yoko-numbered-content-panel__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link):focus,
.yoko-scholarship-showcase__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link):hover,
.yoko-scholarship-showcase__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link):focus,
.yoko-scholarship-card__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link):hover,
.yoko-scholarship-card__content :where(a.button.white, a.button.is-outline, button.button.is-outline, .wp-block-button.is-style-outline .wp-block-button__link):focus {
	background: var(--yoko-color-primary) !important;
	border-color: var(--yoko-color-primary) !important;
	box-shadow: var(--yoko-button-shadow) !important;
	color: #ffffff !important;
	outline: 0;
	text-decoration: none !important;
	transform: translateY(-1px);
	-webkit-text-fill-color: #ffffff !important;
}

.yoko-button:focus-visible,
.yoko-home-hero-slide__button:focus-visible,
.yoko-home-section__button:focus-visible,
.yoko-home-study-timeline__slim-cta-button:focus-visible,
.yoko-home-service__button:focus-visible,
.yoko-home-community-channel__button:focus-visible,
.yoko-home-community-channel__body .button:focus-visible,
.yoko-home-posts__all-button:focus-visible,
.yoko-home-lead-form__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit, .button):focus-visible,
.yoko-course-form input[type="submit"]:focus-visible,
.yoko-course-form .wpcf7-submit:focus-visible,
.yoko-course-module__button:focus-visible,
.yoko-course-sidebar__button:focus-visible,
.yoko-about-section__button:focus-visible,
.yoko-contact-panel__form :where(input[type="submit"], button[type="submit"], .wpcf7-submit):focus-visible,
.yoko-contact-form-preview__submit:focus-visible,
.yoko-contact-panel__promo .button:focus-visible,
.yoko-contact-location__button:focus-visible,
.yoko-blog-popular-posts__cta a:focus-visible,
.yoko-blog-builder-preview__cta .yoko-button:focus-visible,
.yoko-scholarship-card__fallback-button:focus-visible {
	outline: 3px solid var(--yoko-button-focus-ring);
	outline-offset: 3px;
}

.yoko-home-achievements .yoko-home-section__button::before,
.yoko-home-community-channel__button::after,
.yoko-home-community-channel__body .button::after {
	content: none !important;
	display: none !important;
}

/* Japanese language school search */
.yoko-school-search {
	background: #ffffff;
	color: var(--yoko-color-text);
	padding: clamp(42px, 6vw, 78px) 0;
}

.yoko-school-search__inner {
	position: relative;
}

.yoko-school-search .yoko-section-heading {
	margin-bottom: clamp(24px, 4vw, 42px);
}

.yoko-school-search .yoko-section-heading__title {
	font-size: clamp(23px, 2.1vw, 32px);
	text-transform: uppercase;
}

.yoko-school-search__form {
	align-items: center;
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(260px, 540px) minmax(160px, 220px) auto;
	justify-content: center;
	margin: 0 auto clamp(36px, 4.5vw, 52px);
	max-width: 860px;
}

.yoko-school-search__select {
	appearance: none;
	background:
		linear-gradient(45deg, transparent 50%, var(--yoko-color-muted) 50%) calc(100% - 17px) 50% / 6px 6px no-repeat,
		linear-gradient(135deg, var(--yoko-color-muted) 50%, transparent 50%) calc(100% - 12px) 50% / 6px 6px no-repeat,
		#ffffff;
	border: 1px solid #C8D0DA;
	border-radius: 8px;
	box-shadow: none;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	font-size: 15px;
	height: 44px;
	line-height: 1.2;
	margin: 0;
	min-width: 0;
	padding: 0 34px 0 12px;
	width: 100%;
}

.yoko-school-search__select:focus {
	border-color: var(--yoko-color-primary);
	box-shadow: 0 0 0 3px rgba(236, 32, 40, 0.16);
	outline: 0;
}

.yoko-school-search__submit {
	gap: 7px;
	height: 44px;
	margin: 0;
	min-width: 112px;
	padding-left: 20px;
	padding-right: 20px;
	white-space: nowrap;
}

.yoko-school-search__submit:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.yoko-school-search__results {
	min-height: 180px;
	position: relative;
}

.yoko-school-search [data-yoko-school-search-content] {
	transition: opacity 160ms ease, transform 160ms ease;
}

.yoko-school-search.is-loading [data-yoko-school-search-content] {
	opacity: 0.42;
	pointer-events: none;
	transform: translateY(2px);
}

.yoko-school-search__loader {
	align-items: center;
	background: rgba(255, 255, 255, 0.74);
	border-radius: 8px;
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 160ms ease;
	z-index: 2;
}

.yoko-school-search__loader::before {
	animation: yoko-school-loader-spin 760ms linear infinite;
	border: 3px solid rgba(5, 54, 83, 0.14);
	border-top-color: var(--yoko-color-primary);
	border-radius: 999px;
	content: "";
	height: 36px;
	width: 36px;
}

.yoko-school-search.is-loading .yoko-school-search__loader {
	opacity: 1;
}

@keyframes yoko-school-loader-spin {
	to {
		transform: rotate(360deg);
	}
}

.yoko-school-search__grid {
	display: grid;
	gap: clamp(30px, 4vw, 48px) 30px;
	grid-template-columns: repeat(var(--yoko-school-columns, 3), minmax(0, 1fr));
}

.yoko-school-card {
	min-width: 0;
}

.yoko-school-card__media {
	aspect-ratio: 16 / 10;
	background: var(--yoko-color-soft);
	border-radius: 8px;
	display: block;
	margin: 0 0 18px;
	overflow: hidden;
	position: relative;
}

.yoko-school-card__media:hover .yoko-school-card__image,
.yoko-school-card__media:focus-visible .yoko-school-card__image {
	transform: scale(1.035);
}

.yoko-school-card__image {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
	width: 100%;
}

.yoko-school-card__body {
	min-width: 0;
}

.yoko-school-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
}

.yoko-school-card__meta span {
	background: var(--yoko-color-soft);
	border: 1px solid var(--yoko-color-border);
	border-radius: 999px;
	color: var(--yoko-color-muted);
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	max-width: 100%;
	padding: 5px 10px;
}

.yoko-school-card__title {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(16px, 1.1vw, 19px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 8px;
	overflow-wrap: anywhere;
}

.yoko-school-card__title a {
	color: inherit;
	text-decoration: none;
}

.yoko-school-card__title a:hover,
.yoko-school-card__title a:focus-visible {
	color: var(--yoko-color-primary);
	text-decoration: none;
}

.yoko-school-card__excerpt {
	color: var(--yoko-color-muted);
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 10px;
}

.yoko-school-card__link {
	color: var(--yoko-color-muted);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
	text-decoration: none;
}

.yoko-school-card__link:hover,
.yoko-school-card__link:focus-visible {
	color: var(--yoko-color-primary);
	text-decoration: none;
}

.yoko-school-search__empty {
	background: var(--yoko-color-soft);
	border: 1px solid var(--yoko-color-border);
	border-radius: 8px;
	color: var(--yoko-color-muted);
	margin: 0 auto;
	max-width: 720px;
	padding: 22px;
	text-align: center;
}

.yoko-school-search__empty p {
	margin: 0;
}

.yoko-school-search__pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: clamp(28px, 4vw, 44px);
}

.yoko-school-search__pagination a,
.yoko-school-search__pagination-gap {
	align-items: center;
	border-radius: var(--yoko-radius-button);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	height: 38px;
	justify-content: center;
	min-width: 38px;
	padding: 0 12px;
	text-decoration: none;
}

.yoko-school-search__pagination a {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	color: var(--yoko-color-heading);
}

.yoko-school-search__pagination a:hover,
.yoko-school-search__pagination a:focus-visible,
.yoko-school-search__pagination a[aria-current="page"] {
	background: var(--yoko-color-primary);
	border-color: var(--yoko-color-primary);
	color: #ffffff;
	outline: 0;
	text-decoration: none;
}

.yoko-school-search__pagination a:focus-visible {
	box-shadow: 0 0 0 3px rgba(236, 32, 40, 0.18);
}

.yoko-school-search__pagination-gap {
	color: var(--yoko-color-muted);
}

.yoko-school-search-builder-preview {
	background: #ffffff;
	border: 1px solid var(--yoko-color-border);
	border-radius: 8px;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	padding: 18px;
}

.yoko-school-search-builder-preview__header {
	margin: 0 0 16px;
	text-align: center;
}

.yoko-school-search-builder-preview__header strong {
	color: var(--yoko-color-heading);
	display: block;
	font-family: var(--yoko-font-family-heading);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
}

.yoko-school-search-builder-preview__header span {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 12px;
	margin-top: 4px;
}

.yoko-school-search-builder-preview__form {
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(0, 1fr) 150px 92px;
	margin-bottom: 18px;
}

.yoko-school-search-builder-preview__form span,
.yoko-school-search-builder-preview__form b {
	align-items: center;
	border-radius: 8px;
	display: flex;
	font-size: 12px;
	height: 34px;
	min-width: 0;
	overflow: hidden;
	padding: 0 10px;
	white-space: nowrap;
}

.yoko-school-search-builder-preview__form span {
	background: #ffffff;
	border: 1px solid #C8D0DA;
	color: var(--yoko-color-muted);
}

.yoko-school-search-builder-preview__form b {
	background: var(--yoko-color-primary);
	color: #ffffff;
	font-weight: 800;
	justify-content: center;
}

.yoko-school-search-builder-preview__grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yoko-school-search-builder-preview__card div {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #DCEBF7, #F7F9FC);
	border-radius: 6px;
	margin-bottom: 9px;
}

.yoko-school-search-builder-preview__card strong {
	color: var(--yoko-color-heading);
	display: block;
	font-size: 12px;
	line-height: 1.35;
}

.yoko-school-search-builder-preview__card small {
	color: var(--yoko-color-muted);
	display: block;
	font-size: 11px;
	line-height: 1.35;
	margin-top: 4px;
}

@media (max-width: 849px) {
	.yoko-school-search__form {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.yoko-school-search__submit {
		grid-column: 1 / -1;
		justify-self: center;
	}

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

@media (max-width: 549px) {
	.yoko-school-search {
		padding: 38px 0 48px;
	}

	.yoko-school-search__form {
		gap: 10px;
		grid-template-columns: minmax(0, 1fr);
		margin-bottom: 30px;
	}

	.yoko-school-search__submit {
		justify-self: stretch;
		width: 100%;
	}

	.yoko-school-search__grid {
		gap: 28px;
		grid-template-columns: 1fr;
	}

	.yoko-school-card__media {
		margin-bottom: 14px;
	}

	.yoko-school-search-builder-preview__form,
	.yoko-school-search-builder-preview__grid {
		grid-template-columns: 1fr;
	}
}

.yoko-job-links-grid {
	--yoko-job-links-bg: var(--yoko-color-soft);
	--yoko-job-links-card-bg: var(--yoko-color-surface);
	--yoko-job-links-columns: 4;
	background: var(--yoko-job-links-bg);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	padding: clamp(32px, 5vw, 58px) 0;
}

.yoko-job-links-grid *,
.yoko-job-links-grid *::before,
.yoko-job-links-grid *::after {
	box-sizing: border-box;
}

.yoko-job-links-grid__inner {
	width: 100%;
}

.yoko-scholarship-showcase__content .yoko-job-links-grid {
	--yoko-job-links-bg: transparent;
	background: transparent;
	margin: clamp(18px, 2.6vw, 28px) 0 0;
	padding: 0;
}

.yoko-scholarship-showcase__content .yoko-job-links-grid:first-child {
	margin-top: 0;
}

.yoko-scholarship-showcase__content .yoko-job-links-grid__inner.container {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.yoko-job-links-grid__header {
	align-items: center;
	color: var(--yoko-color-primary);
	display: inline-flex;
	gap: 8px;
	margin: 0 0 clamp(16px, 2.5vw, 22px);
}

.yoko-job-links-grid__header i {
	color: currentColor;
	font-size: 13px;
	line-height: 1;
	transform: rotate(-18deg);
}

.yoko-job-links-grid__header h2 {
	color: currentColor;
	font-family: var(--yoko-font-family);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.3;
	margin: 0;
	text-transform: none;
}

.yoko-job-links-grid__items {
	display: grid;
	gap: clamp(14px, 1.8vw, 22px);
	grid-template-columns: repeat(var(--yoko-job-links-columns), minmax(0, 1fr));
}

.yoko-job-link-card {
	min-width: 0;
}

.yoko-job-link-card__inner {
	background: var(--yoko-job-links-card-bg);
	border: 1px solid var(--yoko-color-border);
	border-radius: var(--yoko-radius-card);
	box-shadow: var(--yoko-shadow-card);
	color: var(--yoko-color-text);
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 160px;
	padding: clamp(18px, 2vw, 22px);
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.yoko-job-link-card__inner:hover,
a.yoko-job-link-card__inner:focus-visible {
	border-color: rgba(236, 32, 40, 0.32);
	box-shadow: var(--yoko-shadow-card-hover);
	color: var(--yoko-color-text);
	outline: 0;
	text-decoration: none;
	transform: translateY(-2px);
}

a.yoko-job-link-card__inner:focus-visible {
	box-shadow: var(--yoko-shadow-card-hover), 0 0 0 3px rgba(236, 32, 40, 0.18);
}

.yoko-job-link-card__title {
	color: var(--yoko-color-primary);
	font-family: var(--yoko-font-family);
	font-size: clamp(15px, 1.2vw, 17px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 12px;
	text-transform: none;
}

.yoko-job-link-card__description {
	color: var(--yoko-color-text);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.62;
	margin: 0;
}

.yoko-job-link-card__description p {
	margin: 0;
}

.yoko-job-link-card__url {
	border-top: 1px dashed #D7DEE8;
	color: var(--yoko-color-navy);
	display: block;
	font-family: var(--yoko-font-family-code, var(--yoko-font-family));
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	margin-top: auto;
	overflow-wrap: anywhere;
	padding-top: 12px;
}

a.yoko-job-link-card__inner:hover .yoko-job-link-card__url,
a.yoko-job-link-card__inner:focus-visible .yoko-job-link-card__url {
	color: var(--yoko-color-primary);
}

.yoko-scholarship-showcase__content .yoko-job-links-grid__header,
.yoko-scholarship-showcase__content .yoko-job-links-grid__header i,
.yoko-scholarship-showcase__content .yoko-job-links-grid__header h2,
.yoko-scholarship-showcase__content .yoko-job-link-card__title {
	color: var(--yoko-color-primary) !important;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

.yoko-scholarship-showcase__content .yoko-job-link-card__inner,
.yoko-scholarship-showcase__content a.yoko-job-link-card__inner:hover,
.yoko-scholarship-showcase__content a.yoko-job-link-card__inner:focus-visible,
.yoko-scholarship-showcase__content .yoko-job-link-card__description,
.yoko-scholarship-showcase__content .yoko-job-link-card__description p {
	color: var(--yoko-color-text) !important;
	text-decoration: none !important;
	-webkit-text-fill-color: var(--yoko-color-text) !important;
}

.yoko-scholarship-showcase__content .yoko-job-link-card__url {
	color: var(--yoko-color-navy) !important;
	-webkit-text-fill-color: var(--yoko-color-navy) !important;
}

.yoko-scholarship-showcase__content a.yoko-job-link-card__inner:hover .yoko-job-link-card__url,
.yoko-scholarship-showcase__content a.yoko-job-link-card__inner:focus-visible .yoko-job-link-card__url {
	color: var(--yoko-color-primary) !important;
	-webkit-text-fill-color: var(--yoko-color-primary) !important;
}

@media (max-width: 849px) {
	.yoko-job-links-grid__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 549px) {
	.yoko-job-links-grid {
		padding: 30px 0 42px;
	}

	.yoko-job-links-grid__items {
		grid-template-columns: 1fr;
	}

	.yoko-job-link-card__inner {
		min-height: 0;
	}
}

.yoko-checklist-media {
	background: transparent;
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	font-size: var(--yoko-font-size-body);
	padding: clamp(34px, 5vw, 64px) 0;
	text-align: left;
}

.yoko-checklist-media *,
.yoko-checklist-media *::before,
.yoko-checklist-media *::after {
	box-sizing: border-box;
}

.yoko-checklist-media__inner {
	width: 100%;
}

.yoko-checklist-media__layout {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
}

.yoko-checklist-media__list {
	min-width: 0;
}

.yoko-checklist-media-item {
	align-items: start;
	border-bottom: 1px solid var(--yoko-color-border);
	display: grid;
	gap: 12px;
	grid-template-columns: 20px minmax(0, 1fr);
	padding: clamp(14px, 2vw, 20px) 0;
}

.yoko-checklist-media-item:first-child {
	padding-top: 0;
}

.yoko-checklist-media-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.yoko-checklist-media-item__icon {
	align-items: center;
	background: var(--yoko-color-primary);
	border-radius: 5px;
	box-shadow: 0 8px 18px rgba(236, 32, 40, .2);
	color: #ffffff;
	display: inline-flex;
	height: 18px;
	justify-content: center;
	margin-top: 2px;
	width: 18px;
}

.yoko-checklist-media-item__icon::before {
	content: "\2713";
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.yoko-checklist-media-item__body {
	min-width: 0;
	text-align: left;
}

.yoko-checklist-media-item__title {
	color: var(--yoko-color-heading);
	font-family: var(--yoko-font-family-heading);
	font-size: clamp(14px, 1.15vw, 16px);
	font-weight: var(--yoko-font-weight-heading);
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 5px;
	text-align: left;
	text-transform: none;
}

.yoko-checklist-media-item__description {
	color: var(--yoko-color-muted);
	font-family: var(--yoko-font-family-description);
	font-size: clamp(13px, 1vw, 14px);
	font-weight: var(--yoko-font-weight-description);
	line-height: 1.58;
	margin: 0;
	overflow-wrap: anywhere;
	text-align: left;
}

.yoko-checklist-media-item__description p {
	margin: 0;
}

.yoko-checklist-media__media {
	margin: 0;
	min-width: 0;
}

.yoko-checklist-media__frame {
	aspect-ratio: 4 / 5;
	background: var(--yoko-color-navy);
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 18px 44px rgba(5, 54, 83, .14);
	color: #ffffff;
	margin: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.yoko-checklist-media__image {
	display: block;
	filter: none;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 1;
	position: absolute;
	width: 100%;
}

.yoko-checklist-media--fit-contain .yoko-checklist-media__image {
	object-fit: contain;
}

.yoko-checklist-media__shade {
	background: linear-gradient(180deg, rgba(5, 14, 30, .02) 0%, rgba(5, 14, 30, .05) 48%, rgba(5, 14, 30, .46) 100%);
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.yoko-checklist-media__caption {
	bottom: clamp(22px, 4vw, 42px);
	left: clamp(20px, 4vw, 34px);
	position: absolute;
	right: clamp(20px, 4vw, 34px);
	text-align: left;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
	z-index: 2;
}

.yoko-checklist-media__quote {
	background: transparent;
	border: 0;
	color: #ffffff;
	font-family: var(--yoko-font-family-quote);
	font-size: clamp(16px, 1.45vw, 21px);
	font-style: italic;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.34;
	margin: 0;
	padding: 0;
	text-align: left;
	text-wrap: pretty;
}

.yoko-checklist-media__quote p {
	margin: 0;
}

.yoko-checklist-media .yoko-checklist-media-item__body,
.yoko-checklist-media .yoko-checklist-media-item__title,
.yoko-checklist-media .yoko-checklist-media-item__description,
.yoko-checklist-media .yoko-checklist-media-item__description p,
.yoko-checklist-media .yoko-checklist-media__caption,
.yoko-checklist-media .yoko-checklist-media__quote,
.yoko-checklist-media .yoko-checklist-media__quote p,
.yoko-checklist-media .yoko-checklist-media__attribution {
	text-align: left;
}

.yoko-checklist-media .yoko-checklist-media__quote {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin: 0;
	padding: 0;
}

.yoko-checklist-media .yoko-checklist-media__quote::before,
.yoko-checklist-media .yoko-checklist-media__quote::after {
	content: none;
}

.yoko-checklist-media__attribution {
	color: rgba(255, 255, 255, .74);
	display: block;
	font-family: var(--yoko-font-family-meta);
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
	margin-top: 12px;
}

.yoko-checklist-media__attribution::before {
	content: "";
	background: currentColor;
	display: inline-block;
	height: 1px;
	margin: 0 7px 3px 0;
	vertical-align: middle;
	width: 12px;
}

.yoko-checklist-media__placeholder {
	align-items: center;
	color: rgba(255, 255, 255, .8);
	display: flex;
	font-size: 13px;
	font-weight: 700;
	inset: 0;
	justify-content: center;
	position: absolute;
	z-index: 0;
}

@media (max-width: 849px) {
	.yoko-checklist-media__layout {
		grid-template-columns: 1fr;
	}

	.yoko-checklist-media__media {
		justify-self: center;
		max-width: min(100%, 460px);
		width: 100%;
	}
}

@media (max-width: 549px) {
	.yoko-checklist-media {
		padding: 30px 0 42px;
	}

	.yoko-checklist-media__layout {
		gap: 24px;
	}

	.yoko-checklist-media-item {
		gap: 10px;
		grid-template-columns: 18px minmax(0, 1fr);
	}

	.yoko-checklist-media-item__icon {
		height: 17px;
		width: 17px;
	}

	.yoko-checklist-media__caption {
		bottom: 22px;
		left: 20px;
		right: 20px;
	}
}

.yoko-featured-activity-marquee {
	--yoko-featured-activity-bg: #ffffff;
	--yoko-featured-activity-gap: clamp(10px, 1.2vw, 16px);
	--yoko-featured-activity-speed: 54s;
	--yoko-featured-activity-tile: clamp(132px, 10.2vw, 190px);
	background: var(--yoko-featured-activity-bg);
	color: var(--yoko-color-text);
	font-family: var(--yoko-font-family);
	overflow: hidden;
	padding: clamp(38px, 5vw, 64px) 0 clamp(34px, 5vw, 58px);
}

.yoko-featured-activity-marquee *,
.yoko-featured-activity-marquee *::before,
.yoko-featured-activity-marquee *::after {
	box-sizing: border-box;
}

.yoko-featured-activity-marquee__header {
	margin-bottom: clamp(22px, 3.2vw, 36px);
}

.yoko-course-page .yoko-featured-activity-marquee__header.yoko-section-heading {
	--yoko-section-heading-base: var(--yoko-color-primary);
	--yoko-section-heading-accent: var(--yoko-color-primary);
}

.yoko-featured-activity-marquee__viewport {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
	overflow: hidden;
	width: 100vw;
}

.yoko-featured-activity-marquee__track {
	animation: yoko-featured-activity-marquee-scroll var(--yoko-featured-activity-speed) linear infinite;
	display: flex;
	width: max-content;
	will-change: transform;
}

.yoko-featured-activity-marquee--pause-hover .yoko-featured-activity-marquee__viewport:hover .yoko-featured-activity-marquee__track,
.yoko-featured-activity-marquee--pause-hover .yoko-featured-activity-marquee__viewport:focus-within .yoko-featured-activity-marquee__track {
	animation-play-state: paused;
}

.yoko-featured-activity-marquee__group {
	display: grid;
	flex: 0 0 auto;
	gap: var(--yoko-featured-activity-gap);
	grid-auto-columns: var(--yoko-featured-activity-tile);
	grid-auto-flow: column dense;
	grid-template-rows: repeat(2, var(--yoko-featured-activity-tile));
	padding-right: var(--yoko-featured-activity-gap);
}

.yoko-featured-activity-marquee-item {
	display: block;
	grid-column: span 1;
	grid-row: span 1;
	margin: 0;
	min-width: 0;
}

.yoko-featured-activity-marquee-item--wide {
	grid-column: span 2;
}

.yoko-featured-activity-marquee-item--tall {
	grid-row: span 2;
}

.yoko-featured-activity-marquee-item--large {
	grid-column: span 2;
	grid-row: span 2;
}

.yoko-featured-activity-marquee-item__frame {
	-webkit-appearance: none;
	appearance: none;
	background: var(--yoko-color-soft);
	border: 0;
	border-radius: var(--yoko-radius-card);
	box-shadow: none;
	cursor: zoom-in;
	display: block;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.yoko-featured-activity-marquee-item__frame::after {
	background: rgba(0, 0, 0, .08);
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 180ms ease;
}

.yoko-featured-activity-marquee-item__frame:hover::after,
.yoko-featured-activity-marquee-item__frame:focus-visible::after {
	opacity: 1;
}

.yoko-featured-activity-marquee-item__frame:focus-visible {
	outline: 3px solid rgba(236, 32, 40, .26);
	outline-offset: 3px;
}

.yoko-featured-activity-marquee-item__image,
.yoko-featured-activity-marquee-item__frame img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.yoko-featured-activity-marquee-item__fallback {
	align-items: center;
	color: var(--yoko-color-muted);
	display: flex;
	font-size: 13px;
	font-weight: 700;
	height: 100%;
	justify-content: center;
	line-height: 1.35;
	padding: 12px;
	text-align: center;
	width: 100%;
}

@keyframes yoko-featured-activity-marquee-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.yoko-featured-activity-lightbox-is-open {
	overflow: hidden;
}

.yoko-featured-activity-lightbox {
	align-items: center;
	background: rgba(0, 0, 0, .88);
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	padding: clamp(16px, 4vw, 42px);
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease, visibility 180ms ease;
	visibility: hidden;
	z-index: 999999;
}

.yoko-featured-activity-lightbox.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.yoko-featured-activity-lightbox__dialog {
	max-height: calc(100vh - clamp(32px, 8vw, 84px));
	max-width: min(1120px, calc(100vw - 32px));
	position: relative;
	width: max-content;
}

.yoko-featured-activity-lightbox__figure {
	margin: 0;
	max-height: inherit;
	max-width: inherit;
}

.yoko-featured-activity-lightbox__image {
	background: #ffffff;
	border-radius: var(--yoko-radius-card);
	box-shadow: 0 24px 68px rgba(0, 0, 0, .34);
	display: block;
	max-height: calc(100vh - clamp(96px, 14vw, 150px));
	max-width: min(1120px, calc(100vw - 32px));
	object-fit: contain;
	width: auto;
}

.yoko-featured-activity-lightbox__caption {
	color: #ffffff;
	font-family: var(--yoko-font-family-meta);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	margin-top: 12px;
	text-align: center;
}

.yoko-featured-activity-lightbox__close {
	-webkit-appearance: none;
	appearance: none;
	align-items: center;
	background: rgba(255, 255, 255, .95);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
	color: var(--yoko-color-heading);
	cursor: pointer;
	display: flex;
	height: 44px;
	justify-content: center;
	margin: 0;
	padding: 0;
	position: absolute;
	right: -12px;
	top: -18px;
	width: 44px;
	z-index: 2;
}

.yoko-featured-activity-lightbox__close::before,
.yoko-featured-activity-lightbox__close::after {
	background: currentColor;
	content: "";
	height: 2px;
	position: absolute;
	width: 18px;
}

.yoko-featured-activity-lightbox__close::before {
	transform: rotate(45deg);
}

.yoko-featured-activity-lightbox__close::after {
	transform: rotate(-45deg);
}

.yoko-featured-activity-lightbox__close:hover,
.yoko-featured-activity-lightbox__close:focus-visible {
	background: #ffffff;
	color: var(--yoko-color-primary);
	outline: 3px solid rgba(236, 32, 40, .26);
	outline-offset: 3px;
}

@media (max-width: 849px) {
	.yoko-featured-activity-marquee {
		--yoko-featured-activity-tile: clamp(118px, 21vw, 158px);
	}
}

@media (max-width: 549px) {
	.yoko-featured-activity-marquee {
		--yoko-featured-activity-gap: 10px;
		--yoko-featured-activity-tile: clamp(112px, 36vw, 142px);
		padding: 34px 0 40px;
	}

	.yoko-featured-activity-marquee__viewport {
		-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
		mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
	}

	.yoko-featured-activity-marquee-item--tall {
		grid-column: span 1;
		grid-row: span 2;
	}

	.yoko-featured-activity-lightbox {
		padding: 16px;
	}

	.yoko-featured-activity-lightbox__dialog,
	.yoko-featured-activity-lightbox__image {
		max-width: calc(100vw - 32px);
	}

	.yoko-featured-activity-lightbox__close {
		right: 4px;
		top: 4px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yoko-featured-activity-marquee__viewport {
		-webkit-mask-image: none;
		mask-image: none;
		overflow-x: auto;
	}

	.yoko-featured-activity-marquee__track {
		animation: none;
	}

	.yoko-featured-activity-marquee__group[aria-hidden="true"] {
		display: none;
	}

	.yoko-featured-activity-lightbox,
	.yoko-featured-activity-marquee-item__frame::after {
		transition: none;
	}
}
