/* ==========================================================================
   ARCTIC — vx-* view system
   Course catalog, course detail, document (legal) pages.
   Loads after arctic.css; relies on its custom properties.
   ========================================================================== */

.vx-sec {
	position: relative;
	overflow: hidden;
	background: var(--ab-wash);
	padding: clamp(48px, 6vw, 88px) 0;
}

.vx-sec--paper {
	background: #fff;
}

.vx-sec--tint {
	background: var(--arctic-blue-1);
}

.vx-sec .auto-container,
.vx-hero .auto-container {
	position: relative;
	z-index: 1;
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
	padding: 0 !important;
	max-width: none;
}

.vx-glow {
	position: absolute;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	filter: blur(140px);
	opacity: .3;
	pointer-events: none;
}

.vx-glow--a {
	background: var(--arctic-blue-4);
	top: -190px;
	left: -150px;
}

.vx-glow--b {
	background: var(--arctic-blue-3);
	bottom: -230px;
	right: -140px;
}

.vx-mono {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
}

/* ---------- buttons ---------- */
.vx-btn,
button.vx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 15px 27px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	font-family: var(--ab-font);
	font-size: 15px;
	font-weight: 650;
	cursor: pointer;
	text-decoration: none;
	transition: .25s;
}

.vx-btn i,
button.vx-btn i {
	font-size: 13px;
	transition: transform .25s;
}

.vx-btn:hover i,
button.vx-btn:hover i {
	transform: translateX(3px);
}

.vx-btn--go,
button.vx-btn--go {
	background: var(--ab-ink);
	color: #fff;
}

.vx-btn--go:hover,
button.vx-btn--go:hover {
	background: var(--arctic-blue-5);
	color: #04252f;
	transform: translateY(-2px);
}

.vx-btn--mint,
button.vx-btn--mint {
	background: var(--arctic-blue-5);
	color: #04252f;
}

.vx-btn--mint:hover,
button.vx-btn--mint:hover {
	background: var(--arctic-blue-2);
	color: #04252f;
	transform: translateY(-2px);
}

.vx-btn--ghost,
button.vx-btn--ghost {
	background: #fff;
	border-color: var(--ab-line);
	color: var(--ab-ink);
}

.vx-btn--ghost:hover,
button.vx-btn--ghost:hover {
	border-color: var(--arctic-blue-4);
	color: var(--arctic-blue-5);
}

/* ==========================================================================
   CATALOG — toolbar, filters, grid
   ========================================================================== */
.vx-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 40px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 28px;
}

.vx-toolbar__eyebrow {
	display: block;
	color: var(--arctic-blue-5);
	margin-bottom: 12px;
}

.vx-toolbar__title {
	font-family: var(--ab-head);
	font-weight: 600;
	font-size: clamp(28px, 3.8vw, 44px);
	line-height: 1.1;
	letter-spacing: -.015em;
	margin: 0 0 12px;
	color: var(--ab-ink);
}

.vx-toolbar__lede {
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--ab-slate);
	max-width: 62ch;
	margin: 0;
}

.vx-toolbar__count {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 0;
	color: var(--ab-muted);
}

.vx-toolbar__count-num {
	font-family: var(--ab-head);
	font-size: 42px;
	line-height: 1;
	color: var(--arctic-blue-5);
}

.vx-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--ab-line);
}

.vx-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 20px;
	border-radius: 999px;
	background: #fff;
	border: 1.5px solid var(--ab-line);
	font-size: 14px;
	font-weight: 600;
	color: var(--ab-ink);
	text-decoration: none;
	transition: .25s;
}

.vx-chip i {
	font-size: 12px;
	color: var(--arctic-blue-5);
}

.vx-chip:hover {
	border-color: var(--arctic-blue-4);
	color: var(--arctic-blue-5);
}

.vx-chip.is-active {
	background: var(--ab-ink);
	border-color: var(--ab-ink);
	color: #fff;
}

.vx-chip.is-active i {
	color: var(--arctic-blue-3);
}

.vx-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 24px;
}

.vx-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-r-lg);
	overflow: hidden;
	transition: transform .35s, box-shadow .35s, border-color .35s;
}

