/* BreinBoost Pro Weekly Challenges */
:root {
	--bbp-challenge-navy: #1b237e;
	--bbp-challenge-deep: #10184f;
	--bbp-challenge-cyan: #12d6e3;
	--bbp-challenge-pink: #ec1988;
	--bbp-challenge-yellow: #ffd54a;
	--bbp-challenge-purple: #7648d8;
	--bbp-challenge-green: #2fbf71;
	--bbp-challenge-bg: #f5f8ff;
	--bbp-challenge-border: #dce7ff;
	--bbp-challenge-muted: #68749b;
	--bbp-challenge-text: #18214d;
}

.breinboost-challenges {
	box-sizing: border-box;
	max-width: 1320px;
	margin: 0 auto;
	padding: 28px 20px 64px;
	color: var(--bbp-challenge-text);
	font-family: inherit;
}

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

.breinboost-challenges .button {
	border-radius: 999px;
	font-weight: 800;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	text-decoration: none;
}

.breinboost-challenges .button.alt {
	background: var(--bbp-challenge-cyan);
	border-color: var(--bbp-challenge-cyan);
	color: var(--bbp-challenge-navy);
}

.breinboost-challenges .button.alt:hover {
	background: var(--bbp-challenge-pink);
	border-color: var(--bbp-challenge-pink);
	color: #fff;
}

.bbp-challenge-kicker {
	display: inline-block;
	font-size: .74rem;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--bbp-challenge-pink);
	margin-bottom: 6px;
}

.bbp-challenges-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 30px;
	align-items: center;
	min-height: 290px;
	padding: 38px 42px;
	border-radius: 28px;
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 20%, rgba(255, 213, 74, .24), transparent 25%),
		linear-gradient(135deg, #ecfbff 0%, #eef2ff 45%, #fff0f8 100%);
	border: 1px solid var(--bbp-challenge-border);
	box-shadow: 0 24px 60px rgba(27, 35, 126, .12);
}

.bbp-challenges-hero::before,
.bbp-challenges-hero::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.bbp-challenges-hero::before {
	width: 240px;
	height: 240px;
	background: rgba(18, 214, 227, .12);
	right: -70px;
	top: -80px;
}

.bbp-challenges-hero::after {
	width: 180px;
	height: 180px;
	background: rgba(236, 25, 136, .09);
	left: -70px;
	bottom: -95px;
}

.bbp-challenges-hero-copy {
	position: relative;
	z-index: 2;
}

.bbp-challenges-hero h1,
.bbp-challenge-play h2,
.bbp-challenge-result-panel h2 {
	margin: 0 0 12px;
	font-size: clamp(2rem, 4.4vw, 3.55rem);
	line-height: 1.02;
	letter-spacing: -.035em;
	color: var(--bbp-challenge-navy);
}

.bbp-challenges-hero p {
	max-width: 820px;
	font-size: 1.03rem;
	line-height: 1.65;
	margin: 0;
	color: #3e4a75;
}

.bbp-challenges-hero > img {
	position: relative;
	z-index: 2;
	width: 100%;
	max-height: 220px;
	object-fit: contain;
}

.bbp-challenge-hero-pills,
.bbp-dashboard-challenge-pills,
.bbp-challenge-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.bbp-challenge-hero-pills span,
.bbp-dashboard-challenge-pills span,
.bbp-challenge-facts span {
	background: #fff;
	border: 1px solid var(--bbp-challenge-border);
	border-radius: 999px;
	padding: 7px 12px;
	font-size: .78rem;
	font-weight: 800;
	color: var(--bbp-challenge-navy);
}

.bbp-challenge-toolbar {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: end;
	margin: 20px 0 26px;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid var(--bbp-challenge-border);
	border-radius: 16px;
}

.bbp-challenge-toolbar form {
	display: flex;
	gap: 10px;
	align-items: end;
	margin: 0;
}

.bbp-challenge-toolbar label {
	display: grid;
	gap: 5px;
	font-size: .78rem;
	font-weight: 800;
	color: var(--bbp-challenge-muted);
}

.bbp-challenge-toolbar select {
	min-width: 260px;
	border-radius: 10px;
}

