.elite-v2-shell {
	box-sizing: border-box;
	width: min( 100%, 1160px );
	margin: 0 auto;
	padding: 32px 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	color: #18202f;
}

.elite-v2-shell *,
.elite-v2-shell *::before,
.elite-v2-shell *::after {
	box-sizing: inherit;
}

.elite-v2-login-shell {
	position: fixed;
	inset: 0;
	z-index: 99998;
	display: grid;
	align-items: center;
	justify-items: center;
	width: 100vw;
	max-width: none;
	min-height: 100vh;
	margin: 0;
	padding: 28px 16px;
	overflow-y: auto;
	background:
		radial-gradient( circle at 18% 10%, rgba( 15, 118, 110, 0.16 ), transparent 28% ),
		radial-gradient( circle at 88% 85%, rgba( 217, 119, 6, 0.12 ), transparent 30% ),
		linear-gradient( 135deg, #f8fafc 0%, #eef4f8 50%, #f8fbfa 100% );
}

body:has(.elite-v2-login-shell) .entry-title,
body:has(.elite-v2-login-shell) .page-title,
body:has(.elite-v2-login-shell) .wp-block-post-title,
body:has(.elite-v2-login-shell) header.entry-header {
	display: none !important;
}

body.admin-bar .elite-v2-login-shell {
	top: 32px;
	min-height: calc( 100vh - 32px );
}

@media ( max-width: 782px ) {
	body.admin-bar .elite-v2-login-shell {
		top: 46px;
		min-height: calc( 100vh - 46px );
	}
}

.elite-v2-card,
.elite-v2-login-card {
	background: #ffffff;
	border: 1px solid #e3e8ef;
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba( 17, 24, 39, 0.1 );
}

.elite-v2-login-card {
	width: min( 100%, 450px );
	margin: 0 auto;
	padding: 38px 34px 34px;
	border: 1px solid rgba( 226, 232, 240, 0.96 );
	border-radius: 16px;
	box-shadow: 0 28px 80px rgba( 15, 23, 42, 0.16 );
}

.elite-v2-login-card::before {
	display: none;
}

.elite-v2-login-branding {
	margin-bottom: 30px;
	text-align: center;
}

.elite-v2-kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0f766e;
}

.elite-v2-login-card h1,
.elite-v2-dashboard h1,
.elite-v2-card h2,
.elite-v2-dashboard-item h3 {
	margin-top: 0;
	color: #101827;
	letter-spacing: 0;
}

.elite-v2-login-card h1 {
	margin-bottom: 10px;
	font-size: 29px;
	font-weight: 850;
	line-height: 1.15;
}

.elite-v2-login-title {
	margin: 18px 0 5px;
	color: #101827;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25;
}

.elite-v2-login-subtitle {
	margin: 0;
	color: #657184;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.elite-v2-form {
	display: grid;
	gap: 18px;
}

.elite-v2-field {
	display: grid;
	gap: 8px;
}

.elite-v2-login-card .elite-v2-form {
	gap: 19px;
}

.elite-v2-form label {
	font-size: 14px;
	font-weight: 800;
	color: #344154;
}

.elite-v2-login-card .elite-v2-form label {
	color: #202b3d;
}

.elite-v2-form input {
	appearance: none;
	width: 100%;
	min-height: 54px;
	padding: 14px 15px;
	border: 1px solid #cdd6e3;
	border-radius: 8px;
	background: #ffffff;
	color: #101827;
	font-size: 16px;
	line-height: 1.3;
	transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.elite-v2-login-card .elite-v2-form input {
	min-height: 56px;
	border-color: #d7dee8;
	border-radius: 12px;
	background: #fbfcfe;
	box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.7 );
}

.elite-v2-form input:focus {
	border-color: #2563eb;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba( 37, 99, 235, 0.14 );
	outline: 0;
}

.elite-v2-login-card .elite-v2-form input:focus {
	border-color: #0f766e;
	box-shadow: 0 0 0 4px rgba( 15, 118, 110, 0.14 );
}

