/* YJ STA Water Home — all selectors are scoped to avoid Elementor/theme clashes. */
body.yj-sta-water-page .yj-sta-template-main,
.yj-sta-template-main {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

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

.yjsta {
	--yjsta-primary: #00779f;
	--yjsta-secondary: #0b3551;
	--yjsta-accent: #1a91be;
	--yjsta-ink: #18242c;
	--yjsta-muted: #687983;
	--yjsta-line: #dce5ea;
	--yjsta-pale: #f4f8fa;
	position: relative;
	width: 100%;
	background: #fff;
	color: var(--yjsta-ink);
	font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.yjsta img {
	display: block;
	max-width: 100%;
	border-radius: 0 !important;
}

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

.yjsta button,
.yjsta input {
	font: inherit;
}

.yjsta button,
.yjsta a {
	-webkit-tap-highlight-color: transparent;
}

.yjsta a:focus-visible,
.yjsta button:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 3px;
}

.yjsta-container {
	width: min(1180px, calc(100% - 36px));
	margin-right: auto;
	margin-left: auto;
}

.yjsta-skip {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10000;
	padding: 11px 16px;
	background: #111;
	color: #fff !important;
	transform: translateY(-160%);
}

.yjsta-skip:focus {
	transform: translateY(0);
}

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

/* Header */
.yjsta-header {
	position: relative;
	z-index: 20;
	background: #fff;
	border-bottom: 1px solid var(--yjsta-line);
}

.yjsta-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 24px;
}

.yjsta-brand {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	min-width: 210px;
	line-height: 1.1;
}

.yjsta-brand__name {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.055em;
}

.yjsta-brand__sub {
	margin-top: 7px;
	color: var(--yjsta-primary);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.15em;
}

.yjsta-utility {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-left: auto;
	color: #7a878e;
	font-size: 12px;
}

.yjsta-utility a:not(.yjsta-utility__classroom):hover {
	color: var(--yjsta-primary);
}

.yjsta-utility__classroom {
	min-width: 92px;
	padding: 10px 12px;
	border: 1px solid var(--yjsta-line);
	background: #f8fafb;
	color: var(--yjsta-secondary) !important;
	font-weight: 800;
	text-align: center;
}

.yjsta-nav {
	border-top: 1px solid #edf1f3;
	background: #fff;
}

.yjsta-nav__inner {
	display: grid;
	grid-template-columns: repeat(5, minmax(118px, 1fr)) repeat(2, minmax(84px, 0.72fr));
	align-items: stretch;
}

.yjsta-nav__item {
	position: relative;
	display: flex;
	min-height: 66px;
	padding: 12px 16px 11px;
	flex-direction: column;
	justify-content: center;
	border-left: 1px solid #eef2f4;
	transition: background-color 160ms ease, color 160ms ease;
}

.yjsta-nav__item:last-child {
	border-right: 1px solid #eef2f4;
}

.yjsta-nav__item strong {
	font-size: 14px;
	font-weight: 750;
	letter-spacing: -0.035em;
}

.yjsta-nav__item span {
	margin-top: 3px;
	color: #81909a;
	font-size: 8px;
	letter-spacing: 0.015em;
}

.yjsta-nav__item::after {
	position: absolute;
	right: 18px;
	bottom: -1px;
	left: 18px;
	height: 3px;
	background: var(--yjsta-primary);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 160ms ease;
}

.yjsta-nav__item:hover,
.yjsta-nav__item.is-active {
	background: #f7fafb;
	color: var(--yjsta-primary);
}

.yjsta-nav__item:hover::after,
.yjsta-nav__item.is-active::after {
	transform: scaleX(1);
}

.yjsta-nav-toggle {
	display: none;
	width: 44px;
	height: 42px;
	padding: 8px 9px;
	border: 1px solid var(--yjsta-line);
	background: #fff;
	cursor: pointer;
}

.yjsta-nav-toggle > span:not(.yjsta-sr-only) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--yjsta-secondary);
}

/* Main two-column layout */
.yjsta-layout {
	display: grid;
	grid-template-columns: minmax(0, 2.25fr) minmax(280px, 1fr);
	gap: 24px;
	padding-top: 24px;
	padding-bottom: 34px;
}

.yjsta-main-column,
.yjsta-side {
	min-width: 0;
}

/* Hero */
.yjsta-hero {
	position: relative;
	display: flex;
	min-height: 416px;
	align-items: flex-end;
	overflow: hidden;
	background-color: #7898aa;
	background-position: center;
	background-size: cover;
}

.yjsta-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 24, 38, 0.03) 18%, rgba(5, 28, 43, 0.18) 55%, rgba(4, 27, 43, 0.72) 100%);
}

.yjsta-hero__content {
	position: relative;
	z-index: 2;
	max-width: 630px;
	padding: 40px;
	color: #fff;
}

.yjsta-hero__kicker {
	margin: 0 0 8px !important;
	color: #d8f1fb;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.yjsta-hero h1 {
	margin: 0 !important;
	color: #fff;
	font-size: clamp(28px, 3vw, 43px);
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.055em;
}

.yjsta-hero__content > p:not(.yjsta-hero__kicker) {
	margin: 12px 0 0 !important;
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
}

.yjsta-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.yjsta-button {
	display: inline-flex;
	min-height: 46px;
	padding: 0 20px;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
	transition: filter 160ms ease, transform 160ms ease;
}

.yjsta-button:hover {
	filter: brightness(1.12);
	transform: translateY(-1px);
}

.yjsta-button--primary {
	background: var(--yjsta-accent);
}

.yjsta-button--dark {
	background: var(--yjsta-secondary);
}

.yjsta-button--dark span {
	margin-left: 8px;
	font-size: 10px;
}

.yjsta-hero__share {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 3;
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 50%;
	background: rgba(6, 35, 54, 0.54);
	color: #fff !important;
	font-size: 18px;
}

/* Section headings and course cards */
.yjsta-section {
	padding: 34px 0 12px;
}

.yjsta-section--bordered {
	margin-top: 22px;
	border-top: 1px solid var(--yjsta-line);
}

.yjsta-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.yjsta-section-heading span,
.yjsta-instructor__content > span {
	display: block;
	margin-bottom: 2px;
	color: var(--yjsta-primary);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.13em;
}

.yjsta-section-heading h2,
.yjsta-instructor h2 {
	margin: 0 !important;
	color: var(--yjsta-ink);
	font-size: 27px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.055em;
}

.yjsta-section-heading p {
	margin: 4px 0 0 !important;
	color: #86929a;
	font-size: 12px;
}

.yjsta-section-heading > a {
	padding: 6px 0;
	color: #74828a;
	font-size: 12px;
	white-space: nowrap;
}

.yjsta-section-heading > a:hover {
	color: var(--yjsta-primary);
}

.yjsta-course-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 13px;
}