.bbp-challenge-section,
.bbp-challenge-championship {
	margin-top: 34px;
}

.bbp-challenge-section-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 24px;
	margin-bottom: 16px;
}

.bbp-challenge-section-heading h2,
.bbp-challenge-championship h2 {
	margin: 0;
	font-size: clamp(1.5rem, 2.6vw, 2.15rem);
	color: var(--bbp-challenge-navy);
}

.bbp-challenge-section-heading p {
	margin: 0;
	max-width: 520px;
	color: var(--bbp-challenge-muted);
	line-height: 1.5;
}

.bbp-current-challenges-grid,
.bbp-challenge-podium-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.bbp-current-challenge-card {
	position: relative;
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 24px;
	border-radius: 22px;
	background: #fff;
	border: 1px solid var(--bbp-challenge-border);
	box-shadow: 0 14px 35px rgba(27, 35, 126, .08);
	overflow: hidden;
}

.bbp-current-challenge-card::after {
	content: "";
	position: absolute;
	right: -40px;
	bottom: -50px;
	width: 150px;
	height: 150px;
	border-radius: 999px;
	opacity: .08;
	background: currentColor;
}

.bbp-current-challenge-card--math {
	color: var(--bbp-challenge-cyan);
}

.bbp-current-challenge-card--general_knowledge {
	color: var(--bbp-challenge-pink);
}

.bbp-current-challenge-icon {
	width: 72px;
	height: 72px;
	border-radius: 22px;
	display: grid;
	place-items: center;
	font-size: 2.35rem;
	font-weight: 900;
	background: color-mix(in srgb, currentColor 13%, white);
	color: currentColor;
}

.bbp-current-challenge-copy {
	position: relative;
	z-index: 2;
	color: var(--bbp-challenge-text);
}

.bbp-current-challenge-copy h3 {
	margin: 0;
	font-size: 1.35rem;
	color: var(--bbp-challenge-navy);
}

.bbp-current-challenge-copy .button,
.bbp-challenge-start-form {
	margin-top: 15px;
}

.bbp-challenge-completed-result {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 16px;
}

.bbp-challenge-completed-result strong {
	font-size: 1.55rem;
	color: var(--bbp-challenge-navy);
}

.bbp-challenge-completed-result span {
	border-radius: 999px;
	background: var(--bbp-challenge-bg);
	padding: 6px 10px;
	font-size: .76rem;
	font-weight: 800;
	color: var(--bbp-challenge-muted);
}

.bbp-challenge-status-pill {
	display: inline-flex;
	margin-top: 14px;
	padding: 7px 11px;
	border-radius: 999px;
	font-weight: 800;
	font-size: .78rem;
	background: #fff5ca;
	color: #7b5800;
}

.bbp-challenge-status-pill.is-closed {
	background: #eef1f7;
	color: #68749b;
}

.bbp-challenge-warning,
.bbp-challenge-notice {
	padding: 12px 14px;
	border-radius: 12px;
	background: #fff8d9;
	color: #6a4a00;
	font-weight: 700;
}

.bbp-challenge-podium-card {
	padding: 22px;
	border: 1px solid var(--bbp-challenge-border);
	border-radius: 22px;
	background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
	box-shadow: 0 14px 35px rgba(27, 35, 126, .07);
}

.bbp-challenge-podium-heading h3 {
	margin: 0 0 18px;
	font-size: 1.12rem;
	color: var(--bbp-challenge-navy);
}

.bbp-challenge-podium {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	align-items: end;
}

.bbp-podium-place {
	min-height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 4px;
	padding: 12px 8px;
	border-radius: 16px 16px 8px 8px;
	background: #eef5ff;
	border: 1px solid #dbe8ff;
}

