/* Dedicated classroom app surface: remove redundant theme chrome from installed app pages. */
body.ct-app-page .site-header,
body.ct-app-page #masthead,
body.ct-app-page .entry-header,
body.ct-app-page .site-footer,
body.ct-app-page footer.site-footer,
body.ct-app-page .ast-breadcrumbs-wrapper,
body.ct-app-page .wp-site-blocks > header.wp-block-template-part,
body.ct-app-page .wp-site-blocks > footer.wp-block-template-part,
body.ct-app-page .wp-block-post-title {
	display: none !important;
}

body.ct-app-page,
body.ct-app-page #page,
body.ct-app-page .site-content,
body.ct-app-page .content-area,
body.ct-app-page .site-main,
body.ct-app-page .entry-content {
	background: #f7f9fc;
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

body.ct-app-page #primary {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

body.ct-app-page .wp-site-blocks > main,
body.ct-app-page .wp-site-blocks > main > .wp-block-group {
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

body.ct-app-page #ct-root {
	min-height: 100vh;
}

.ct-account-access {
	--ct-access-ink: #0b1220;
	--ct-access-blue: #1f5eff;
	--ct-access-blue-dark: #1548c7;
	--ct-access-slate: #526072;
	--ct-access-line: #d8e0eb;
	--ct-access-paper: #fff;
	color: var(--ct-access-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ct-account-access {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: clamp(48px, 8vw, 96px) 0;
}

.ct-account-header {
	max-width: 760px;
	margin-bottom: clamp(28px, 5vw, 52px);
}

.ct-account-header h1,
.ct-account-card h1,
.ct-account-card h2 {
	margin: 0 0 14px;
	color: var(--ct-access-ink);
	font-weight: 780;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.ct-account-header h1 {
	font-size: clamp(2.25rem, 6vw, 4.4rem);
}

.ct-account-card h1,
.ct-account-card h2 {
	font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.ct-account-header > p:last-child,
.ct-account-card > p {
	color: var(--ct-access-slate);
	font-size: 1rem;
	line-height: 1.65;
}

.ct-account-eyebrow,
.ct-account-card__label {
	margin: 0 0 12px !important;
	color: var(--ct-access-blue) !important;
	font-size: 0.72rem !important;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.ct-account-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.ct-account-card {
	position: relative;
	min-width: 0;
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid var(--ct-access-line);
	border-radius: 8px;
	background: var(--ct-access-paper);
	box-shadow: 0 18px 50px rgba(11, 18, 32, 0.06);
}

.ct-account-card::before {
	position: absolute;
	top: -1px;
	left: clamp(24px, 4vw, 42px);
	width: 72px;
	height: 3px;
	background: var(--ct-access-blue);
	content: "";
}

.ct-account-access--single {
	display: grid;
	min-height: 100vh;
	place-items: center;
}

.ct-account-access--single .ct-account-card {
	max-width: 680px;
}

.ct-account-button {
	display: inline-flex;
	margin-top: 10px;
	padding: 11px 18px;
	border: 1px solid var(--ct-access-blue);
	border-radius: 6px;
	background: var(--ct-access-blue);
	color: #fff !important;
	font-weight: 750;
	text-decoration: none !important;
}

.ct-account-button:hover {
	border-color: var(--ct-access-blue-dark);
	background: var(--ct-access-blue-dark);
}

.ct-account-button:focus-visible,
.ct-account-card a:focus-visible,
.ct-account-card button:focus-visible,
.ct-account-card input:focus-visible,
.ct-account-card select:focus-visible {
	outline: 3px solid #f59e0b !important;
	outline-offset: 3px;
}

@media (max-width: 760px) {
	.ct-account-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ct-account-access * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