.vx-card:hover {
	transform: translateY(-6px);
	border-color: var(--arctic-blue-3);
	box-shadow: var(--ab-shadow-lg);
}

.vx-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--arctic-blue-1);
}

.vx-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s;
}

.vx-card:hover .vx-card__media img {
	transform: scale(1.07);
}

.vx-card__fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-size: 30px;
	color: var(--arctic-blue-4);
}

.vx-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(8px);
	color: var(--ab-ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 7px 13px;
	border-radius: 999px;
}

.vx-card__body {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 22px;
	flex: 1;
}

.vx-card__title {
	font-size: 18.5px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.vx-card__title a {
	color: var(--ab-ink);
	text-decoration: none;
}

.vx-card__title a:hover {
	color: var(--arctic-blue-5);
}

.vx-card__desc {
	font-size: 14px;
	line-height: 1.7;
	color: var(--ab-slate);
	margin: 0;
}

.vx-card__foot {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--ab-line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.vx-card__price-num {
	display: block;
	font-size: 19px;
	font-weight: 750;
	color: var(--ab-ink);
}

.vx-card__price-num .vx-mono {
	font-size: 11px;
	color: var(--ab-muted);
	margin-left: 4px;
}

.vx-card__price-label {
	display: block;
	color: var(--ab-muted);
	margin-top: 3px;
}

.vx-card__go {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
	font-size: 13px;
	transition: .25s;
}

.vx-card:hover .vx-card__go {
	background: var(--arctic-blue-5);
	color: #fff;
}

.vx-pager {
	margin-top: 34px;
	display: flex;
	justify-content: center;
}

/* empty */
.vx-empty {
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-r-xl);
	padding: clamp(46px, 6vw, 76px) 30px;
	text-align: center;
}

.vx-empty__ico {
	width: 86px;
	height: 86px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
	font-size: 31px;
}

.vx-empty__label {
	display: block;
	color: var(--ab-muted);
	margin-bottom: 10px;
}

.vx-empty__title {
	font-family: var(--ab-head);
	font-weight: 600;
	font-size: clamp(24px, 3vw, 34px);
	margin: 0 0 24px;
	color: var(--ab-ink);
}

/* ==========================================================================
   COURSE DETAIL — hero
   ========================================================================== */
.vx-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(170deg, #fff 0%, var(--arctic-blue-1) 100%);
	padding: clamp(46px, 6vw, 84px) 0;
}

.vx-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(30px, 5vw, 64px);
	align-items: center;
}

.vx-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--arctic-blue-5);
	margin-bottom: 16px;
}

.vx-hero__kicker-bar {
	width: 28px;
	height: 2px;
	border-radius: 2px;
	background: var(--arctic-blue-4);
}

.vx-hero__title {
	font-family: var(--ab-head);
	font-weight: 600;
	font-size: clamp(32px, 4.6vw, 56px);
	line-height: 1.06;
	letter-spacing: -.02em;
	margin: 0 0 18px;
	color: var(--ab-ink);
}

.vx-hero__lede {
	font-size: 16.5px;
	line-height: 1.75;
	color: var(--ab-slate);
	max-width: 56ch;
	margin: 0 0 28px;
}

.vx-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
}

.vx-spec {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 13px 20px;
	border-radius: var(--ab-r);
	background: #fff;
	border: 1px solid var(--ab-line);
	box-shadow: var(--ab-shadow);
}

.vx-spec__ico {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
	font-size: 14px;
}

.vx-spec__label {
	display: block;
	color: var(--ab-muted);
	margin-bottom: 3px;
}

.vx-spec__value {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--ab-ink);
}

.vx-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* cover */
.vx-cover {
	position: relative;
}

.vx-cover__frame {
	margin: 0;
	border-radius: var(--ab-r-xl);
	overflow: hidden;
	aspect-ratio: 4/3.4;
	box-shadow: var(--ab-shadow-lg);
	background: var(--ab-ink);
}

.vx-cover__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vx-cover__price {
	position: absolute;
	left: -20px;
	bottom: 60px;
	background: #fff;
	border-radius: var(--ab-r);
	box-shadow: var(--ab-shadow-lg);
	padding: 16px 22px;
}