.yjsta-course-card {
	min-width: 0;
	margin: 0;
	border: 1px solid var(--yjsta-line);
	background: #fff;
	box-shadow: none;
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.yjsta-course-card:hover {
	border-color: #afcbd8;
	box-shadow: 0 10px 26px rgba(26, 66, 87, 0.09);
	transform: translateY(-3px);
}

.yjsta-course-card__image {
	position: relative;
	display: block;
	aspect-ratio: 1.56 / 1;
	overflow: hidden;
	background: #d9e4e9;
}

.yjsta-course-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.yjsta-course-card:hover .yjsta-course-card__image img {
	transform: scale(1.035);
}

.yjsta-course-card__image span {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 4px 7px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--yjsta-primary);
	font-size: 7px;
	font-weight: 900;
	letter-spacing: 0.06em;
}

.yjsta-course-card__body {
	display: flex;
	min-height: 190px;
	padding: 15px 14px 13px;
	flex-direction: column;
}

.yjsta-course-card__eyebrow {
	margin: 0 0 7px !important;
	color: var(--yjsta-primary);
	font-size: 9px;
	font-weight: 700;
}

.yjsta-course-card h3 {
	min-height: 48px;
	margin: 0 !important;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: -0.035em;
}

.yjsta-course-card h3 a:hover {
	color: var(--yjsta-primary);
}

.yjsta-course-card__excerpt {
	display: -webkit-box;
	margin: 9px 0 13px !important;
	overflow: hidden;
	color: #7b888f;
	font-size: 11px;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.yjsta-course-card__more {
	display: flex;
	margin-top: auto;
	padding-top: 11px;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #edf1f3;
	color: #66757d !important;
	font-size: 10px;
	font-weight: 700;
}

.yjsta-course-card__more span {
	color: var(--yjsta-primary);
	font-size: 14px;
}

/* Sidebar */
.yjsta-side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.yjsta-board,
.yjsta-info-board,
.yjsta-side-copy {
	border: 1px solid var(--yjsta-line);
	background: #fff;
}

.yjsta-tabs {
	display: flex;
	min-height: 62px;
	padding: 0 17px;
	align-items: flex-end;
	border-bottom: 1px solid var(--yjsta-line);
}

.yjsta-tabs button {
	position: relative;
	min-height: 61px;
	padding: 4px 8px 12px;
	border: 0;
	background: transparent;
	color: #7a878e;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.yjsta-tabs button::after {
	position: absolute;
	right: 8px;
	bottom: -1px;
	left: 8px;
	height: 3px;
	background: var(--yjsta-primary);
	content: "";
	transform: scaleX(0);
}

.yjsta-tabs button.is-active {
	color: var(--yjsta-secondary);
}

.yjsta-tabs button.is-active::after {
	transform: scaleX(1);
}

.yjsta-tabs > a {
	margin: 0 0 16px auto;
	color: #89969d;
	font-size: 11px;
}

.yjsta-tab-panel {
	padding: 8px 16px 12px;
}

.yjsta-tab-panel[hidden] {
	display: none !important;
}

.yjsta-board-row {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) 32px;
	min-height: 48px;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid #edf1f3;
}

.yjsta-board-row:last-child {
	border-bottom: 0;
}

.yjsta-board-row:hover .yjsta-board-row__title {
	color: var(--yjsta-primary);
}

.yjsta-board-row__badge {
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	background: #edf5ef;
	color: #5c9c70;
	font-size: 9px;
	font-weight: 800;
}

.yjsta-board-row__badge.is-blue {
	background: #e7f4f9;
	color: var(--yjsta-primary);
}

.yjsta-board-row__title {
	overflow: hidden;
	font-size: 11px;
	font-weight: 650;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yjsta-board-row time {
	color: #a0a9ae;
	font-size: 9px;
	text-align: right;
}

.yjsta-board-empty {
	margin: 16px 0 !important;
	color: #859199;
	font-size: 12px;
	text-align: center;
}

.yjsta-consult {
	display: flex;
	min-height: 91px;
	padding: 14px 17px;
	align-items: center;
	gap: 13px;
	border: 2px solid var(--yjsta-secondary);
	background: #fff;
}

.yjsta-consult:hover {
	border-color: var(--yjsta-primary);
}

.yjsta-consult__icon {
	display: grid;
	width: 50px;
	height: 50px;
	flex: 0 0 auto;
	place-items: center;
	border: 1px solid var(--yjsta-line);
	color: var(--yjsta-primary);
	font-size: 23px;
}

.yjsta-consult > span:last-child {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.yjsta-consult small {
	color: #50626d;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
}

.yjsta-consult strong {
	color: #e31c24;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.yjsta-consult em {
	color: #67757d;
	font-size: 10px;
	font-style: normal;
}

.yjsta-story {
	min-height: 190px;
	padding: 28px 20px 20px;
}

.yjsta-story p {
	margin: 0 0 24px !important;
	color: #5d6d76;
	font-size: 13px;
	line-height: 1.9;
}

.yjsta-story > a,
.yjsta-side-copy > a {
	display: block;
	padding-top: 13px;
	border-top: 1px solid var(--yjsta-line);
	color: var(--yjsta-primary) !important;
	font-size: 11px;
	font-weight: 750;
}

.yjsta-quick {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--yjsta-line);
	background: #fff;
}

.yjsta-quick a {
	display: flex;
	min-width: 0;
	min-height: 104px;
	padding: 13px 6px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid var(--yjsta-line);
	text-align: center;
}

.yjsta-quick a:last-child {
	border-right: 0;
}

.yjsta-quick a:hover {
	background: var(--yjsta-pale);
}

.yjsta-quick a > span {
	min-height: 26px;
	color: var(--yjsta-secondary);
	font-size: 22px;
	line-height: 1;
}

.yjsta-quick a > span.yjsta-quick__q {
	color: var(--yjsta-primary);
	font-weight: 900;
}

.yjsta-quick strong {
	margin-top: 5px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.yjsta-quick small {
	color: #89949a;
	font-size: 9px;
}

.yjsta-side-copy {
	padding: 24px 20px 18px;
}

.yjsta-side-copy h2 {
	margin: 0 0 11px !important;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.yjsta-side-copy p {
	margin: 0 0 20px !important;
	color: #63737c;
	font-size: 12px;
	line-height: 1.85;
}

/* Instructor */
.yjsta-instructor {
	display: grid;
	grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.45fr);
	margin-top: 46px;
	border-top: 1px solid var(--yjsta-line);
	background: #fbfcfd;
}

.yjsta-instructor__photo {
	min-height: 330px;
	overflow: hidden;
	background: #e6eef1;
}

.yjsta-instructor__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.yjsta-instructor__content {
	display: flex;
	padding: 42px 38px;
	flex-direction: column;
	justify-content: center;
}

.yjsta-instructor__content > p {
	margin: 11px 0 19px !important;
	color: #66757d;
	font-size: 13px;
	line-height: 1.8;
}

.yjsta-instructor ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.yjsta-instructor li {
	position: relative;
	margin: 8px 0 !important;
	padding-left: 20px;
	font-size: 11px;
	font-weight: 650;
}

.yjsta-instructor li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--yjsta-primary);
	content: "✓";
	font-weight: 900;
}