.bbp-podium-place--1 {
	min-height: 180px;
	background: linear-gradient(180deg, #fff9d9, #fff3ad);
	border-color: #f0d35c;
	order: 2;
}

.bbp-podium-place--2 {
	min-height: 160px;
	order: 1;
}

.bbp-podium-place--3 {
	min-height: 145px;
	background: #fff0e4;
	border-color: #ecc9ad;
	order: 3;
}

.bbp-podium-medal {
	font-size: 1.7rem;
}

.bbp-podium-place strong {
	font-size: .82rem;
	line-height: 1.2;
	color: var(--bbp-challenge-navy);
}

.bbp-podium-place span:not(.bbp-podium-medal),
.bbp-podium-place small {
	font-size: .68rem;
	color: var(--bbp-challenge-muted);
}

.bbp-podium-place b {
	font-size: 1.2rem;
	color: var(--bbp-challenge-pink);
}

.bbp-challenge-championship {
	padding: 26px;
	border-radius: 24px;
	background: linear-gradient(135deg, var(--bbp-challenge-deep), var(--bbp-challenge-navy));
	color: #fff;
	box-shadow: 0 20px 50px rgba(27, 35, 126, .18);
}

.bbp-challenge-championship .bbp-challenge-kicker {
	color: var(--bbp-challenge-yellow);
}

.bbp-challenge-championship h2,
.bbp-challenge-championship .bbp-challenge-section-heading p {
	color: #fff;
}

.bbp-challenge-year-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 18px 0;
}

.bbp-challenge-year-stats > div {
	padding: 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .12);
}

.bbp-challenge-year-stats span {
	display: block;
	font-size: .72rem;
	font-weight: 800;
	color: #cdd8ff;
	margin-bottom: 4px;
}

.bbp-challenge-year-stats strong {
	font-size: 1.45rem;
	color: #fff;
}

.bbp-challenge-board-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.bbp-challenge-board-tabs a {
	padding: 8px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .18);
	color: #fff;
	font-weight: 800;
	font-size: .78rem;
	text-decoration: none;
}

.bbp-challenge-board-tabs a.is-active {
	background: var(--bbp-challenge-cyan);
	border-color: var(--bbp-challenge-cyan);
	color: var(--bbp-challenge-navy);
}

.bbp-challenge-month-chart {
	padding: 22px 18px 16px;
	background: #fff;
	border: 1px solid var(--bbp-challenge-border);
	border-radius: 20px;
	box-shadow: 0 12px 34px rgba(27, 35, 126, .06);
}

.bbp-challenge-chart-legend {
	display: flex;
	gap: 16px;
	justify-content: flex-end;
	margin-bottom: 18px;
	font-size: .72rem;
	font-weight: 800;
	color: var(--bbp-challenge-muted);
}

.bbp-challenge-chart-legend span::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 3px;
	margin-right: 5px;
}

.bbp-challenge-chart-legend .is-math::before { background: var(--bbp-challenge-cyan); }
.bbp-challenge-chart-legend .is-gk::before { background: var(--bbp-challenge-pink); }

.bbp-challenge-month-bars {
	display: grid;
	grid-template-columns: repeat(12, minmax(42px, 1fr));
	gap: 8px;
	min-height: 240px;
	align-items: end;
	overflow-x: auto;
	padding-bottom: 6px;
}

.bbp-challenge-month {
	min-width: 42px;
	text-align: center;
}