.vx-cover__price-label {
	display: block;
	color: var(--ab-muted);
	margin-bottom: 5px;
}

.vx-cover__price-num {
	font-family: var(--ab-head);
	font-size: 28px;
	color: var(--arctic-blue-5);
	line-height: 1;
}

.vx-cover__price-num span {
	font-family: var(--ab-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ab-muted);
	margin-left: 6px;
}

.vx-cover__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 14px;
}

.vx-cover__thumbs img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--ab-r-sm);
	border: 1px solid var(--ab-line);
}

/* ==========================================================================
   COURSE DETAIL — overview
   ========================================================================== */
.vx-brief {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: clamp(26px, 4vw, 60px);
	align-items: start;
}

.vx-brief__aside {
	position: sticky;
	top: 120px;
}

.vx-brief__label {
	display: block;
	color: var(--arctic-blue-5);
	margin-bottom: 14px;
}

.vx-brief__rule {
	display: block;
	width: 46px;
	height: 3px;
	border-radius: 3px;
	background: var(--ab-grad);
	margin-bottom: 14px;
}

.vx-brief__note {
	font-size: 14px;
	color: var(--ab-muted);
	margin: 0;
}

.vx-brief__body p {
	font-size: 16.5px;
	line-height: 1.9;
	color: var(--ab-slate);
	margin: 0 0 20px;
}

.vx-brief__body p:first-child::first-letter {
	float: left;
	font-family: var(--ab-head);
	font-size: 62px;
	line-height: .84;
	padding: 6px 12px 0 0;
	color: var(--arctic-blue-5);
}

/* ==========================================================================
   COURSE DETAIL — levels
   ========================================================================== */
.vx-path__head {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 46px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 34px;
}

.vx-path__badge {
	display: block;
	color: var(--arctic-blue-3);
	margin-bottom: 12px;
}

.vx-path__title {
	font-family: var(--ab-head);
	font-weight: 600;
	font-size: clamp(28px, 3.6vw, 44px);
	line-height: 1.1;
	margin: 0;
	color: #fff;
}

.vx-path__lede {
	font-size: 15.5px;
	line-height: 1.75;
	color: rgba(202, 240, 248, .75);
	max-width: 52ch;
	margin: 0;
}

.vx-levels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 20px;
}

.vx-level {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-r-lg);
	overflow: hidden;
	transition: transform .3s, box-shadow .3s;
}

.vx-level:hover {
	transform: translateY(-5px);
	box-shadow: var(--ab-shadow-lg);
}

.vx-level__head {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px 26px;
	background: var(--ab-wash);
	border-bottom: 1px solid var(--ab-line);
}

.vx-level__num {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 15px;
	display: grid;
	place-items: center;
	background: var(--ab-grad);
	color: #fff;
	font-size: 16px;
	font-weight: 750;
}

.vx-level__step {
	display: block;
	color: var(--ab-muted);
	margin-bottom: 4px;
}

.vx-level__name {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	color: var(--ab-ink);
}

.vx-level__body {
	flex: 1;
	padding: 24px 26px;
	display: grid;
	gap: 20px;
}

.vx-block__label {
	display: block;
	color: var(--arctic-blue-5);
	margin-bottom: 8px;
}

.vx-block__text {
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--ab-slate);
	margin: 0;
}

.vx-checks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

.vx-checks li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--ab-slate);
}

.vx-checks i {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	margin-top: 2px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
	font-size: 9px;
}

.vx-level__foot {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: space-between;
	padding: 22px 26px;
	background: var(--ab-wash);
	border-top: 1px solid var(--ab-line);
}

.vx-level__price-num {
	font-family: var(--ab-head);
	font-size: 28px;
	color: var(--arctic-blue-5);
}

.vx-level__price-unit {
	color: var(--ab-muted);
	margin-left: 6px;
}

/* ==========================================================================
   DOCUMENT PAGES (legal / static)
   ========================================================================== */
.vx-doc-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 950;
	pointer-events: none;
}

.vx-doc-progress span {
	display: block;
	height: 100%;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: var(--ab-grad);
}