/* Plugin footer */
.yjsta-footer {
	border-top: 1px solid var(--yjsta-line);
	background: #f6f8f9;
}

.yjsta-footer__contact {
	display: flex;
	min-height: 58px;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid var(--yjsta-line);
	color: #68777f;
	font-size: 11px;
}

.yjsta-footer__contact span {
	font-weight: 800;
}

.yjsta-footer__contact strong {
	color: var(--yjsta-primary);
	font-size: 14px;
}

.yjsta-footer__contact em {
	font-style: normal;
}

.yjsta-footer__contact a {
	margin-left: auto;
}

.yjsta-footer__bottom {
	display: flex;
	min-height: 92px;
	padding-top: 20px;
	padding-bottom: 20px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.yjsta-footer__bottom > div {
	display: flex;
	flex-direction: column;
}

.yjsta-footer__bottom strong {
	font-size: 17px;
	font-weight: 800;
}

.yjsta-footer__bottom span {
	color: #849098;
	font-size: 10px;
}

.yjsta-footer__bottom nav {
	display: flex;
	gap: 18px;
	color: #718087;
	font-size: 10px;
}

.yjsta-footer__bottom nav a:hover {
	color: var(--yjsta-primary);
}

/* Tablet */
@media (max-width: 1050px) {
	.yjsta-nav__inner {
		grid-template-columns: repeat(5, minmax(105px, 1fr));
	}

	.yjsta-nav__item--compact {
		display: none;
	}

	.yjsta-layout {
		grid-template-columns: minmax(0, 1fr) 278px;
		gap: 18px;
	}

	.yjsta-course-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.yjsta-course-card__body {
		min-height: 175px;
	}
}

@media (max-width: 820px) {
	.yjsta-header__top {
		min-height: 68px;
	}

	.yjsta-brand__name {
		font-size: 19px;
	}

	.yjsta-utility {
		display: none;
	}

	.yjsta-nav-toggle {
		display: block;
	}

	.yjsta-nav {
		display: none;
		position: absolute;
		top: 68px;
		right: 0;
		left: 0;
		border-bottom: 1px solid var(--yjsta-line);
		box-shadow: 0 14px 26px rgba(16, 51, 69, 0.15);
	}

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

	.yjsta-nav__inner {
		display: grid;
		width: 100%;
		grid-template-columns: repeat(2, 1fr);
		padding: 0;
	}

	.yjsta-nav__item,
	.yjsta-nav__item--compact {
		display: flex;
		min-height: 58px;
		border-bottom: 1px solid #edf1f3;
	}

	.yjsta-nav__item::after {
		right: auto;
		bottom: 10px;
		left: 10px;
		width: 3px;
		height: calc(100% - 20px);
		transform: scaleY(0);
	}

	.yjsta-nav__item.is-active::after,
	.yjsta-nav__item:hover::after {
		transform: scaleY(1);
	}

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

	.yjsta-side {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.yjsta-quick,
	.yjsta-side-copy {
		grid-column: 1 / -1;
	}
}

/* Mobile */
@media (max-width: 620px) {
	.yjsta-container {
		width: min(100% - 24px, 1180px);
	}

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

	.yjsta-brand__name {
		font-size: 17px;
	}

	.yjsta-brand__sub {
		font-size: 7px;
	}

	.yjsta-layout {
		width: 100%;
		padding-top: 0;
	}

	.yjsta-hero {
		min-height: 430px;
		background-position: 58% center;
	}

	.yjsta-hero__content {
		padding: 28px 24px;
	}

	.yjsta-hero h1 {
		font-size: 29px;
	}

	.yjsta-hero__content > p:not(.yjsta-hero__kicker) {
		font-size: 12px;
	}

	.yjsta-hero__share {
		display: none;
	}

	.yjsta-section {
		padding-right: 12px;
		padding-left: 12px;
	}

	.yjsta-section-heading {
		align-items: flex-start;
	}

	.yjsta-section-heading h2 {
		font-size: 24px;
	}

	.yjsta-section-heading p {
		max-width: 260px;
	}

	.yjsta-course-grid {
		grid-template-columns: 1fr;
	}

	.yjsta-course-card {
		display: grid;
		grid-template-columns: 42% 58%;
	}

	.yjsta-course-card__image {
		height: 100%;
		aspect-ratio: auto;
	}

	.yjsta-course-card__body {
		min-height: 190px;
	}

	.yjsta-course-card h3 {
		min-height: auto;
	}

	.yjsta-instructor {
		grid-template-columns: 1fr;
		margin-top: 38px;
	}

	.yjsta-instructor__photo {
		min-height: 0;
		aspect-ratio: 1.4 / 1;
	}

	.yjsta-instructor__content {
		padding: 30px 24px;
	}

	.yjsta-side {
		display: flex;
		padding: 12px;
	}

	.yjsta-tabs {
		padding: 0 11px;
	}

	.yjsta-tabs button {
		font-size: 15px;
	}

	.yjsta-footer__contact {
		min-height: 0;
		padding-top: 17px;
		padding-bottom: 17px;
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}

	.yjsta-footer__contact a {
		margin-left: 0;
	}

	.yjsta-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.yjsta-footer__bottom nav {
		flex-wrap: wrap;
		gap: 9px 16px;
	}
}

/* v1.2: text-led navigation, six live boards, clean hero and instructor gallery. */
.yjsta-header__top {
	min-height: 74px;
}

.yjsta-brand__sub {
	display: none;
}

.yjsta-nav {
	border-top: 1px solid #f1f4f6;
}

.yjsta-nav__inner {
	display: block;
}

.yjsta-nav__main {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	column-gap: clamp(20px, 4vw, 70px);
}

.yjsta-nav__item,
.yjsta-nav__item:last-child,
.yjsta-nav__main .yjsta-nav__item {
	min-height: 68px;
	padding: 11px 4px 10px;
	align-items: center;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
}

.yjsta-nav__item::after {
	display: none;
}

.yjsta-nav__item strong {
	color: #25343d;
	font-size: 16px;
	font-weight: 650;
	letter-spacing: -0.035em;
	transition: color 160ms ease, font-weight 160ms ease;
}

.yjsta-nav__item span {
	margin-top: 4px;
	font-size: 9px;
}

.yjsta-nav__item:hover,
.yjsta-nav__item.is-active {
	background: transparent;
}

.yjsta-nav__item:hover strong,
.yjsta-nav__item.is-active strong {
	color: #1685ad;
	font-weight: 900;
}

.yjsta-hero--clean .yjsta-hero__shade {
	display: block;
	background:
		linear-gradient(90deg, rgba(5, 31, 47, 0.76) 0%, rgba(5, 31, 47, 0.50) 39%, rgba(5, 31, 47, 0.10) 71%, rgba(5, 31, 47, 0.02) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.02) 45%, rgba(4, 26, 40, 0.20) 100%);
}

.yjsta-hero--clean .yjsta-hero__content {
	display: block;
	bottom: 50%;
	max-width: 70%;
	padding: 36px 38px;
	transform: translateY(50%);
}

.yjsta-hero--clean .yjsta-hero__kicker {
	color: #bdeaff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.52);
}

.yjsta-hero--clean h1 {
	font-weight: 900;
	letter-spacing: -0.045em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.68);
}