.elite-v2-password-field {
	position: relative;
}

.elite-v2-password-field input {
	padding-right: 82px;
}

.elite-v2-password-toggle {
	position: absolute;
	top: 7px;
	right: 7px;
	min-width: 62px;
	min-height: 42px;
	padding: 8px 10px;
	border: 0;
	border-radius: 10px;
	background: #eef2f7;
	color: #344154;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}

.elite-v2-password-toggle:hover,
.elite-v2-password-toggle:focus {
	background: #dce4ee;
	color: #18202f;
	outline: 0;
}

.elite-v2-form button[type="submit"],
.elite-v2-logout-form button,
.elite-v2-item-download a,
.elite-v2-download-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 0;
	border-radius: 8px;
	background: #2563eb;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.elite-v2-form button[type="submit"] {
	width: 100%;
	min-height: 54px;
	margin-top: 4px;
}

.elite-v2-login-card .elite-v2-form button[type="submit"] {
	border-radius: 12px;
	background: #0f766e;
	box-shadow: 0 14px 26px rgba( 15, 118, 110, 0.24 );
	font-size: 16px;
}

.elite-v2-form button[type="submit"]:hover,
.elite-v2-form button[type="submit"]:focus,
.elite-v2-item-download a:hover,
.elite-v2-item-download a:focus,
.elite-v2-download-button:hover,
.elite-v2-download-button:focus {
	background: #1d4ed8;
	box-shadow: 0 12px 24px rgba( 37, 99, 235, 0.24 );
	color: #ffffff;
	outline: 0;
	transform: translateY( -1px );
}

.elite-v2-login-card .elite-v2-form button[type="submit"]:hover,
.elite-v2-login-card .elite-v2-form button[type="submit"]:focus {
	background: #115e59;
	box-shadow: 0 16px 30px rgba( 15, 118, 110, 0.28 );
}

.elite-v2-logout-form {
	margin: 0;
}

.elite-v2-logout-form button {
	background: #18202f;
	min-width: 108px;
}

.elite-v2-logout-form button:hover,
.elite-v2-logout-form button:focus {
	background: #0f172a;
	box-shadow: 0 12px 24px rgba( 15, 23, 42, 0.2 );
	color: #ffffff;
	outline: 0;
	transform: translateY( -1px );
}

.elite-v2-error {
	margin: 0 0 20px;
	padding: 12px 14px;
	border: 1px solid #fecaca;
	border-left: 4px solid #dc2626;
	border-radius: 8px;
	background: #fff5f5;
	color: #991b1b;
	font-weight: 700;
}

.elite-v2-login-card .elite-v2-error,
.elite-v2-login-card .elite-v2-success {
	margin: 0 0 20px;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.45;
}

.elite-v2-login-card .elite-v2-error {
	border: 1px solid #fecaca;
	border-left: 4px solid #dc2626;
	background: #fff5f5;
	color: #991b1b;
}

.elite-v2-login-card .elite-v2-success {
	border: 1px solid #bbf7d0;
	border-left: 4px solid #16a34a;
	background: #f0fdf4;
	color: #166534;
	font-weight: 700;
}