.vx-doc {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}

.vx-doc__aside {
	position: sticky;
	top: 120px;
	display: grid;
	gap: 14px;
}

.vx-doc__card {
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-r-lg);
	padding: 22px;
}

.vx-doc__facts {
	margin: 0;
	display: grid;
	gap: 16px;
}

.vx-doc__fact dt {
	color: var(--ab-muted);
	margin-bottom: 5px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.vx-doc__fact dd {
	margin: 0;
	font-size: 14.5px;
	font-weight: 650;
	color: var(--ab-ink);
	line-height: 1.5;
}

.vx-doc__toc {
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-r-lg);
	padding: 22px;
}

.vx-doc__toc-label {
	color: var(--ab-muted);
	margin: 0 0 14px;
}

.vx-doc__toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 3px;
	max-height: 44vh;
	overflow-y: auto;
}

.vx-doc__toc-list a {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 9px 11px;
	border-radius: 10px;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--ab-slate);
	text-decoration: none;
	transition: .2s;
}

.vx-doc__toc-list a:hover {
	background: var(--ab-wash);
	color: var(--ab-ink);
}

.vx-doc__toc-list a.is-current {
	background: var(--arctic-blue-1);
	color: var(--ab-ink);
	font-weight: 650;
}

.vx-doc__toc-num {
	color: var(--arctic-blue-5);
	font-size: 10.5px;
	padding-top: 2px;
}

.vx-doc__sheet {
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-r-xl);
	padding: clamp(28px, 4vw, 56px);
	font-size: 16px;
	line-height: 1.9;
	color: var(--ab-slate);
}

.vx-doc__dupe {
	display: none;
}

.vx-doc__sheet h1,
.vx-doc__sheet h2,
.vx-doc__sheet h3,
.vx-doc__sheet h4 {
	font-family: var(--ab-head);
	font-weight: 600;
	color: var(--ab-ink);
	line-height: 1.25;
	margin: 34px 0 14px;
}

.vx-doc__sheet h1 {
	font-size: clamp(28px, 3.4vw, 38px);
}

.vx-doc__sheet h2 {
	font-size: clamp(23px, 2.8vw, 30px);
}

.vx-doc__sheet h3 {
	font-size: 20px;
}

.vx-doc__sheet>*:first-child {
	margin-top: 0;
}

.vx-doc__section-head {
	position: relative;
	padding-top: 26px;
	border-top: 1px solid var(--ab-line);
}

.vx-doc__section-head::before {
	content: attr(data-num);
	display: inline-block;
	margin-bottom: 8px;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
	font-family: var(--ab-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
}

.vx-doc__sheet p {
	margin: 0 0 18px;
}

.vx-doc__sheet ul,
.vx-doc__sheet ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

.vx-doc__sheet li {
	margin-bottom: 9px;
}

.vx-doc__sheet li::marker {
	color: var(--arctic-blue-4);
}

.vx-doc__sheet a {
	color: var(--arctic-blue-5);
	font-weight: 600;
}

.vx-doc__sheet strong {
	color: var(--ab-ink);
}

.vx-doc__sheet table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 22px;
	font-size: 14.5px;
}

.vx-doc__sheet th,
.vx-doc__sheet td {
	border: 1px solid var(--ab-line);
	padding: 12px 14px;
	text-align: left;
}

.vx-doc__sheet th {
	background: var(--ab-wash);
	color: var(--ab-ink);
	font-weight: 700;
}

.vx-doc__foot {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
	padding: clamp(24px, 3.4vw, 38px);
	border-radius: var(--ab-r-xl);
	background: var(--ab-ink);
	color: #fff;
}

.vx-doc__foot-title {
	font-family: var(--ab-head);
	font-size: 24px;
	margin: 0 0 7px;
	color: #fff;
}

.vx-doc__foot-text {
	margin: 0;
	font-size: 15px;
	color: rgba(202, 240, 248, .75);
}