.yjsta-hero--clean .yjsta-hero__content > p:not(.yjsta-hero__kicker) {
	color: #fff;
	font-weight: 650;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.72);
}

.yjsta-hero--clean .yjsta-button {
	border: 1px solid rgba(255, 255, 255, 0.30);
	box-shadow: 0 6px 18px rgba(0, 19, 30, 0.30);
	font-weight: 900;
}

.yjsta-hero--clean .yjsta-button--primary {
	background: #138ac0;
}

.yjsta-hero--clean .yjsta-button--dark {
	background: rgba(5, 42, 64, 0.94);
}

.yjsta-tabs--three {
	gap: 11px;
	padding-right: 14px;
	padding-left: 14px;
}

.yjsta-tabs--three button,
.yjsta-side--top .yjsta-tabs--three button {
	font-size: 14px;
	letter-spacing: -0.055em;
}

.yjsta-tabs--three > a {
	font-size: 9px;
}

.yjsta-consult {
	border: 1px solid #c4dfe9;
	background: #f1f8fb;
	box-shadow: 0 4px 14px rgba(36, 101, 130, 0.05);
}

.yjsta-consult:hover {
	border-color: #a8cedd;
	box-shadow: 0 6px 18px rgba(36, 101, 130, 0.09);
}

.yjsta-consult__image {
	border-right-color: #dbeaf0;
	background: rgba(255, 255, 255, 0.82);
}

.yjsta-consult > span:last-child {
	padding-left: 16px;
}

.yjsta-consult small,
.yjsta-consult em {
	color: #536b77;
}

.yjsta-consult strong {
	color: #df1f2d;
}

.yjsta-side--content {
	padding-top: 34px;
}

.yjsta-info-board--posts {
	display: flex;
	min-height: 312px;
	flex-direction: column;
}

.yjsta-info-board--posts .yjsta-tab-panel:not([hidden]) {
	display: grid;
	min-height: 0;
	padding: 0;
	flex: 1 1 auto;
	grid-template-rows: repeat(5, minmax(0, 1fr));
}

.yjsta-info-board--posts .yjsta-board-row {
	min-height: 48px;
	padding: 0 12px 0 0;
	grid-template-columns: 38px minmax(0, 1fr) 38px;
	gap: 7px;
}

.yjsta-info-board--posts .yjsta-board-row__badge {
	width: 38px;
	height: 28px;
}

.yjsta-instructor {
	display: grid;
	grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.4fr);
	min-height: 360px;
	background: #f5f8fa;
}

.yjsta-instructor__content {
	padding: 40px 34px;
}

.yjsta-instructor__gallery {
	display: grid;
	min-width: 0;
	padding: 22px 22px 22px 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.yjsta-instructor__gallery figure {
	display: flex;
	min-width: 0;
	min-height: 310px;
	margin: 0;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #e8eff3;
}

.yjsta-instructor__gallery img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.yjsta-instructor__gallery figure:last-child img {
	object-fit: cover;
}

@media (max-width: 1050px) {
	.yjsta-nav__main {
		column-gap: 16px;
	}

	.yjsta-nav__item strong {
		font-size: 15px;
	}

	.yjsta-instructor {
		grid-template-columns: minmax(250px, 0.8fr) minmax(380px, 1.35fr);
	}

	.yjsta-instructor__content {
		padding: 32px 26px;
	}
}

@media (max-width: 820px) {
	.yjsta-nav__inner {
		display: block;
	}

	.yjsta-nav__main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 0;
	}

	.yjsta-nav__item,
	.yjsta-nav__main .yjsta-nav__item {
		min-height: 58px;
		border-bottom: 1px solid #edf1f3;
	}

	.yjsta-side--content {
		padding-top: 34px;
	}

	.yjsta-instructor {
		grid-template-columns: 1fr;
	}

	.yjsta-instructor__gallery {
		padding: 0 22px 22px;
	}
}

@media (max-width: 620px) {
	.yjsta-header__top {
		min-height: 68px;
	}

	.yjsta-hero--clean .yjsta-hero__content {
		max-width: 79%;
		padding: 16px 18px;
	}

	.yjsta-hero--clean .yjsta-hero__kicker {
		display: none;
	}

	.yjsta-hero--clean h1 {
		font-size: clamp(20px, 7vw, 29px);
	}

	.yjsta-hero--clean .yjsta-hero__content > p:not(.yjsta-hero__kicker) {
		display: none;
	}

	.yjsta-hero--clean .yjsta-hero__actions {
		margin-top: 14px;
	}

	.yjsta-hero--clean .yjsta-button {
		min-height: 36px;
		padding: 0 12px;
		font-size: 11px;
	}

	.yjsta-tabs--three {
		gap: 8px;
		padding-right: 10px;
		padding-left: 10px;
	}

	.yjsta-tabs--three button,
	.yjsta-side--top .yjsta-tabs--three button {
		font-size: 13px;
	}

	.yjsta-side--content {
		padding-top: 34px;
	}

	.yjsta-instructor__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 0 12px 12px;
		gap: 8px;
	}

	.yjsta-instructor__gallery figure {
		min-height: 220px;
	}
}