.elite-v2-unified-login {
	box-sizing: border-box;
	display: grid;
	gap: 18px;
	justify-items: center;
	width: 100vw;
	min-height: 100vh;
	margin-left: calc( 50% - 50vw );
	padding: 32px 16px;
	background:
		radial-gradient( circle at 18% 10%, rgba( 15, 118, 110, 0.16 ), transparent 28% ),
		radial-gradient( circle at 88% 85%, rgba( 217, 119, 6, 0.12 ), transparent 30% ),
		linear-gradient( 135deg, #f8fafc 0%, #eef4f8 50%, #f8fbfa 100% );
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	color: #18202f;
}

.elite-v2-unified-login *,
.elite-v2-unified-login *::before,
.elite-v2-unified-login *::after {
	box-sizing: inherit;
}

.elite-v2-unified-panel-card {
	width: min( 100%, 450px );
	padding: 18px;
	border: 1px solid rgba( 226, 232, 240, 0.96 );
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba( 15, 23, 42, 0.1 );
}

.elite-v2-unified-heading {
	margin-bottom: 16px;
	text-align: center;
}

.elite-v2-unified-heading h1 {
	margin: 0 0 6px;
	color: #101827;
	font-size: 25px;
	line-height: 1.2;
	letter-spacing: 0;
}

.elite-v2-unified-heading p {
	margin: 0;
	color: #657184;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.elite-v2-unified-tabs {
	display: grid;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: 8px;
	padding: 6px;
	border-radius: 14px;
	background: #eef2f7;
}

.elite-v2-unified-tab {
	min-height: 44px;
	padding: 10px 12px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #344154;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	cursor: pointer;
	transition: background 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.elite-v2-unified-tab.is-active {
	background: #ffffff;
	color: #0f766e;
	box-shadow: 0 8px 18px rgba( 15, 23, 42, 0.08 );
}

.elite-v2-unified-panel {
	width: min( 100%, 450px );
}

.elite-v2-unified-panel[hidden] {
	display: none;
}

.elite-v2-unified-login .elite-v2-login-shell {
	position: static;
	inset: auto;
	z-index: auto;
	width: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
	overflow: visible;
	background: transparent;
}

.elite-v2-unified-login .elite-v2-card.elite-v2-login-card {
	width: 100%;
}

.elite-v2-dashboard {
	display: grid;
	gap: 18px;
}

.elite-v2-announcements {
	display: grid;
	gap: 12px;
}

.elite-v2-announcement-banner {
	display: grid;
	grid-template-columns: 48px minmax( 0, 1fr );
	gap: 16px;
	align-items: start;
	padding: 18px;
	border: 1px solid #f7c948;
	border-left: 5px solid #d97706;
	border-radius: 8px;
	background: #fffbeb;
	box-shadow: 0 14px 34px rgba( 120, 53, 15, 0.11 );
}

.elite-v2-announcement-marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #d97706;
	color: #ffffff;
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
}

.elite-v2-announcement-body {
	min-width: 0;
}

.elite-v2-announcement-label {
	margin: 0 0 5px;
	color: #92400e;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.elite-v2-announcement-banner h2 {
	margin: 0 0 8px;
	color: #101827;
	font-size: 20px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.elite-v2-announcement-message {
	color: #344154;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.elite-v2-announcement-message p {
	margin-top: 0;
}

.elite-v2-announcement-message p:last-child {
	margin-bottom: 0;
}

.elite-v2-dashboard-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 24px;
	overflow: hidden;
}

.elite-v2-dashboard-header::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: #0f766e;
	content: "";
}

.elite-v2-dashboard-header h1 {
	margin-bottom: 8px;
	font-size: 30px;
	line-height: 1.15;
}

.elite-v2-header-standard {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	margin: 0;
	padding: 6px 11px;
	border-radius: 8px;
	background: #edf7f5;
	color: #0f766e;
	font-size: 14px;
	font-weight: 800;
}

.elite-v2-header-action {
	flex: 0 0 auto;
}

.elite-v2-overview-grid {
	display: grid;
	grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	gap: 14px;
}

.elite-v2-summary-card {
	position: relative;
	display: grid;
	align-content: space-between;
	min-height: 118px;
	padding: 18px;
	overflow: hidden;
	border: 1px solid #e3e8ef;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba( 17, 24, 39, 0.08 );
}

.elite-v2-summary-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: #2563eb;
	content: "";
}

.elite-v2-summary-card p {
	margin: 0;
	color: #657184;
	font-size: 13px;
	font-weight: 800;
}

.elite-v2-summary-card strong {
	margin-top: 14px;
	color: #101827;
	font-size: 34px;
	line-height: 1;
}

.elite-v2-summary-card-homework::before,
.elite-v2-item-section-homework::before {
	background: #2563eb;
}