.vx-doc__top {
	position: fixed;
	right: 26px;
	bottom: 96px;
	z-index: 900;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 20px;
	border-radius: 999px;
	border: 1px solid var(--ab-line);
	background: #fff;
	color: var(--ab-ink);
	cursor: pointer;
	box-shadow: var(--ab-shadow);
	font-family: var(--ab-font);
}

.vx-doc__top:hover {
	background: var(--arctic-blue-5);
	border-color: var(--arctic-blue-5);
	color: #04252f;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {

	.vx-hero__grid,
	.vx-brief,
	.vx-doc {
		grid-template-columns: 1fr;
	}

	.vx-brief__aside,
	.vx-doc__aside {
		position: static;
	}

	.vx-doc__toc-list {
		max-height: none;
	}

	.vx-cover__price {
		left: 14px;
		bottom: 14px;
	}
}

@media (max-width: 640px) {
	.vx-toolbar {
		flex-direction: column;
		align-items: flex-start;
	}

	.vx-doc__top {
		right: 14px;
		bottom: 80px;
	}

	.vx-level__foot {
		flex-direction: column;
		align-items: stretch;
	}
}

/* ==========================================================================
   USER DASHBOARD (vx-dash) — sidebar id-card + tabbed panels
   ========================================================================== */
.vx-dash {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 24px;
	align-items: start;
}

.vx-dash__aside {
	position: sticky;
	top: 120px;
	display: grid;
	gap: 14px;
}

/* member card */
.vx-idcard {
	background: linear-gradient(155deg, var(--ab-ink) 0%, #06313f 62%, #041d26 100%);
	color: #fff;
	border-radius: var(--ab-r-lg);
	padding: 26px;
}

.vx-idcard__top {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(144, 224, 239, .18);
	margin-bottom: 20px;
}

.vx-idcard__avatar {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	border-radius: 17px;
	display: grid;
	place-items: center;
	background: var(--ab-grad);
	color: #fff;
	font-size: 20px;
	font-weight: 750;
}

.vx-idcard__name {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
}

.vx-idcard__since {
	display: block;
	font-size: 12.5px;
	color: var(--arctic-blue-3);
	margin-top: 2px;
}

.vx-idcard__balance {
	margin-bottom: 16px;
}

.vx-idcard__balance-label {
	display: block;
	color: var(--arctic-blue-4);
	margin-bottom: 7px;
}

.vx-idcard__balance-value {
	font-family: var(--ab-head);
	font-size: 36px;
	line-height: 1;
	color: #fff;
}

.vx-idcard__balance-value small {
	font-family: var(--ab-font);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--arctic-blue-3);
	margin-left: 7px;
}

.vx-idcard__topup,
button.vx-idcard__topup {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 20px;
	border-radius: 999px;
	background: var(--arctic-blue-5);
	color: #04252f;
	font-size: 14.5px;
	font-weight: 650;
	text-decoration: none;
	transition: .25s;
}

.vx-idcard__topup:hover,
button.vx-idcard__topup:hover {
	background: var(--arctic-blue-2);
	color: #04252f;
}

.vx-idcard__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 18px;
}

.vx-idcard__stat {
	padding: 14px;
	border-radius: var(--ab-r-sm);
	background: rgba(144, 224, 239, .08);
	text-align: center;
}

.vx-idcard__stat strong {
	display: block;
	font-family: var(--ab-head);
	font-size: 26px;
	line-height: 1;
	color: var(--arctic-blue-3);
}

.vx-idcard__stat span {
	display: block;
	font-size: 11.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(202, 240, 248, .65);
	margin-top: 5px;
}

/* vertical nav */
.vx-dash__nav {
	display: grid;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-r-lg);
	padding: 10px;
	margin: 0;
	list-style: none;
}

.vx-dash__nav .nav-item {
	width: 100%;
}

.vx-navlink {
	display: flex;
	align-items: center;
	gap: 13px;
	width: 100%;
	padding: 14px 16px;
	border: 0;
	border-radius: var(--ab-r-sm);
	background: transparent;
	color: var(--ab-ink);
	font-family: var(--ab-font);
	font-size: 14.5px;
	font-weight: 650;
	text-align: left;
	cursor: pointer;
	transition: .22s;
}

.vx-navlink:hover {
	background: var(--ab-wash);
}