@media (max-width: 390px) {
	.yjsta-course-card {
		display: block;
	}

	.yjsta-course-card__image {
		aspect-ratio: 1.65 / 1;
	}

	.yjsta-button {
		padding: 0 15px;
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yjsta *,
	.yjsta *::before,
	.yjsta *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* v1.1: exact menu and hero/sidebar alignment requested for /water/. */
.yjsta-nav__inner,
.yjsta-top-layout,
.yjsta-layout--content {
	display: grid;
	grid-template-columns: minmax(0, 2.25fr) minmax(280px, 1fr);
	gap: 24px;
}

.yjsta-nav__main {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	min-width: 0;
}

.yjsta-nav__side {
	display: flex;
	min-width: 0;
	align-items: stretch;
	justify-content: flex-end;
}

.yjsta-nav__side .yjsta-nav__item {
	width: 104px;
	flex: 0 0 104px;
	align-items: center;
	border-left: 0;
	text-align: center;
}

.yjsta-nav__side .yjsta-nav__mypage {
	border: 1px solid var(--yjsta-line);
	background: #f8fafb;
}

.yjsta-nav__item--compact {
	display: flex;
}

.yjsta-top-layout {
	padding-top: 18px;
	align-items: stretch;
}

.yjsta-layout--content {
	padding-top: 0;
}

.yjsta-hero {
	position: relative;
	display: block;
	width: 100%;
	min-height: 0;
	aspect-ratio: 930 / 493;
	overflow: hidden;
	background: #dce7ec;
}

.yjsta-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.yjsta-hero__content {
	position: absolute;
	bottom: 0;
	left: 0;
}

.yjsta-hero--original .yjsta-hero__shade,
.yjsta-hero--original .yjsta-hero__content,
.yjsta-hero--original .yjsta-hero__share {
	display: none;
}

.yjsta-hero__hotspot {
	position: absolute;
	z-index: 4;
	top: 79%;
	height: 10.5%;
	background: transparent;
}

.yjsta-hero__hotspot--primary {
	left: 4.7%;
	width: 14.5%;
}

.yjsta-hero__hotspot--secondary {
	left: 20.2%;
	width: 15.2%;
}

.yjsta-side--top {
	display: flex;
	height: 100%;
	min-height: 0;
	align-items: stretch;
	gap: 14px;
	flex-direction: column;
}

.yjsta-side--top .yjsta-board {
	display: flex;
	min-height: 0;
	flex: 1 1 auto;
	flex-direction: column;
}

.yjsta-tabs {
	gap: 18px;
	padding-right: 20px;
	padding-left: 20px;
}

.yjsta-tabs button {
	padding-right: 0;
	padding-left: 0;
}

.yjsta-tabs button::after {
	right: 0;
	left: 0;
}

.yjsta-tabs > a {
	margin-left: auto;
}

.yjsta-side--top .yjsta-tabs {
	min-height: 70px;
	flex: 0 0 70px;
}

.yjsta-side--top .yjsta-tabs button {
	min-height: 69px;
	padding-bottom: 15px;
	font-size: 18px;
}

.yjsta-side--top .yjsta-tab-panel:not([hidden]) {
	display: grid;
	min-height: 0;
	padding: 0;
	flex: 1 1 auto;
	grid-template-rows: repeat(5, minmax(0, 1fr));
}

.yjsta-side--top .yjsta-board-row {
	min-height: 0;
	padding: 0 12px 0 0;
	grid-template-columns: 38px minmax(0, 1fr) 38px;
	gap: 7px;
}

.yjsta-side--top .yjsta-board-row__badge {
	width: 38px;
	height: 28px;
	margin: 0;
}

.yjsta-board-row--message {
	grid-template-columns: minmax(0, 1fr) !important;
}

.yjsta-board-row--message .yjsta-board-row__title {
	padding-left: 10px;
	color: #849198;
	font-weight: 500;
}

.yjsta-board-row--empty {
	pointer-events: none;
}

.yjsta-consult {
	display: flex;
	min-height: 0;
	height: 96px;
	padding: 0;
	flex: 0 0 96px;
	align-items: stretch;
	gap: 0;
	border: 1px solid var(--yjsta-secondary);
	background: #e1effa;
}

.yjsta-consult__image {
	display: grid;
	width: 112px;
	min-width: 112px;
	height: 100%;
	place-items: center;
	border-right: 1px solid #d7e4ec;
	background: #fff;
}

.yjsta-consult__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.yjsta-consult > span:last-child {
	padding: 8px 14px;
	justify-content: center;
}

.yjsta-consult small {
	font-size: 13px;
	font-weight: 500;
}

.yjsta-consult strong {
	font-size: clamp(18px, 1.55vw, 24px);
	white-space: nowrap;
}

.yjsta-consult em {
	font-size: 11px;
	white-space: nowrap;
}

@media (max-width: 1050px) {
	.yjsta-nav__inner,
	.yjsta-top-layout,
	.yjsta-layout--content {
		grid-template-columns: minmax(0, 1fr) 278px;
		gap: 18px;
	}

	.yjsta-nav__side .yjsta-nav__item {
		width: 90px;
		flex-basis: 90px;
	}

	.yjsta-nav__main .yjsta-nav__item {
		padding-right: 9px;
		padding-left: 9px;
	}

	.yjsta-consult__image {
		width: 90px;
		min-width: 90px;
	}

	.yjsta-consult > span:last-child {
		padding-right: 8px;
		padding-left: 10px;
	}

	.yjsta-consult strong {
		font-size: 18px;
	}
}

@media (max-width: 820px) {
	.yjsta-nav__inner {
		display: block;
		width: 100%;
	}

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

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

	.yjsta-nav__side .yjsta-nav__item {
		width: auto;
		min-height: 58px;
		flex-basis: auto;
		border: 0;
		border-bottom: 1px solid #edf1f3;
	}

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

	.yjsta-side--top {
		height: auto;
		min-height: 458px;
	}

	.yjsta-side--top .yjsta-board {
		min-height: 348px;
	}

	.yjsta-side--content {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}
}

@media (max-width: 620px) {
	.yjsta-top-layout,
	.yjsta-layout--content {
		width: 100%;
	}

	.yjsta-top-layout {
		padding-top: 0;
	}

	.yjsta-hero {
		min-height: 0;
		aspect-ratio: 930 / 493;
	}

	.yjsta-side--top {
		min-height: 448px;
		padding: 12px;
	}

	.yjsta-side--top .yjsta-board {
		min-height: 338px;
	}

	.yjsta-side--content {
		display: flex;
		padding: 12px;
	}

	.yjsta-consult__image {
		width: 96px;
		min-width: 96px;
	}

	.yjsta-consult strong {
		font-size: clamp(18px, 6vw, 23px);
	}
}

/* v1.2 final cascade corrections (kept last intentionally). */
.yjsta-nav__inner {
	display: block;
}

.yjsta-consult {
	border: 1px solid #c4dfe9;
	background: #f1f8fb;
	box-shadow: 0 4px 14px rgba(36, 101, 130, 0.05);
}

.yjsta-consult:hover {
	border-color: #a8cedd;
	box-shadow: 0 6px 18px rgba(36, 101, 130, 0.09);
}

.yjsta-consult__image {
	border-right-color: #dbeaf0;
	background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1050px) {
	.yjsta-nav__inner {
		display: block;
	}
}

@media (max-width: 620px) {
	.yjsta-side--content {
		display: flex;
		width: 100%;
		padding: 34px 12px 12px;
		flex-direction: column;
	}

	.yjsta-side--content > * {
		width: 100%;
		min-width: 0;
	}
}

/* v1.2.2: banner-aligned menu row, clear hero, equal tabs and partner marks. */
.yjsta-nav__inner {
	display: grid;
	grid-template-columns: minmax(0, 2.25fr) minmax(280px, 1fr);
	align-items: stretch;
	gap: 24px;
}

.yjsta-nav__main {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	column-gap: 0;
}

.yjsta-nav__main .yjsta-nav__item:first-child {
	align-items: flex-start;
	text-align: left;
}

.yjsta-nav__main .yjsta-nav__item:last-child {
	align-items: flex-end;
	text-align: right;
}

.yjsta-nav__account {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
	font-size: 13px;
}

.yjsta-nav__account > a {
	color: #6d7c85;
	white-space: nowrap;
}

.yjsta-nav__account > a:hover {
	color: var(--yjsta-primary);
}

.yjsta-nav__account .yjsta-nav__classroom {
	min-width: 104px;
	padding: 11px 14px;
	border: 1px solid #dce6eb;
	background: #f8fafb;
	color: var(--yjsta-secondary);
	font-weight: 850;
	text-align: center;
}

.yjsta-hero--clean .yjsta-hero__shade {
	display: none;
}

.yjsta-hero--clean .yjsta-hero__content {
	top: auto;
	bottom: 20px;
	left: 20px;
	display: block;
	max-width: none;
	padding: 0;
	transform: none;
}

.yjsta-hero--clean .yjsta-hero__actions {
	margin-top: 0;
}

.yjsta-hero--clean .yjsta-button {
	box-shadow: none;
}

.yjsta-tabs--three,
.yjsta-side--top .yjsta-tabs--three {
	display: grid;
	min-height: 70px;
	padding: 0;
	align-items: stretch;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}

.yjsta-tabs--three button,
.yjsta-side--top .yjsta-tabs--three button {
	display: flex;
	min-width: 0;
	min-height: 69px;
	padding: 5px 4px 14px;
	align-items: flex-end;
	justify-content: center;
	font-size: 15px;
	text-align: center;
}

.yjsta-tabs--three button::after {
	right: 24%;
	left: 24%;
}

.yjsta-partners {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.yjsta-partners > div {
	display: flex;
	min-width: 0;
	height: 94px;
	align-items: center;
	justify-content: center;
	background: #fff;
}

.yjsta-partners img {
	display: block;
	width: 100%;
	height: 84px;
	object-fit: contain;
}

.yjsta-instructor {
	grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.4fr);
	min-height: 360px;
}

.yjsta-instructor__photo {
	min-height: 360px;
	margin: 0;
}

.yjsta-instructor__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1050px) {
	.yjsta-nav__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 278px;
		gap: 18px;
	}

	.yjsta-nav__account {
		gap: 14px;
	}

	.yjsta-nav__account .yjsta-nav__classroom {
		min-width: 92px;
		padding-right: 10px;
		padding-left: 10px;
	}
}