.elite-v2-summary-card-notes::before,
.elite-v2-item-section-notes::before {
	background: #7c3aed;
}

.elite-v2-summary-card-notices::before,
.elite-v2-item-section-notices::before {
	background: #d97706;
}

.elite-v2-summary-card-results::before,
.elite-v2-results-section::before {
	background: #16a34a;
}

.elite-v2-download-center::before {
	background: #0ea5e9;
}

.elite-v2-profile-section {
	display: grid;
	grid-template-columns: 132px minmax( 0, 1fr );
	gap: 22px;
	align-items: start;
}

.elite-v2-profile-section::before {
	background: #0f766e;
}

.elite-v2-profile-media img,
.elite-v2-profile-initials {
	display: block;
	width: 112px;
	height: 112px;
	border-radius: 14px;
	box-shadow: 0 12px 26px rgba( 15, 23, 42, 0.14 );
}

.elite-v2-profile-media img {
	object-fit: cover;
	background: #eef2f7;
}

.elite-v2-profile-initials {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0f766e;
	color: #ffffff;
	font-size: 38px;
	font-weight: 900;
}

.elite-v2-profile-content h2 {
	margin: 0 0 16px;
	font-size: 24px;
	line-height: 1.2;
}

.elite-v2-profile-details {
	display: grid;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: 12px;
	margin: 0;
}

.elite-v2-profile-details div {
	min-width: 0;
	padding: 12px;
	border: 1px solid #e7ecf3;
	border-radius: 8px;
	background: #fbfcfe;
}

.elite-v2-profile-details dt {
	margin-bottom: 5px;
	color: #657184;
	font-size: 12px;
	font-weight: 800;
}

.elite-v2-profile-details dd {
	margin: 0;
	color: #101827;
	font-size: 15px;
	font-weight: 800;
	overflow-wrap: anywhere;
	white-space: pre-line;
}

.elite-v2-content-grid {
	display: grid;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: 18px;
}

.elite-v2-download-list {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 14px;
}

.elite-v2-download-card {
	display: grid;
	grid-template-rows: 1fr auto;
	gap: 14px;
	min-width: 0;
	min-height: 168px;
	padding: 16px;
	border: 1px solid #e7ecf3;
	border-radius: 8px;
	background: #fbfcfe;
}

.elite-v2-download-card h3 {
	margin: 0 0 10px;
	color: #101827;
	font-size: 17px;
	line-height: 1.35;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.elite-v2-download-meta {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.elite-v2-download-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 9px;
	border-radius: 8px;
	background: #eef6ff;
	color: #075985;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
}

.elite-v2-download-button {
	width: 100%;
	min-height: 42px;
	padding-inline: 15px;
	font-size: 14px;
	text-decoration: none;
}

.elite-v2-card {
	position: relative;
	min-width: 0;
	padding: 22px;
	overflow: hidden;
}

.elite-v2-card.elite-v2-login-card {
	width: min( 100%, 450px );
	margin-right: auto;
	margin-left: auto;
	padding: 38px 34px 34px;
	overflow: visible;
	border-radius: 16px;
	text-align: left;
}

.elite-v2-login-card .elite-v2-login-branding {
	text-align: center;
}

.elite-v2-login-card .elite-v2-form,
.elite-v2-login-card .elite-v2-field,
.elite-v2-login-card .elite-v2-password-field {
	width: 100%;
	justify-items: stretch;
}

.elite-v2-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: #2563eb;
	content: "";
}

.elite-v2-card.elite-v2-profile-section::before {
	background: #0f766e;
}

.elite-v2-dashboard-header.elite-v2-card::before {
	inset: 0 auto 0 0;
	width: 5px;
	height: 100%;
	background: #0f766e;
}

.elite-v2-card h2 {
	margin-bottom: 18px;
	font-size: 22px;
	line-height: 1.25;
}

.elite-v2-item-list {
	display: grid;
	gap: 14px;
}