.vx-navlink.active,
.vx-dash__nav .nav-link.vx-navlink.active {
	background: var(--ab-ink) !important;
	color: #fff !important;
}

.vx-navlink__num {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border-radius: 9px;
	display: grid;
	place-items: center;
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
}

.vx-navlink.active .vx-navlink__num {
	background: rgba(144, 224, 239, .18);
	color: var(--arctic-blue-3);
}

.vx-dash__logout,
button.vx-dash__logout {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 20px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--ab-line);
	color: #c0392b;
	font-size: 14.5px;
	font-weight: 650;
	text-decoration: none;
	transition: .22s;
}

.vx-dash__logout:hover,
button.vx-dash__logout:hover {
	background: #fdecea;
	border-color: #f5c6c0;
	color: #c0392b;
}

/* panels */
.vx-panel {
	background: #fff;
	border: 1px solid var(--ab-line);
	border-radius: var(--ab-r-lg);
	padding: clamp(22px, 3vw, 32px);
}

.vx-panel__head {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ab-line);
	margin-bottom: 22px;
}

.vx-panel__ico {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	border-radius: 15px;
	display: grid;
	place-items: center;
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
	font-size: 17px;
}

.vx-panel__title {
	font-family: var(--ab-head);
	font-weight: 600;
	font-size: clamp(20px, 2.4vw, 26px);
	margin: 0 0 4px;
	color: var(--ab-ink);
}

.vx-panel__sub {
	margin: 0;
	font-size: 13.5px;
	color: var(--ab-muted);
}

.vx-panel__empty {
	text-align: center;
	padding: 46px 20px;
	color: var(--ab-muted);
}

.vx-panel__empty-ico {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
	font-size: 26px;
}

/* tables */
.vx-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 14.5px;
}

.vx-table thead th {
	background: var(--ab-wash);
	color: var(--ab-muted);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 14px 16px;
	border: 0;
	white-space: nowrap;
}

.vx-table thead th:first-child {
	border-radius: 10px 0 0 10px;
}

.vx-table thead th:last-child {
	border-radius: 0 10px 10px 0;
}

.vx-table tbody td {
	padding: 16px;
	border-bottom: 1px solid var(--ab-line);
	color: var(--ab-slate);
	vertical-align: middle;
}

.vx-table tbody tr:last-child td {
	border-bottom: 0;
}

.vx-table tbody tr:hover td {
	background: var(--ab-wash);
}

.vx-table__ref {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 13px;
	color: var(--ab-ink) !important;
	font-weight: 600;
}

.vx-table__course {
	font-weight: 650;
	color: var(--ab-ink) !important;
	min-width: 190px;
}

.vx-table__price {
	font-weight: 750;
	color: var(--ab-ink) !important;
}

.vx-table__date {
	white-space: nowrap;
	color: var(--ab-muted) !important;
}

.vx-chipcred {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	border-radius: 999px;
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
	font-size: 12.5px;
	font-weight: 700;
	white-space: nowrap;
}

/* status pills */
.vx-status {
	display: inline-block;
	padding: 6px 13px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .03em;
	white-space: nowrap;
}

.vx-status--success {
	background: #dcf6ec;
	color: #12795a;
}

.vx-status--danger {
	background: #fdecea;
	color: #c0392b;
}

.vx-status--warning {
	background: #fdf3d8;
	color: #9a6b06;
}

.vx-status--info {
	background: var(--arctic-blue-1);
	color: var(--arctic-blue-5);
}

.vx-status--neutral {
	background: var(--ab-wash);
	color: var(--ab-muted);
}

.vx-view,
button.vx-view {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border-radius: 999px;
	border: 1px solid var(--ab-line);
	background: #fff;
	color: var(--ab-ink);
	font-size: 13px;
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
	transition: .22s;
}

.vx-view:hover,
button.vx-view:hover {
	background: var(--arctic-blue-5);
	border-color: var(--arctic-blue-5);
	color: #04252f;
}

@media (max-width: 1100px) {
	.vx-dash {
		grid-template-columns: 1fr;
	}

	.vx-dash__aside {
		position: static;
	}
}