@media (max-width: 820px) {
	.yjsta-nav__inner {
		display: block;
		width: 100%;
		padding: 0;
	}

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

	.yjsta-nav__main .yjsta-nav__item:first-child,
	.yjsta-nav__main .yjsta-nav__item:last-child {
		align-items: center;
		text-align: center;
	}

	.yjsta-nav__account {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0;
		border-top: 1px solid #edf1f3;
	}

	.yjsta-nav__account > a,
	.yjsta-nav__account .yjsta-nav__classroom {
		display: flex;
		min-height: 54px;
		padding: 8px 12px;
		align-items: center;
		justify-content: center;
		border: 0;
		background: #f8fafb;
	}

	.yjsta-instructor {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.yjsta-hero--clean .yjsta-hero__content {
		bottom: 14px;
		left: 14px;
		max-width: none;
		padding: 0;
	}

	.yjsta-tabs--three button,
	.yjsta-side--top .yjsta-tabs--three button {
		padding-right: 2px;
		padding-left: 2px;
		font-size: 13px;
	}

	.yjsta-partners {
		gap: 8px;
	}

	.yjsta-partners > div {
		height: 84px;
	}

	.yjsta-partners img {
		height: 74px;
	}

	.yjsta-instructor__photo {
		min-height: 0;
		aspect-ratio: 1.3 / 1;
	}
}

/* v1.2.3: refined menu copy, brighter hero, contained consultation and full business footer. */
.yjsta-tabs--three,
.yjsta-side--top .yjsta-tabs--three {
	min-height: 56px;
	flex-basis: 56px;
}

.yjsta-tabs--three button,
.yjsta-side--top .yjsta-tabs--three button {
	min-height: 55px;
	padding: 0 4px;
	align-items: center;
}

.yjsta-hero--clean .yjsta-hero__image {
	filter: brightness(1.08) saturate(1.03);
}

.yjsta-consult {
	overflow: hidden;
	box-sizing: border-box;
}

.yjsta-consult__image {
	display: flex;
	height: 94px;
	max-height: 100%;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.yjsta-consult__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.yjsta-consult strong {
	color: #0b719f;
}

.yjsta-partners img {
	image-rendering: auto;
	filter: contrast(1.04) saturate(1.03);
}

.yjsta-footer {
	border-top: 1px solid #dce4e8;
	background: #f5f8fa;
	color: #687984;
}

.yjsta-footer .yjsta-container {
	width: min(calc(100% - 28px), 1390px);
}

.yjsta-footer__contact {
	display: flex;
	min-height: 64px;
	padding: 0;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-bottom: 1px solid #dfe6ea;
}

.yjsta-footer__contact-main {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 12px;
}

.yjsta-footer__contact-main > span {
	color: #263f4d;
	font-size: 14px;
	font-weight: 850;
	white-space: nowrap;
}

.yjsta-footer__contact-main > strong {
	color: #236684;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.yjsta-footer__contact-main > em {
	padding: 0 14px;
	border-right: 1px solid #d9e1e5;
	color: #87949c;
	font-size: 12px;
	font-style: normal;
	white-space: nowrap;
}

.yjsta-footer__contact-main > a {
	margin-left: 0;
	color: #768690;
	font-size: 12px;
	white-space: nowrap;
}

.yjsta-footer__contact > nav {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 12px;
	white-space: nowrap;
}

.yjsta-footer__contact > nav a {
	color: #75858e;
}

.yjsta-footer__contact > nav a.is-strong {
	color: #263e4c;
	font-weight: 850;
}

.yjsta-footer__business {
	display: grid;
	min-height: 104px;
	padding: 16px 0 14px;
	align-items: stretch;
	grid-template-columns: 205px minmax(0, 1fr);
}

.yjsta-footer__brand {
	display: flex;
	padding-right: 20px;
	flex-direction: column;
	justify-content: center;
	border-right: 2px solid #9cc5d7;
}

.yjsta-footer__brand strong {
	color: #426b7d;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.055em;
}

.yjsta-footer__brand span {
	margin-top: 5px;
	color: #7191a0;
	font-size: 8px;
	font-weight: 750;
	line-height: 1.25;
	letter-spacing: 0.025em;
}

.yjsta-footer__details {
	min-width: 0;
	padding-left: 18px;
}

.yjsta-footer__info-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.45fr 1.45fr;
	column-gap: 28px;
	row-gap: 9px;
}

.yjsta-footer__info-grid span,
.yjsta-footer__details p {
	color: #7f8d95;
	font-size: 11px;
	line-height: 1.35;
}

.yjsta-footer__info-grid b,
.yjsta-footer__details p b {
	margin-right: 7px;
	color: #5c6f7b;
	font-weight: 850;
}

.yjsta-footer__details p {
	margin: 8px 0 0;
	padding-top: 7px;
	border-top: 1px solid #e1e7ea;
}

@media (max-width: 1050px) {
	.yjsta-footer__contact {
		gap: 14px;
	}

	.yjsta-footer__contact-main {
		gap: 8px;
	}

	.yjsta-footer__contact-main > em {
		padding-right: 8px;
		padding-left: 8px;
	}

	.yjsta-footer__contact > nav {
		gap: 12px;
	}

	.yjsta-footer__info-grid {
		column-gap: 14px;
	}
}

@media (max-width: 820px) {
	.yjsta-footer__contact {
		min-height: 0;
		padding: 15px 0;
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.yjsta-footer__contact-main {
		flex-wrap: wrap;
	}

	.yjsta-footer__business {
		grid-template-columns: 175px minmax(0, 1fr);
	}

	.yjsta-footer__info-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 620px) {
	.yjsta-footer__contact-main > em {
		width: 100%;
		padding: 0;
		border-right: 0;
	}

	.yjsta-footer__business {
		grid-template-columns: 1fr;
		padding-top: 0;
	}

	.yjsta-footer__brand {
		padding: 16px 0;
		border-right: 0;
		border-bottom: 2px solid #9cc5d7;
	}

	.yjsta-footer__details {
		padding: 16px 0 0;
	}

	.yjsta-footer__info-grid {
		grid-template-columns: 1fr;
		row-gap: 7px;
	}
}

/* v1.3.2: four-slide water education hero */
.yjsta-hero--slider {
	position: relative;
	display: block;
	isolation: isolate;
	background: #edf7fb;
}

.yjsta-hero__track,
.yjsta-hero__slide {
	position: absolute;
	inset: 0;
}

.yjsta-hero__slide {
	z-index: 0;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 700ms ease, visibility 700ms ease;
}

.yjsta-hero__slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.yjsta-hero--slider .yjsta-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.yjsta-hero__slide--photo .yjsta-hero__image {
	filter: none;
}

.yjsta-hero__veil,
.yjsta-hero__slide--light::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: '';
	pointer-events: none;
}

.yjsta-hero__veil {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 253, 255, 0.82) 36%, rgba(239, 249, 253, 0.26) 60%, rgba(255, 255, 255, 0) 78%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02) 56%, rgba(220, 242, 250, 0.10) 100%);
}