.elite-v2-dashboard-item {
	display: grid;
	gap: 10px;
	padding: 16px;
	border: 1px solid #e7ecf3;
	border-radius: 8px;
	background: #fbfcfe;
}

.elite-v2-dashboard-item h3 {
	margin-bottom: 0;
	font-size: 17px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.elite-v2-item-date {
	margin: 0;
	font-size: 13px;
	font-weight: 800;
	color: #657184;
}

.elite-v2-item-content {
	color: #344154;
	font-size: 15px;
	line-height: 1.65;
	overflow-wrap: anywhere;
}

.elite-v2-item-content p {
	margin-top: 0;
}

.elite-v2-item-content p:last-child {
	margin-bottom: 0;
}

.elite-v2-item-download {
	margin: 4px 0 0;
}

.elite-v2-item-download a {
	min-height: 42px;
	padding-inline: 15px;
	font-size: 14px;
}

.elite-v2-dashboard-result {
	background: #ffffff;
}

.elite-v2-result-details {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 10px;
	margin: 2px 0 0;
	color: #344154;
}

.elite-v2-result-details div {
	min-width: 0;
	padding: 12px;
	border: 1px solid #e7ecf3;
	border-radius: 8px;
	background: #fbfcfe;
}

.elite-v2-result-details dt {
	margin-bottom: 5px;
	color: #657184;
	font-size: 12px;
	font-weight: 800;
}

.elite-v2-result-details dd {
	margin: 0;
	color: #101827;
	font-size: 15px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.elite-v2-card > p {
	color: #657184;
	font-weight: 700;
}

@media ( max-width: 900px ) {
	.elite-v2-overview-grid,
	.elite-v2-content-grid {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}

	.elite-v2-result-details {
		grid-template-columns: 1fr;
	}

	.elite-v2-download-list {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}

	.elite-v2-profile-details {
		grid-template-columns: 1fr;
	}
}

@media ( max-width: 680px ) {
	.elite-v2-shell {
		padding: 18px 12px;
	}

	.elite-v2-login-shell {
		min-height: 100vh;
		padding: 20px 12px;
	}

	.elite-v2-unified-login {
		padding: 20px 12px;
	}

	.elite-v2-unified-login .elite-v2-login-shell {
		min-height: 0;
		padding: 0;
	}

	.elite-v2-login-card {
		padding: 30px 22px 26px;
		border-radius: 14px;
	}

	.elite-v2-login-card h1 {
		font-size: 25px;
	}

	.elite-v2-dashboard {
		gap: 14px;
	}

	.elite-v2-dashboard-header {
		display: grid;
		padding: 20px;
	}

	.elite-v2-dashboard-header h1 {
		font-size: 25px;
	}

	.elite-v2-header-action,
	.elite-v2-logout-form button,
	.elite-v2-item-download a,
	.elite-v2-download-button {
		width: 100%;
	}

	.elite-v2-overview-grid,
	.elite-v2-content-grid,
	.elite-v2-download-list {
		grid-template-columns: 1fr;
	}

	.elite-v2-summary-card {
		min-height: 102px;
	}

	.elite-v2-profile-section {
		grid-template-columns: 1fr;
	}

	.elite-v2-profile-media img,
	.elite-v2-profile-initials {
		width: 96px;
		height: 96px;
	}

	.elite-v2-card {
		padding: 18px;
	}

	.elite-v2-card.elite-v2-login-card {
		padding: 30px 22px 26px;
		border-radius: 14px;
	}

	.elite-v2-dashboard-item {
		padding: 14px;
	}

	.elite-v2-announcement-banner {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 16px;
	}

	.elite-v2-announcement-marker {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.elite-v2-announcement-banner h2 {
		font-size: 18px;
	}
}

@media ( max-width: 420px ) {
	.elite-v2-login-card {
		padding: 24px 18px;
	}

	.elite-v2-password-field input {
		padding-right: 72px;
	}

	.elite-v2-password-toggle {
		min-width: 58px;
	}
}