.bbp-challenge-month-columns {
	height: 200px;
	display: flex;
	gap: 4px;
	align-items: end;
	justify-content: center;
	padding: 0 4px;
	background:
		linear-gradient(to top, transparent 24%, #eef2fb 25%, transparent 26%, transparent 49%, #eef2fb 50%, transparent 51%, transparent 74%, #eef2fb 75%, transparent 76%);
	border-bottom: 1px solid #d9e3f7;
}

.bbp-challenge-month-bar {
	width: 12px;
	min-height: 2px;
	border-radius: 6px 6px 2px 2px;
	transition: height .25s ease;
}

.bbp-challenge-month-bar.is-math { background: linear-gradient(180deg, #57edf5, var(--bbp-challenge-cyan)); }
.bbp-challenge-month-bar.is-gk { background: linear-gradient(180deg, #ff78bd, var(--bbp-challenge-pink)); }
.bbp-challenge-month > strong { display: block; margin-top: 8px; font-size: .68rem; color: var(--bbp-challenge-muted); }

.bbp-challenge-section--tables {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.bbp-challenge-table-card {
	background: #fff;
	border: 1px solid var(--bbp-challenge-border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(27, 35, 126, .06);
}

.bbp-challenge-table-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	background: #f7f9ff;
	border-bottom: 1px solid var(--bbp-challenge-border);
}

.bbp-challenge-table-heading h3 { margin: 0; color: var(--bbp-challenge-navy); font-size: 1.05rem; }
.bbp-challenge-table-heading span { font-size: .7rem; font-weight: 900; color: var(--bbp-challenge-pink); text-transform: uppercase; letter-spacing: .05em; }
.bbp-challenge-table-scroll { overflow-x: auto; }
.bbp-challenge-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.bbp-challenge-table th,
.bbp-challenge-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid #edf1f8; font-size: .82rem; vertical-align: middle; }
.bbp-challenge-table th { font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--bbp-challenge-muted); background: #fff; }
.bbp-challenge-table tbody tr:hover { background: #fbfcff; }
.bbp-challenge-table tr.is-current-learner { background: #ebfcfe; box-shadow: inset 4px 0 0 var(--bbp-challenge-cyan); }
.bbp-challenge-table td strong { color: var(--bbp-challenge-navy); }
.bbp-challenge-table td small { display: block; color: var(--bbp-challenge-muted); margin-top: 2px; }
.bbp-challenge-table-gap td { text-align: center; color: var(--bbp-challenge-muted); font-weight: 900; }

.bbp-challenge-play {
	max-width: 900px;
	margin: 0 auto;
}

.bbp-challenge-play-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 26px;
	border-radius: 24px;
	background: linear-gradient(135deg, #e8fcfe, #eef2ff);
	border: 1px solid var(--bbp-challenge-border);
}

.bbp-challenge-play-header h2 { font-size: clamp(1.65rem, 4vw, 2.5rem); }
.bbp-challenge-play-header p { margin: 0; color: var(--bbp-challenge-muted); }

.bbp-challenge-timer {
	flex: 0 0 150px;
	text-align: center;
	padding: 14px 16px;
	border-radius: 18px;
	background: var(--bbp-challenge-navy);
	color: #fff;
	box-shadow: 0 10px 28px rgba(27, 35, 126, .2);
}

.bbp-challenge-timer span { display: block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #bfcaf4; }
.bbp-challenge-timer strong { display: block; font-size: 2rem; line-height: 1.05; font-variant-numeric: tabular-nums; }
.bbp-challenge-timer.is-urgent { background: var(--bbp-challenge-pink); animation: bbpChallengePulse 1s infinite; }
@keyframes bbpChallengePulse { 50% { transform: scale(1.035); box-shadow: 0 10px 32px rgba(236, 25, 136, .35); } }

.bbp-challenge-lock-note {
	margin: 14px 0 18px;
	padding: 12px 15px;
	border-radius: 12px;
	background: #fff8db;
	border: 1px solid #f2df91;
	color: #644a00;
	font-size: .84rem;
}

.bbp-challenge-question-form {
	display: grid;
	gap: 14px;
}

.bbp-challenge-question {
	margin: 0;
	padding: 20px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--bbp-challenge-border);
	box-shadow: 0 9px 28px rgba(27, 35, 126, .05);
}

.bbp-challenge-question--easy { border-left: 5px solid var(--bbp-challenge-green); }
.bbp-challenge-question--medium { border-left: 5px solid var(--bbp-challenge-yellow); }
.bbp-challenge-question--hard { border-left: 5px solid var(--bbp-challenge-pink); }

.bbp-challenge-question legend {
	display: flex;
	gap: 8px;
	align-items: center;
	font-weight: 900;
	color: var(--bbp-challenge-navy);
	padding: 0 5px;
}

.bbp-challenge-question legend small {
	border-radius: 999px;
	background: #f2f5fb;
	padding: 4px 7px;
	font-size: .63rem;
	text-transform: uppercase;
	color: var(--bbp-challenge-muted);
}

.bbp-challenge-prompt {
	font-size: 1.08rem;
	font-weight: 750;
	line-height: 1.5;
	margin: 5px 0 16px;
	color: var(--bbp-challenge-text);
}

.bbp-challenge-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.bbp-challenge-options label {
	position: relative;
	cursor: pointer;
}

.bbp-challenge-options input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.bbp-challenge-options span {
	display: block;
	padding: 13px 14px;
	border: 2px solid #e2e9f7;
	border-radius: 12px;
	background: #fbfcff;
	font-weight: 750;
	transition: .15s ease;
}

.bbp-challenge-options input:checked + span {
	border-color: var(--bbp-challenge-cyan);
	background: #e7fcfe;
	box-shadow: 0 0 0 3px rgba(18, 214, 227, .12);
	color: var(--bbp-challenge-navy);
}

.bbp-challenge-answer-input {
	width: 100%;
	min-height: 48px;
	border: 2px solid #dfe8f7 !important;
	border-radius: 12px !important;
	font-size: 1.1rem;
	font-weight: 700;
	padding: 10px 12px !important;
}

.bbp-challenge-answer-input:focus {
	outline: none;
	border-color: var(--bbp-challenge-cyan) !important;
	box-shadow: 0 0 0 3px rgba(18, 214, 227, .13) !important;
}

.bbp-challenge-submit-bar {
	position: sticky;
	bottom: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 16px 18px;
	border-radius: 16px;
	background: rgba(16, 24, 79, .97);
	color: #fff;
	box-shadow: 0 15px 38px rgba(16, 24, 79, .25);
	z-index: 20;
}

.bbp-challenge-submit-bar strong { display: block; }
.bbp-challenge-submit-bar span { display: block; color: #c8d2f5; font-size: .77rem; margin-top: 2px; }

.bbp-challenge-result-panel {
	padding: 28px;
	margin-bottom: 28px;
	border-radius: 24px;
	background: linear-gradient(135deg, #ecfdff, #fff1f8);
	border: 1px solid var(--bbp-challenge-border);
	box-shadow: 0 18px 45px rgba(27, 35, 126, .09);
}

.bbp-challenge-result-copy h2 { font-size: 2rem; }
.bbp-challenge-result-copy p { color: var(--bbp-challenge-muted); }

.bbp-challenge-result-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 18px 0;
}

.bbp-challenge-result-stats > div {
	padding: 14px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--bbp-challenge-border);
}

.bbp-challenge-result-stats strong { display: block; font-size: 1.55rem; color: var(--bbp-challenge-navy); }
.bbp-challenge-result-stats span { font-size: .72rem; font-weight: 800; color: var(--bbp-challenge-muted); }

.bbp-challenge-answer-lock {
	display: flex;
	gap: 12px;
	align-items: start;
	padding: 14px;
	border-radius: 14px;
	background: #fff8db;
	border: 1px solid #f2df91;
}

.bbp-challenge-answer-lock > span { font-size: 1.45rem; }
.bbp-challenge-answer-lock strong { color: #654b00; }
.bbp-challenge-answer-lock p { margin: 4px 0 0; color: #7a620f; }

.bbp-challenge-review { margin-top: 20px; }
.bbp-challenge-review h3 { color: var(--bbp-challenge-navy); }
.bbp-challenge-review-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; padding: 14px; border: 1px solid var(--bbp-challenge-border); border-left: 5px solid #cbd5e7; border-radius: 12px; background: #fff; margin-bottom: 10px; }
.bbp-challenge-review-row.is-correct { border-left-color: var(--bbp-challenge-green); }
.bbp-challenge-review-row.is-wrong { border-left-color: var(--bbp-challenge-pink); }
.bbp-challenge-review-row p { margin: 4px 0 0; }
.bbp-challenge-review-row span,
.bbp-challenge-review-row small { display: block; margin-bottom: 4px; }
.bbp-challenge-review-row small { color: var(--bbp-challenge-muted); }

.bbp-challenge-profile-card,
.bbp-challenge-login-card {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	padding: 28px;
	border-radius: 22px;
	background: linear-gradient(135deg, #effdff, #fff4fa);
	border: 1px solid var(--bbp-challenge-border);
}

.bbp-challenge-profile-card img,
.bbp-challenge-login-card img { width: 100%; max-height: 155px; object-fit: contain; }
.bbp-challenge-profile-card h2,
.bbp-challenge-login-card h1 { margin: 0 0 8px; color: var(--bbp-challenge-navy); }
.bbp-challenge-profile-card p,
.bbp-challenge-login-card p { color: var(--bbp-challenge-muted); line-height: 1.55; }
.bbp-challenge-profile-card form { display: flex; align-items: end; gap: 10px; flex-wrap: wrap; }
.bbp-challenge-profile-card label { display: grid; gap: 5px; font-size: .78rem; font-weight: 800; }
.bbp-challenge-profile-card input { min-height: 42px; border-radius: 9px; }

.bbp-challenge-access-lock,
.bbp-challenge-empty-state {
	padding: 24px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--bbp-challenge-border);
	text-align: center;
}

.bbp-challenge-empty {
	color: var(--bbp-challenge-muted);
}

/* Dashboard launch card */
.bbp-dashboard-challenges {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 150px;
	align-items: center;
	gap: 24px;
	padding: 24px 28px !important;
	background:
		radial-gradient(circle at 85% 25%, rgba(255, 213, 74, .25), transparent 28%),
		linear-gradient(135deg, #eafcff, #fff0f8) !important;
	border: 1px solid #dce7ff;
	border-radius: 22px;
	overflow: hidden;
}

.bbp-dashboard-challenge-copy { position: relative; z-index: 2; }
.bbp-dashboard-challenge-copy h3 { margin: 0; color: var(--bbp-challenge-navy); font-size: 1.45rem; }
.bbp-dashboard-challenge-copy > p { color: #536083; max-width: 720px; }
.bbp-dashboard-challenge-mascot { width: 100%; max-height: 135px; object-fit: contain; position: relative; z-index: 2; }

@media (max-width: 900px) {
	.bbp-challenges-hero { grid-template-columns: 1fr 150px; padding: 28px; }
	.bbp-current-challenges-grid,
	.bbp-challenge-podium-grid { grid-template-columns: 1fr; }
	.bbp-challenge-section-heading { align-items: start; flex-direction: column; gap: 6px; }
	.bbp-challenge-year-stats { grid-template-columns: repeat(2, 1fr); }
	.bbp-challenge-month-bars { min-width: 700px; }
	.bbp-dashboard-challenges { grid-template-columns: 1fr 110px; }
}

@media (max-width: 640px) {
	.breinboost-challenges { padding: 18px 12px 48px; }
	.bbp-challenges-hero { grid-template-columns: 1fr; padding: 24px 20px 0; }
	.bbp-challenges-hero > img { width: 130px; justify-self: end; }
	.bbp-challenge-toolbar { align-items: stretch; flex-direction: column; }
	.bbp-challenge-toolbar form { align-items: stretch; flex-direction: column; }
	.bbp-challenge-toolbar select { min-width: 0; width: 100%; }
	.bbp-current-challenge-card { grid-template-columns: 56px minmax(0, 1fr); padding: 18px; }
	.bbp-current-challenge-icon { width: 52px; height: 52px; border-radius: 14px; font-size: 1.7rem; }
	.bbp-challenge-podium { gap: 5px; }
	.bbp-podium-place { padding: 8px 5px; }
	.bbp-challenge-year-stats,
	.bbp-challenge-result-stats { grid-template-columns: repeat(2, 1fr); }
	.bbp-challenge-play-header { align-items: stretch; flex-direction: column; }
	.bbp-challenge-timer { flex: none; width: 100%; }
	.bbp-challenge-options { grid-template-columns: 1fr; }
	.bbp-challenge-submit-bar { align-items: stretch; flex-direction: column; bottom: 6px; }
	.bbp-challenge-review-row { grid-template-columns: 1fr; }
	.bbp-challenge-profile-card,
	.bbp-challenge-login-card { grid-template-columns: 90px 1fr; padding: 18px; }
	.bbp-challenge-profile-card form { align-items: stretch; flex-direction: column; }
	.bbp-dashboard-challenges { grid-template-columns: 1fr; padding: 20px !important; }
	.bbp-dashboard-challenge-mascot { width: 90px; justify-self: end; }
}