.yjsta-hero__slide--light::after {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.14) 48%, rgba(255, 255, 255, 0) 66%);
}

.yjsta-hero__copy {
	position: absolute;
	top: 50%;
	left: clamp(28px, 4.2vw, 58px);
	z-index: 2;
	width: min(53%, 660px);
	transform: translateY(-50%);
	color: #fff;
}

.yjsta-hero__slide--light .yjsta-hero__copy {
	color: #142f46;
}

.yjsta-hero__slide--photo .yjsta-hero__copy {
	color: #142f46;
}

.yjsta-hero__slide--instructor .yjsta-hero__copy {
	width: min(54%, 675px);
}

.yjsta-hero__eyebrow {
	margin: 0 0 11px !important;
	color: #bdeaff;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.15em;
}

.yjsta-hero__slide--light .yjsta-hero__eyebrow {
	color: #087ba8;
}

.yjsta-hero__slide--photo .yjsta-hero__eyebrow {
	color: #087ba8;
}

.yjsta-hero--slider h1,
.yjsta-hero--slider h2 {
	margin: 0 !important;
	font-size: clamp(30px, 2.75vw, 45px);
	font-weight: 900;
	line-height: 1.16;
	letter-spacing: -0.055em;
}

.yjsta-hero--slider h1 {
	color: #0b3f80;
	text-shadow: none;
}

.yjsta-hero--slider h2 {
	color: #0b3f80;
}

.yjsta-hero__lead {
	max-width: 610px;
	margin: 15px 0 0 !important;
	font-size: clamp(14px, 1.22vw, 18px);
	font-weight: 650;
	line-height: 1.66;
	letter-spacing: -0.025em;
}

.yjsta-hero__slide--photo .yjsta-hero__lead {
	color: #294657;
	text-shadow: none;
}

.yjsta-hero__pills,
.yjsta-hero__feature-list,
.yjsta-hero__check-list {
	margin: 19px 0 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.yjsta-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.yjsta-hero__pills li {
	padding: 7px 12px;
	border: 1px solid rgba(8, 127, 175, 0.35);
	background: rgba(255, 255, 255, 0.82);
	color: #0b5f86;
	font-size: 12px;
	font-weight: 850;
}

.yjsta-hero__promise {
	margin: 14px 0 0 !important;
	font-size: 13px;
	font-weight: 750;
	letter-spacing: -0.025em;
}

.yjsta-hero__slide--photo .yjsta-hero__promise {
	color: #0b5f86;
}

.yjsta-hero__feature-list {
	display: grid;
	max-width: 600px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.yjsta-hero__feature-list li {
	min-width: 0;
	padding: 12px 13px;
	border-top: 3px solid #1789bc;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 8px 24px rgba(55, 117, 146, 0.10);
}

.yjsta-hero__feature-list strong,
.yjsta-hero__feature-list span {
	display: block;
}

.yjsta-hero__feature-list strong {
	color: #0b4c88;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.yjsta-hero__feature-list span {
	margin-top: 5px;
	color: #4c6574;
	font-size: 10px;
	line-height: 1.45;
}

.yjsta-hero__check-list {
	display: grid;
	max-width: 560px;
	gap: 9px;
}

.yjsta-hero__check-list li {
	position: relative;
	min-height: 25px;
	padding-left: 35px;
	color: #243d50;
	font-size: clamp(13px, 1.05vw, 16px);
	font-weight: 760;
	line-height: 1.55;
	letter-spacing: -0.03em;
}

.yjsta-hero__check-list li::before {
	position: absolute;
	top: 1px;
	left: 0;
	display: grid;
	width: 23px;
	height: 23px;
	place-items: center;
	border-radius: 50%;
	background: #0f70b5;
	color: #fff;
	content: '✓';
	font-size: 13px;
	font-weight: 900;
}

.yjsta-hero--slider .yjsta-hero__actions {
	display: flex;
	margin-top: 20px;
	flex-wrap: wrap;
	gap: 8px;
}

.yjsta-hero--slider .yjsta-button {
	min-height: 44px;
	padding: 0 20px;
	border: 1px solid transparent;
	box-shadow: 0 8px 22px rgba(5, 55, 80, 0.13);
}

.yjsta-hero--slider .yjsta-button--primary {
	background: #087faf;
}

.yjsta-hero--slider .yjsta-button--dark {
	background: rgba(4, 42, 64, 0.94);
}

.yjsta-hero--slider .yjsta-button--outline {
	border-color: #1684b2;
	background: rgba(255, 255, 255, 0.80);
	color: #0a5274 !important;
}

.yjsta-hero__dots {
	position: absolute;
	right: 20px;
	bottom: 17px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 7px;
}

.yjsta-hero__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid rgba(5, 72, 104, 0.55);
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 1px 5px rgba(4, 40, 60, 0.18);
	cursor: pointer;
	transition: width 220ms ease, background 220ms ease;
}

.yjsta-hero__dots button.is-active {
	width: 26px;
	background: #0785b5;
}

@media (max-width: 1020px) {
	.yjsta-hero__copy {
		left: 28px;
		width: 58%;
	}

	.yjsta-hero__feature-list {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.yjsta-hero__feature-list li {
		padding: 7px 10px;
	}

	.yjsta-hero__feature-list span {
		display: none;
	}
}

@media (max-width: 820px) {
	.yjsta-hero--slider {
		aspect-ratio: 5 / 4;
	}

	.yjsta-hero__copy {
		left: 24px;
		width: 64%;
	}

	.yjsta-hero--slider h1,
	.yjsta-hero--slider h2 {
		font-size: clamp(28px, 5vw, 38px);
	}

	.yjsta-hero__slide--light::after {
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.90) 57%, rgba(255, 255, 255, 0.20) 100%);
	}
}

@media (max-width: 620px) {
	.yjsta-hero--slider {
		min-height: 475px;
		aspect-ratio: auto;
	}

	.yjsta-hero--slider .yjsta-hero__image {
		object-position: 70% center;
	}

	.yjsta-hero__slide--photo .yjsta-hero__image {
		object-position: center;
	}

	.yjsta-hero__veil {
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 253, 255, 0.90) 68%, rgba(238, 248, 252, 0.60) 100%);
	}

	.yjsta-hero__slide--instructor .yjsta-hero__copy {
		width: calc(100% - 40px);
	}

	.yjsta-hero__copy {
		top: 48%;
		left: 20px;
		width: calc(100% - 40px);
	}

	.yjsta-hero__eyebrow {
		font-size: 8px;
		letter-spacing: 0.10em;
	}

	.yjsta-hero--slider h1,
	.yjsta-hero--slider h2 {
		font-size: clamp(26px, 8vw, 34px);
	}

	.yjsta-hero__lead {
		margin-top: 11px !important;
		font-size: 13px;
		line-height: 1.55;
	}

	.yjsta-hero__pills,
	.yjsta-hero__feature-list,
	.yjsta-hero__check-list {
		margin-top: 12px !important;
	}

	.yjsta-hero__pills li {
		padding: 6px 9px;
		font-size: 10px;
	}

	.yjsta-hero__promise {
		margin-top: 10px !important;
		font-size: 11px;
	}

	.yjsta-hero__feature-list {
		max-width: 92%;
	}

	.yjsta-hero__feature-list li {
		padding: 6px 9px;
	}

	.yjsta-hero__check-list {
		gap: 6px;
	}

	.yjsta-hero__check-list li {
		min-height: 21px;
		padding-left: 29px;
		font-size: 12px;
	}

	.yjsta-hero__check-list li::before {
		width: 20px;
		height: 20px;
		font-size: 11px;
	}

	.yjsta-hero--slider .yjsta-hero__actions {
		margin-top: 14px;
	}

	.yjsta-hero--slider .yjsta-button {
		min-height: 40px;
		padding: 0 13px;
		font-size: 11px;
	}

	.yjsta-hero__dots {
		right: 14px;
		bottom: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yjsta-hero__slide,
	.yjsta-hero__dots button {
		transition: none;
	}
}


/* v1.5.1: stable responsive menu, readable hero copy and compact board rows. */
.yjsta-nav__main {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	column-gap: clamp(10px, 1.65vw, 26px);
}

.yjsta-nav__main .yjsta-nav__item,
.yjsta-nav__main .yjsta-nav__item:first-child,
.yjsta-nav__main .yjsta-nav__item:last-child {
	min-width: 0;
	padding-right: 6px;
	padding-left: 6px;
	align-items: flex-start;
	text-align: left;
}

.yjsta-nav__item strong,
.yjsta-nav__item span {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yjsta-nav__item span {
	letter-spacing: 0;
}

.yjsta-nav__account .yjsta-nav__classroom {
	border-color: #c7e1f1;
	background: #eaf6ff;
	color: #0b6f9c;
}

.yjsta-nav__account .yjsta-nav__classroom:hover {
	border-color: #9fcce5;
	background: #dff1fc;
	color: #075f87;
}

.yjsta-hero__copy,
.yjsta-hero__copy h1,
.yjsta-hero__copy h2,
.yjsta-hero__copy p,
.yjsta-hero__copy li,
.yjsta-hero__copy strong,
.yjsta-hero__copy span {
	word-break: keep-all;
	overflow-wrap: normal;
}

.yjsta-hero__copy h1,
.yjsta-hero__copy h2,
.yjsta-hero__lead,
.yjsta-hero__promise {
	text-wrap: balance;
}

.yjsta-hero__eyebrow {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yjsta-hero--slider .yjsta-button {
	white-space: nowrap;
}

.yjsta-side--top .yjsta-tab-panel:not([hidden]),
.yjsta-info-board--posts .yjsta-tab-panel:not([hidden]) {
	grid-template-rows: repeat(5, 43px);
	align-content: start;
}

.yjsta-board-row,
.yjsta-side--top .yjsta-board-row,
.yjsta-info-board--posts .yjsta-board-row {
	min-height: 43px;
	height: 43px;
	line-height: 1.25;
}

.yjsta-board-row__title,
.yjsta-board-row--message .yjsta-board-row__title {
	font-size: 13px;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.yjsta-board-row time {
	font-size: 10px;
	line-height: 1.2;
}

@media (min-width: 821px) and (max-width: 1180px) {
	.yjsta-nav__main {
		column-gap: 8px;
	}

	.yjsta-nav__item strong {
		font-size: clamp(13px, 1.35vw, 15px);
	}

	.yjsta-nav__item span {
		font-size: 8px;
	}

	.yjsta-hero__copy,
	.yjsta-hero__slide--instructor .yjsta-hero__copy {
		left: 24px;
		width: min(61%, 620px);
	}

	.yjsta-hero--slider h1,
	.yjsta-hero--slider h2 {
		font-size: clamp(27px, 3.35vw, 40px);
	}

	.yjsta-hero__lead {
		font-size: clamp(13px, 1.35vw, 16px);
		line-height: 1.55;
	}
}

@media (max-width: 820px) {
	.yjsta-nav__main .yjsta-nav__item,
	.yjsta-nav__main .yjsta-nav__item:first-child,
	.yjsta-nav__main .yjsta-nav__item:last-child {
		padding-right: 14px;
		padding-left: 14px;
		align-items: flex-start;
		text-align: left;
	}

	.yjsta-nav__account .yjsta-nav__classroom {
		background: #eaf6ff;
	}
}

@media (max-width: 620px) {
	.yjsta-side--top .yjsta-tab-panel:not([hidden]),
	.yjsta-info-board--posts .yjsta-tab-panel:not([hidden]) {
		grid-template-rows: repeat(5, 42px);
	}

	.yjsta-board-row,
	.yjsta-side--top .yjsta-board-row,
	.yjsta-info-board--posts .yjsta-board-row {
		min-height: 42px;
		height: 42px;
	}

	.yjsta-board-row__title,
	.yjsta-board-row--message .yjsta-board-row__title {
		font-size: 12.5px;
	}
}
