/**
 * Homepage styles — scoped entirely under .cob-homepage so nothing here can
 * leak into the rest of the WordPress page (theme, other shortcodes, footer
 * widgets, etc. below this section are left untouched).
 *
 * Markup: shortcodes/homepage.php  ([homepage])
 * Data:   includes/functions-homepage.php
 */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

/* ---------------------------------------------------------------------------
 * Design tokens (scoped)
 * ------------------------------------------------------------------------ */

.cob-homepage {
	--chp-bg: #F5F5F5;
	--chp-fg: #1A1A2E;
	--chp-card: #FFFFFF;
	--chp-muted: #6B6B80;
	--chp-primary: #E60D64;
	--chp-primary-dark: #C30C56;
	--chp-secondary: #1565C0;
	--chp-border: rgba(0, 0, 0, 0.08);
	--chp-radius: 0.75rem;

    margin-top: -1.5em !important;
	all: initial;
	display: block;
	direction: rtl;
	text-align: right;
	font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--chp-bg);
	color: var(--chp-fg);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.cob-homepage * {
	box-sizing: border-box;
	direction: inherit;
	font-family: inherit;
}

.cob-homepage a {
	color: inherit;
	text-decoration: none;
}

.cob-homepage button {
	font-family: inherit;
	cursor: pointer;
	background: none;
	border: none;
	color: inherit;
}

.cob-homepage img,
.cob-homepage svg {
	display: block;
	max-width: 100%;
}

.cob-homepage ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cob-homepage h1,
.cob-homepage h2,
.cob-homepage h3,
.cob-homepage p {
	margin: 0;
}

.cob-homepage h1,
.cob-homepage h2,
.cob-homepage h3 {
	color: #000;
}

.cob-homepage .chp-container {
	max-width: 1152px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------------------------------------------------------------------------
 * Shared CTA button
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--chp-primary);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.4;
	border-radius: 12px;
	padding: 12px 24px;
	transition: background-color 0.2s ease, transform 0.1s ease;
	white-space: nowrap;
}

.cob-homepage .chp-cta-btn:hover {
	background: var(--chp-primary-dark);
}

.cob-homepage .chp-cta-btn:active {
	transform: scale(0.95);
}

.cob-homepage .chp-cta-btn.chp-cta-btn--full {
	width: 100%;
	white-space: normal;
	text-align: center;
}

/* ---------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-hero {
	max-width: 1152px;
	margin: 0 auto;
	padding: 20px 20px 16px;
	/* Reserve room for the site's own fixed header/widgets on mobile (see
	 * initTopOverlayOffset in the script below); reset by the desktop
	 * `padding` shorthand override further down since it isn't an issue there. */
	padding-top: calc(20px + var(--chp-top-overlay-h, 64px));
}

.cob-homepage .chp-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}

.cob-homepage .chp-hero-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: right;
}

.cob-homepage .chp-hero-text h1 {
	font-size: clamp(34px, 5vw, 42px);
	font-weight: 700;
	line-height: 1.2;
}

.cob-homepage .chp-hero-text p {
	color: var(--chp-muted);
	font-size: 18px;
	line-height: 1.6;
}

.cob-homepage .chp-hero-cta-desktop {
	display: none;
}

.cob-homepage .chp-reassurance {
	text-align: center;
	padding: 12px 20px;
	color: var(--chp-muted);
	font-size: 16px;
}

.cob-homepage .chp-reassurance button {
	color: var(--chp-secondary);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	font-size: inherit;
}

.cob-homepage .chp-reassurance button:hover {
	text-decoration: none;
}

/* Hero illustration card */

.cob-homepage .chp-hero-card {
	border-radius: 28px;
	padding: 26px 22px 22px;
	background: radial-gradient(120% 140% at 15% 10%, #D24FA8 0%, #6B4FE0 45%, #3C2E66 100%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cob-homepage .chp-chip-row {
	position: relative;
	height: 96px;
	margin-bottom: 4px;
}

.cob-homepage .chp-chip-path {
	position: absolute;
	left: 0;
	top: 26px;
	width: 100%;
	height: 44px;
	pointer-events: none;
}

.cob-homepage .chp-chip-path path {
	animation: chp-path-march 1.6s linear infinite;
}

.cob-homepage .chp-chip {
	position: absolute;
	top: 8px;
	background: #fff;
	text-align: center;
	border-radius: 16px;
	padding: 9px 12px;
	min-width: 128px;
	max-width: 142px;
	box-shadow: 0 10px 22px rgba(20, 6, 50, 0.25);
}
@media (max-width: 768px) {
    .cob-homepage .chp-chip {
        margin: -5px;
    }
}

.cob-homepage .chp-chip--today {
	right: 0;
}

.cob-homepage .chp-chip--target {
	left: 0;
}

.cob-homepage .chp-chip-icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 6px;
}

.cob-homepage .chp-chip--today .chp-chip-icon {
	background: #EDE9FE;
	color: #6B4FE0;
}

.cob-homepage .chp-chip--target .chp-chip-icon {
	background: #FCE7F3;
	color: #D24FA8;
}

.cob-homepage .chp-chip p {
	font-weight: 700;
	font-size: 12.5px;
	color: #241C3D;
	line-height: 1.3;
}

.cob-homepage .chp-score-panel {
	background: #fff;
	border-radius: 18px;
	padding: 16px;
}

.cob-homepage .chp-score-panel > p {
	font-weight: 700;
	font-size: 12px;
	color: #8B84A8;
	margin-bottom: 12px;
}

.cob-homepage .chp-score-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.cob-homepage .chp-donut {
	flex-shrink: 0;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: conic-gradient(#6B4FE0 0% 65%, #EEECF7 65% 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cob-homepage .chp-donut span {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 17px;
	color: #241C3D;
}

.cob-homepage .chp-skill-groups {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.cob-homepage .chp-skill-label {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 10.5px;
	font-weight: 700;
	margin-bottom: 4px;
}

.cob-homepage .chp-skill-label i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}

.cob-homepage .chp-skill-label--match {
	color: #166534;
}

.cob-homepage .chp-skill-label--match i {
	background: #166534;
}

.cob-homepage .chp-skill-label--gap {
	color: #9A3412;
}

.cob-homepage .chp-skill-label--gap i {
	background: #9A3412;
}

.cob-homepage .chp-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.cob-homepage .chp-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px;
	padding: 4px 10px;
}

.cob-homepage .chp-pill--match {
	background: #DCFCE7;
	color: #166534;
}

.cob-homepage .chp-pill--gap {
	background: #FFEDD5;
	color: #9A3412;
}

.cob-homepage .chp-hero-actions {
	background: #fff;
	border-radius: 18px;
	padding: 14px 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cob-homepage .chp-hero-actions .chp-btn-glow {
	width: 100%;
	font-weight: 700;
	color: #fff;
	font-size: 12.5px;
	border-radius: 10px;
	padding: 9px 8px;
	background: linear-gradient(135deg, #D24FA8, #B93E93);
	animation: chp-btn-glow 2.4s ease-in-out infinite;
	transition: opacity 0.2s ease;
}

.cob-homepage .chp-hero-actions .chp-btn-glow:hover {
	opacity: 0.9;
}

.cob-homepage .chp-hero-actions-row {
	display: flex;
	gap: 6px;
}

.cob-homepage .chp-hero-actions-row button {
	flex: 1;
	font-weight: 700;
	font-size: 12.5px;
	background: #fff;
	color: #241C3D;
	border: 1.5px solid #E4E0F2;
	border-radius: 10px;
	padding: 7px 6px;
	transition: background-color 0.2s ease;
}

.cob-homepage .chp-hero-actions-row button:hover {
	background: #f9fafb;
}

@keyframes chp-path-march {
	to { stroke-dashoffset: -16; }
}

@keyframes chp-btn-glow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(210, 79, 168, 0.45); }
	50% { box-shadow: 0 0 0 8px rgba(210, 79, 168, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.cob-homepage .chp-chip-path path,
	.cob-homepage .chp-btn-glow {
		animation: none !important;
	}
}

/* ---------------------------------------------------------------------------
 * How it works
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-how {
	background: var(--chp-bg);
}

.cob-homepage .chp-how-intro {
	padding: 48px 20px 40px;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cob-homepage .chp-how-intro h2 {
	font-weight: 700;
	font-size: 30px;
	line-height: 1.2;
}

.cob-homepage .chp-how-intro p {
	color: var(--chp-muted);
	font-size: 16px;
	line-height: 1.6;
}

.cob-homepage .chp-how-scroll {
	position: relative;
	/* Extra scroll length for the pinned desktop panel — the mobile
	 * breakpoint at the bottom of this file collapses it back to `auto`.
	 * One viewport of this is taken up by the pinned box itself, so the
	 * remaining 200vh is what the JS splits between the four steps: half a
	 * screen of scrolling each.
	 * `dvh` tracks the browser's dynamic toolbar instead of the static
	 * `vh`, keeping this in sync with the JS scroll-progress math (which
	 * reads the live `window.innerHeight`) instead of drifting out of
	 * sync as the toolbar shows/hides mid-scroll. */
	height: 300vh;
	height: 300dvh;
}

.cob-homepage .chp-how-sticky {
	position: sticky;
	top: 0;
	background: var(--chp-bg);
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}

/* JS (initHowItWorks) toggles this while the scroll-jacking section is
 * active, as a fallback for when native `position: sticky` is broken by an
 * ancestor's `overflow` (the site's own `body` does exactly that). The
 * top/height values stay in sync with the rules above, only `position`
 * changes. Desktop only — the JS never adds this below 1024px. */
.cob-homepage .chp-how-sticky.chp-is-pinned {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 10;
}

/* Third state of that same fallback: once the pinned window ends, park the
 * panel at the bottom of its scroll container instead of letting it snap
 * back to the container's top, which left a full empty screen between the
 * last step and the next section. `.chp-how-scroll` is `position: relative`,
 * and at the moment of release its bottom edge lines up with the bottom of
 * the viewport, so the handover is seamless.
 * `top` must be reset: with `top`, `bottom` and `height` all set at once the
 * browser drops `bottom` and pins the panel back to the top. */
.cob-homepage .chp-how-sticky.chp-is-released {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
}

.cob-homepage .chp-how-sticky-inner {
	max-width: 1152px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
}

/* Plain block on mobile (steps stacked one under the other); the two-column
   grid below only kicks in on desktop. */
.cob-homepage .chp-how-layout {
	height: 100%;
	align-items: center;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
}

.cob-homepage .chp-how-steps {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow-y: auto;
	padding: 32px 0;
	max-height: 100%;
}

.cob-homepage .chp-step-item {
	display: flex;
	gap: 16px;
	text-align: right;
	padding: 20px 0;
	border-bottom: 1px solid var(--chp-border);
}

.cob-homepage .chp-step-item:last-child {
	border-bottom: none;
}

.cob-homepage .chp-step-num {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	background: #fff;
	border: 2px solid var(--chp-primary);
	color: var(--chp-primary);
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cob-homepage .chp-step-item.is-active .chp-step-num {
	background: var(--chp-primary);
	color: #fff;
}

.cob-homepage .chp-step-title {
	font-weight: 600;
	font-size: 19px;
	margin-bottom: 6px;
	color: #9CA3AF;
	transition: color 0.3s ease;
}

.cob-homepage .chp-step-item.is-active .chp-step-title {
	color: var(--chp-fg);
}

.cob-homepage .chp-step-body {
	font-size: 16px;
	line-height: 1.6;
	color: #D1D5DB;
	transition: color 0.3s ease;
}

.cob-homepage .chp-step-item.is-active .chp-step-body {
	color: var(--chp-muted);
}

.cob-homepage .chp-how-steps-cta {
	margin-top: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.cob-homepage .chp-how-steps-cta.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.cob-homepage .chp-how-visual-desktop {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease;
}

.cob-homepage .chp-how-visual-desktop.is-hidden {
	opacity: 0;
}

.cob-homepage .chp-how-visual-desktop > * {
	width: 100%;
}

/* Per-step illustration holder — used on mobile only, where each step shows
   its own mockup below it. JS (initHowItWorks) moves the panels in and out. */
.cob-homepage .chp-step-visual {
	display: none;
}

/* Visual slot — one shared set of 4 mockups, moved between the desktop slot
   and the mobile step list by JS. Inside the desktop slot all four panels
   share a single grid cell, so the slot is always as tall as the tallest one
   and nothing shifts when the active step changes. */

.cob-homepage .chp-visual-slot {
	display: grid;
}

.cob-homepage .chp-visual-slot .chp-visual-panel {
	grid-area: 1 / 1;
	visibility: hidden;
}

.cob-homepage .chp-visual-slot[data-active-panel="1"] .chp-visual-panel[data-panel="1"],
.cob-homepage .chp-visual-slot[data-active-panel="2"] .chp-visual-panel[data-panel="2"],
.cob-homepage .chp-visual-slot[data-active-panel="3"] .chp-visual-panel[data-panel="3"],
.cob-homepage .chp-visual-slot[data-active-panel="4"] .chp-visual-panel[data-panel="4"] {
	visibility: visible;
}

.cob-homepage .chp-visual-slot.is-hidden {
	display: none;
}

/* Visual mockups shared card shell */

.cob-homepage .chp-visual-card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	padding: 20px 20px 34px;
}

.cob-homepage .chp-visual-note {
	position: absolute;
	bottom: 12px;
	left: 18px;
	font-size: 11px;
	color: #9E9E9E;
	white-space: nowrap;
}

/* Step 1 — profile mockup */

.cob-homepage .chp-pm-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.cob-homepage .chp-pm-head span:first-child {
	color: var(--chp-muted);
	font-size: 12px;
}

.cob-homepage .chp-pm-head span:last-child {
	font-size: 15px;
	font-weight: 600;
}

.cob-homepage .chp-pm-avatar-row {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.cob-homepage .chp-pm-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #f3f4f6;
	border: 2px dashed #d1d5db;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
}

.cob-homepage .chp-pm-label {
	color: var(--chp-muted);
	font-size: 12px;
	margin-bottom: 8px;
}

.cob-homepage .chp-pm-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}

.cob-homepage .chp-pm-tag {
	background: #eff6ff;
	color: var(--chp-secondary);
	border-radius: 999px;
	padding: 2px 10px;
	font-size: 12px;
}

.cob-homepage .chp-pm-tag--add {
	background: #f9fafb;
	color: #9ca3af;
	border: 1px dashed #d1d5db;
}

.cob-homepage .chp-pm-tag--field {
	background: #FCE4EC;
	color: var(--chp-primary);
	font-weight: 500;
}

.cob-homepage .chp-pm-exp {
	background: #f9fafb;
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 20px;
}

.cob-homepage .chp-pm-exp p:first-child {
	font-size: 13px;
	font-weight: 500;
}

.cob-homepage .chp-pm-exp p:last-child {
	color: var(--chp-muted);
	font-size: 12px;
}

.cob-homepage .chp-pm-progress-track {
	background: #f3f4f6;
	border-radius: 999px;
	height: 6px;
	margin-bottom: 6px;
}

.cob-homepage .chp-pm-progress-fill {
	background: var(--chp-primary);
	border-radius: 999px;
	height: 6px;
	width: 60%;
}

.cob-homepage .chp-pm-progress-label {
	color: var(--chp-muted);
	font-size: 11px;
}

/* Step 2 — demand wheel */

.cob-homepage .chp-w2-head {
	text-align: center;
	margin-bottom: 16px;
}

.cob-homepage .chp-w2-head p:first-child {
	font-size: 11px;
	font-weight: 500;
	color: #757575;
	letter-spacing: 0.02em;
}

.cob-homepage .chp-w2-head p:nth-child(2) {
	font-weight: 700;
	font-size: 20px;
	color: var(--chp-primary);
	margin: 4px 0 6px;
}

.cob-homepage .chp-w2-head p:last-child {
	font-size: 12px;
	color: #757575;
}

.cob-homepage .chp-w2-info-link {
	color: var(--chp-secondary);
	text-decoration: underline;
}

.cob-homepage .chp-w2-info-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1.3px solid #E0E0E0;
	font-size: 9px;
	color: #757575;
}

.cob-homepage .chp-w2-toggles {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.cob-homepage .chp-w2-toggle {
	border-radius: 999px;
	font-weight: 600;
	padding: 6px 14px;
	font-size: 12px;
	background: #fff;
	color: #757575;
	border: 1.3px solid #E0E0E0;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cob-homepage .chp-w2-toggle.is-active {
	background: var(--chp-primary);
	color: #fff;
	border-color: var(--chp-primary);
}

.cob-homepage .chp-wheel {
	position: relative;
	margin: 0 auto;
	width: 320px;
	height: 320px;
	max-width: 100%;
	border-radius: 50%;
	background: conic-gradient(#FCE4EC 0deg 72deg, #F3E5F5 72deg 144deg, #FFF3E0 144deg 216deg, #E8F5E9 216deg 288deg, #E3F2FD 288deg 360deg);
}

.cob-homepage .chp-wheel-edit {
	position: absolute;
	top: -6px;
	left: -6px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	color: #757575;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cob-homepage .chp-wheel-slice {
	position: absolute;
	width: 96px;
	text-align: center;
	transform: translate(-50%, -50%);
}

.cob-homepage .chp-wheel-slice-label {
	font-size: 11px;
	font-weight: 700;
	color: #424242;
	margin-bottom: 4px;
	line-height: 1.2;
}

.cob-homepage .chp-mini-donut {
	position: relative;
	margin: 0 auto 4px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cob-homepage .chp-mini-donut svg {
	position: absolute;
	inset: 0;
	transform: rotate(-90deg);
}

.cob-homepage .chp-mini-donut-label {
	position: relative;
	z-index: 1;
	text-align: center;
}

.cob-homepage .chp-mini-donut-label p:first-child {
	font-size: 10px;
	font-weight: 800;
	color: #424242;
	line-height: 1.1;
}

.cob-homepage .chp-mini-donut-label p:last-child {
	font-size: 7px;
	color: #757575;
}

.cob-homepage .chp-wheel-slice-jobs {
	display: inline-block;
	font-weight: 700;
	color: #fff;
	border-radius: 999px;
	font-size: 9px;
	padding: 2px 7px;
	background: #2196F3;
	margin-bottom: 2px;
}

.cob-homepage .chp-wheel-slice-salary {
	font-size: 9px;
	color: #757575;
}

.cob-homepage .chp-wheel-center,
.cob-homepage .chp-orbit-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #fff;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cob-homepage .chp-wheel-center {
	width: 72px;
	height: 72px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	color: #B0A8C9;
}

.cob-homepage .chp-orbit-center {
	width: 82px;
	height: 82px;
	box-shadow: 0 4px 12px rgba(33, 150, 243, 0.25);
	color: #8FB8E8;
}

/* Step 3 — role orbit */

.cob-homepage .chp-w3-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.cob-homepage .chp-w3-head p {
	font-weight: 700;
	font-size: 17px;
	color: #424242;
}

.cob-homepage .chp-w3-head p span {
	color: var(--chp-primary);
}

.cob-homepage .chp-w3-head-right {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	color: #424242;
}

.cob-homepage .chp-w3-controls {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.cob-homepage .chp-w3-select {
	display: flex;
	align-items: center;
	gap: 6px;
	border-radius: 10px;
	border: 1px solid #E0E0E0;
	padding: 8px 12px;
	font-size: 12.5px;
	color: #424242;
	font-weight: 500;
}

.cob-homepage .chp-w3-count {
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px;
	padding: 5px 11px;
	background: #FCE4EC;
	color: var(--chp-primary);
}

.cob-homepage .chp-w3-hint {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: #757575;
}

.cob-homepage .chp-orbit {
	position: relative;
	margin: 0 auto;
	width: 320px;
	height: 320px;
	max-width: 100%;
	border-radius: 50%;
	background:
		radial-gradient(circle closest-side,
			transparent 0 57%, #E3F2FD 57% 57.6%, transparent 57.6% 64%,
			#E3F2FD 64% 64.6%, transparent 64.6% 73%, #E3F2FD 73% 73.6%,
			transparent 73.6% 87%, #E3F2FD 87% 87.6%, transparent 87.6% 100%),
		#F7FAFE;
}

.cob-homepage .chp-orbit-node {
	position: absolute;
	width: 88px;
	text-align: center;
	transform: translate(-50%, -50%);
}

.cob-homepage .chp-orbit-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 700;
	color: #fff;
	margin: 0 auto 4px;
	width: 28px;
	height: 28px;
	font-size: 10px;
}

.cob-homepage .chp-orbit-node p:nth-of-type(1) {
	font-size: 11px;
	font-weight: 700;
	color: #424242;
	line-height: 1.25;
}

.cob-homepage .chp-orbit-node p:nth-of-type(2) {
	font-size: 9px;
	color: #757575;
}

.cob-homepage .chp-w3-slider-wrap {
	margin-top: 20px;
	text-align: center;
}

.cob-homepage .chp-w3-slider-label {
	font-size: 13px;
	color: #424242;
	margin-bottom: 8px;
}

.cob-homepage .chp-w3-slider-label span {
	color: var(--chp-primary);
	font-weight: 800;
}

.cob-homepage .chp-w3-slider-track {
	position: relative;
	margin: 0 auto;
	height: 4px;
	background: #E0E0E0;
	border-radius: 2px;
	max-width: 360px;
}

.cob-homepage .chp-w3-slider-fill {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background: var(--chp-primary);
	border-radius: 2px;
}

.cob-homepage .chp-w3-slider-input {
	position: absolute;
	inset: 0;
	width: 100%;
	opacity: 0;
	cursor: pointer;
	height: 100%;
	margin: 0;
}

.cob-homepage .chp-w3-slider-thumb {
	position: absolute;
	top: 50%;
	transform: translate(50%, -50%);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--chp-primary);
	pointer-events: none;
}

.cob-homepage .chp-w3-slider-ticks {
	display: flex;
	justify-content: space-between;
	margin: 6px auto 0;
	max-width: 360px;
	font-size: 11px;
	color: #9E9E9E;
}

/* Step 4 — course options */

.cob-homepage .chp-w4-head {
	text-align: center;
	margin-bottom: 16px;
}

.cob-homepage .chp-w4-head p:first-child {
	font-weight: 700;
	font-size: 16px;
	color: #424242;
	margin-bottom: 8px;
}

.cob-homepage .chp-w4-head p:nth-child(2) {
	font-weight: 800;
	font-size: 17px;
	color: var(--chp-primary);
	margin-bottom: 6px;
}

.cob-homepage .chp-w4-head p:last-child {
	font-size: 11px;
	color: #757575;
}

.cob-homepage .chp-w4-head p:last-child strong {
	color: #424242;
	font-weight: 700;
}

.cob-homepage .chp-w4-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.cob-homepage .chp-w4-card {
	background: #FAFAFA;
	border: 1.3px solid #EDEDED;
	border-radius: 12px;
	padding: 13px 9px 11px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cob-homepage .chp-w4-icon {
	width: 30px;
	height: 30px;
	margin-bottom: 6px;
}

.cob-homepage .chp-w4-icon svg {
	width: 100%;
	height: 100%;
}

.cob-homepage .chp-w4-icon--orange {
	color: #FF9800;
}

.cob-homepage .chp-w4-icon--pink {
	color: var(--chp-primary);
}

.cob-homepage .chp-w4-icon--blue {
	color: #2196F3;
}

.cob-homepage .chp-w4-icon--green {
	color: #4CAF50;
}

.cob-homepage .chp-w4-name {
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 6px;
}

.cob-homepage .chp-w4-name--orange {
	color: #FF9800;
}

.cob-homepage .chp-w4-name--pink {
	color: var(--chp-primary);
}

.cob-homepage .chp-w4-name--blue {
	color: #2196F3;
}

.cob-homepage .chp-w4-name--green {
	color: #4CAF50;
}

.cob-homepage .chp-w4-provider {
	font-size: 10px;
	color: #757575;
	margin-bottom: 7px;
}

.cob-homepage .chp-w4-badge {
	display: inline-block;
	font-size: 9.5px;
	font-weight: 700;
	border-radius: 999px;
	padding: 3px 10px;
	margin-bottom: 9px;
}

.cob-homepage .chp-w4-badge--paid {
	background: #FFF3E0;
	color: #B4680A;
}

.cob-homepage .chp-w4-badge--free {
	background: #E8F5E9;
	color: #2E7D32;
}

.cob-homepage .chp-w4-duration {
	font-size: 9.5px;
	font-weight: 700;
	color: #424242;
	margin-bottom: 6px;
}

.cob-homepage .chp-w4-desc {
	font-size: 9px;
	color: #757575;
	line-height: 1.45;
	margin-bottom: 11px;
	flex-grow: 1;
}

.cob-homepage .chp-w4-cta {
	width: 100%;
	border-radius: 8px;
	padding: 7px 6px;
	font-weight: 700;
	font-size: 10.5px;
	background: #FF9800;
	color: #fff;
	cursor: default;
}

/* ---------------------------------------------------------------------------
 * Career report
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-report {
	padding: 48px 20px;
}

.cob-homepage .chp-report-grid {
	max-width: 1152px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}

.cob-homepage .chp-report-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: right;
}

.cob-homepage .chp-report-text h2 {
	font-weight: 700;
	font-size: 30px;
	line-height: 1.2;
}

.cob-homepage .chp-report-text > p {
	color: var(--chp-muted);
	font-size: 16px;
	line-height: 1.6;
}

.cob-homepage .chp-report-checklist {
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--chp-border);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cob-homepage .chp-report-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.cob-homepage .chp-report-check {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #dcfce7;
	color: #16a34a;
	flex-shrink: 0;
	margin-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cob-homepage .chp-report-checklist span {
	font-size: 16px;
}

.cob-homepage .chp-report-card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--chp-border);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.cob-homepage .chp-report-card-head {
	background: var(--chp-secondary);
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cob-homepage .chp-report-card-head span {
	color: #fff;
	font-weight: 600;
	font-size: 14px;
}

.cob-homepage .chp-report-dots {
	display: flex;
	gap: 6px;
}

.cob-homepage .chp-report-dots i {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

.cob-homepage .chp-report-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cob-homepage .chp-report-persona {
	color: var(--chp-muted);
	font-size: 12px;
}

.cob-homepage .chp-report-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cob-homepage .chp-report-row-label {
	flex: 1;
	font-size: 13px;
	font-weight: 500;
}

.cob-homepage .chp-report-row-bar-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.cob-homepage .chp-report-row-bar-track {
	width: 80px;
	background: #f3f4f6;
	border-radius: 999px;
	height: 6px;
}

.cob-homepage .chp-report-row-bar-fill {
	height: 6px;
	border-radius: 999px;
}

.cob-homepage .chp-report-row-pct {
	font-size: 12px;
	font-weight: 700;
	min-width: 30px;
}

/* ---------------------------------------------------------------------------
 * Audience
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-audience {
	padding: 48px 20px;
}

.cob-homepage .chp-audience .chp-container {
	max-width: 1152px;
}

.cob-homepage .chp-audience h2 {
	font-weight: 700;
	font-size: 30px;
	text-align: center;
	margin-bottom: 32px;
}

.cob-homepage .chp-audience-carousel {
	overflow: hidden;
	border-radius: 16px;
	direction: ltr;
}

.cob-homepage .chp-audience-track {
	display: flex;
	transition: transform 0.3s ease-in-out;
}

.cob-homepage .chp-audience-carousel .chp-audience-card {
	direction: rtl;
}

.cob-homepage .chp-audience-card {
	min-width: 100%;
	direction: rtl;
	background: #fff;
	border: 1px solid var(--chp-border);
	padding: 24px;
	text-align: right;
	border-radius: 16px;
}

.cob-homepage .chp-audience-card-icon {
	margin-bottom: 16px;
}

.cob-homepage .chp-audience-card h3 {
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 12px;
}

.cob-homepage .chp-audience-card p {
	color: var(--chp-muted);
	font-size: 16px;
	line-height: 1.6;
}

.cob-homepage .chp-audience-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 16px;
}

.cob-homepage .chp-audience-dots button {
	width: 6px;
	height: 6px;
	padding: 0;
	border-radius: 50%;
	background: #d1d5db;
	transition: background-color 0.2s ease;
	flex-shrink: 0;
}

.cob-homepage .chp-audience-dots button.is-active {
	background: var(--chp-primary);
}

.cob-homepage .chp-audience-grid {
	display: none;
}

/* ---------------------------------------------------------------------------
 * Closing CTA
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-closing {
	background: #fff;
	padding: 48px 20px;
}

.cob-homepage .chp-closing-inner {
	max-width: 512px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.cob-homepage .chp-closing-inner h2 {
	font-weight: 700;
	font-size: 30px;
}

.cob-homepage .chp-closing-inner p {
	color: var(--chp-muted);
	font-size: 16px;
	line-height: 1.6;
}

/* ---------------------------------------------------------------------------
 * Trust bar
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-trust {
	background: #fff;
	border-top: 1px solid #EBEBEB;
	border-bottom: 1px solid #EBEBEB;
	padding: 20px 20px;
}

.cob-homepage .chp-trust .chp-container {
	max-width: 900px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.cob-homepage .chp-trust-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.cob-homepage .chp-trust-logo:hover {
	opacity: 0.9;
}

.cob-homepage .chp-trust-logo strong {
	font-weight: 700;
	color: #1F2430;
	font-size: 15px;
}

.cob-homepage .chp-trust-logo small {
	color: var(--chp-muted);
	font-size: 10px;
}

/* ---------------------------------------------------------------------------
 * Testimonials
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-testimonials {
	background: #FFF5F9;
	padding: 64px 20px;
}

.cob-homepage .chp-testimonials .chp-container {
	max-width: 1024px;
}

.cob-homepage .chp-testimonials h2 {
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	font-size: 30px;
	color: #131B41;
}

.cob-homepage .chp-testi-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.cob-homepage .chp-testi-page {
	display: none;
}

.cob-homepage .chp-testi-page.is-active {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.cob-homepage .chp-testi-card {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	text-align: right;
	display: flex;
	flex-direction: column;
	gap: 16px;
	border: 1px solid #F0E0EA;
}

.cob-homepage .chp-testi-video {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #1F2430;
	aspect-ratio: 16 / 9;
}

.cob-homepage .chp-testi-video-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cob-homepage .chp-testi-video-play span {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cob-homepage .chp-testi-video-duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border-radius: 4px;
	padding: 2px 6px;
	font-size: 11px;
}

.cob-homepage .chp-testi-quote {
	color: #4B4B60;
	flex: 1;
	font-size: 14px;
	line-height: 1.75;
}

.cob-homepage .chp-testi-person {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid #F0E0EA;
	padding-top: 16px;
}

.cob-homepage .chp-testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #EDE9FE;
	color: #6B4FE0;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cob-homepage .chp-testi-person strong {
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: #131B41;
}

.cob-homepage .chp-testi-person span {
	display: block;
	font-size: 12px;
	color: var(--chp-muted);
}

.cob-homepage .chp-testi-person small {
	display: block;
	font-size: 11px;
	color: #9CA3AF;
}

.cob-homepage .chp-testi-pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}

.cob-homepage .chp-testi-pager button {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #D7DEE8;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease;
}

.cob-homepage .chp-testi-pager button:hover:not(:disabled) {
	border-color: var(--chp-primary);
}

.cob-homepage .chp-testi-pager button:disabled {
	opacity: 0.3;
	cursor: default;
}

/* ---------------------------------------------------------------------------
 * Partners
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-partners {
	background: #fff;
	padding: 64px 20px;
}

.cob-homepage .chp-partners .chp-container {
	max-width: 1024px;
}

.cob-homepage .chp-partners h2 {
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	font-size: 30px;
	color: #131B41;
}

.cob-homepage .chp-partners-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.cob-homepage .chp-partner-card {
	background: #F7F8FA;
	border-radius: 16px;
	padding: 28px;
	text-align: right;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cob-homepage .chp-partner-logo {
	align-self: flex-start;
	font-weight: 700;
	color: #6B4FE0;
	border: 1px solid rgba(107, 79, 224, 0.2);
	background: rgba(237, 233, 254, 0.4);
	border-radius: 12px;
	padding: 8px 16px;
	white-space: pre-line;
	line-height: 1.2;
	font-size: 13px;
}

.cob-homepage .chp-partner-quote {
	color: #4B4B60;
	flex: 1;
	font-size: 14px;
	line-height: 1.75;
	white-space: pre-line;
}

.cob-homepage .chp-partner-person {
	border-top: 1px solid #D7DEE8;
	padding-top: 16px;
}

.cob-homepage .chp-partner-person strong {
	display: block;
	font-weight: 700;
	font-size: 15px;
	color: #131B41;
}

.cob-homepage .chp-partner-person span {
	font-size: 13px;
	color: var(--chp-muted);
}

/* ---------------------------------------------------------------------------
 * Contact
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-contact {
	background: #F7F8FA;
	padding: 64px 20px;
}

.cob-homepage .chp-contact .chp-container {
	max-width: 512px;
}

.cob-homepage .chp-contact h2 {
	font-weight: 700;
	text-align: center;
	margin-bottom: 4px;
	font-size: 30px;
	color: #131B41;
}

.cob-homepage .chp-contact-sub {
	text-align: center;
	color: var(--chp-muted);
	margin-bottom: 32px;
	font-size: 16px;
}

.cob-homepage .chp-contact-form {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #D7DEE8;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cob-homepage .chp-field label {
	display: block;
	text-align: right;
	font-weight: 700;
	margin-bottom: 6px;
	font-size: 13px;
	color: #1F2430;
}

.cob-homepage .chp-field label .chp-required {
	color: var(--chp-primary);
}

.cob-homepage .chp-field input,
.cob-homepage .chp-field select,
.cob-homepage .chp-field textarea {
	width: 100%;
	border-radius: 12px;
	border: 1px solid #D7DEE8;
	padding: 10px 16px;
	text-align: right;
	background: #fff;
	font-size: 14px;
}

.cob-homepage .chp-field textarea {
	resize: vertical;
}

.cob-homepage .chp-field input:focus,
.cob-homepage .chp-field select:focus,
.cob-homepage .chp-field textarea:focus {
	outline: none;
	border-color: var(--chp-primary);
}

.cob-homepage .chp-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}

.cob-homepage .chp-consent input {
	margin-top: 2px;
	flex-shrink: 0;
}

.cob-homepage .chp-consent span {
	color: var(--chp-muted);
	font-size: 12.5px;
	line-height: 1.6;
}

.cob-homepage .chp-contact-submit {
	width: 100%;
	color: #fff;
	border-radius: 12px;
	padding: 12px;
	font-weight: 700;
	font-size: 16px;
	background: var(--chp-primary);
	transition: opacity 0.2s ease;
}

.cob-homepage .chp-contact-submit:hover {
	opacity: 0.9;
}

.cob-homepage .chp-contact-submit:disabled {
	opacity: 0.6;
	cursor: default;
}

.cob-homepage .chp-contact-error {
	color: #d4183d;
	font-size: 13px;
	text-align: right;
	display: none;
}

.cob-homepage .chp-contact-error.is-visible {
	display: block;
}

.cob-homepage .chp-contact-success {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #D7DEE8;
	padding: 32px;
	text-align: center;
	display: none;
}

.cob-homepage .chp-contact-success.is-visible {
	display: block;
}

.cob-homepage .chp-contact-success-icon {
	font-size: 36px;
	margin-bottom: 12px;
}

.cob-homepage .chp-contact-success strong {
	display: block;
	font-weight: 700;
	font-size: 18px;
	color: #131B41;
}

.cob-homepage .chp-contact-success p {
	color: var(--chp-muted);
	margin-top: 8px;
	font-size: 15px;
}

/* ---------------------------------------------------------------------------
 * Mobile sticky CTA bar
 * ------------------------------------------------------------------------ */

.cob-homepage .chp-mobile-bar {
	position: fixed;
	bottom: 0;
	inset-inline: 0;
	z-index: 50;
	background: #fff;
	border-top: 1px solid var(--chp-border);
	padding: 12px;
}

.cob-homepage .chp-mobile-spacer {
	height: 64px;
}

/* ---------------------------------------------------------------------------
 * Breakpoint: mobile — "how it works" is a plain scrolling list here
 *
 * Everything that pins the section to the viewport is undone below: the tall
 * scroll container collapses to its content and the sticky box stops sticking,
 * so each step simply scrolls past with its own illustration underneath it.
 * Kept last (right before the desktop block) so these overrides win over the
 * base rules above without needing extra specificity.
 * ------------------------------------------------------------------------ */

@media (max-width: 1023px) {
	.cob-homepage .chp-how-scroll {
		height: auto;
	}

	.cob-homepage .chp-how-sticky {
		position: static;
		height: auto;
		overflow: visible;
	}

	.cob-homepage .chp-how-visual-desktop {
		display: none;
	}

	.cob-homepage .chp-how-steps {
		overflow: visible;
		padding: 0;
	}

	.cob-homepage .chp-step-item {
		padding: 0;
		border-bottom: none;
	}

	/* No active step to track here — every step reads as a current one. */
	.cob-homepage .chp-step-item .chp-step-num {
		background: var(--chp-primary);
		color: #fff;
	}

	.cob-homepage .chp-step-item .chp-step-title {
		color: var(--chp-fg);
	}

	.cob-homepage .chp-step-item .chp-step-body {
		color: var(--chp-muted);
	}

	.cob-homepage .chp-step-visual {
		display: block;
		margin: 16px 0 48px;
	}

	/* Height of the tallest mockup, measured by JS (initHowItWorks), so all
	   four illustrations render at the same size. */
	.cob-homepage .chp-step-visual .chp-visual-card {
		min-height: var(--chp-step-visual-h, 0);
	}

	.cob-homepage .chp-how-steps-cta {
		margin-top: 0;
		opacity: 1;
		pointer-events: auto;
	}

	.cob-homepage .chp-how-steps-cta .chp-cta-btn {
		width: 100%;
		white-space: normal;
	}
}

/* ---------------------------------------------------------------------------
 * Breakpoint: desktop (matches Tailwind's lg = 1024px used in the source design)
 * ------------------------------------------------------------------------ */

@media (min-width: 1024px) {
	.cob-homepage .chp-hero {
		padding: 40px 20px 24px;
	}

	.cob-homepage .chp-hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.cob-homepage .chp-hero-cta-desktop {
		display: block;
	}

	.cob-homepage .chp-how-layout {
		display: grid;
	}

	.cob-homepage .chp-report-grid {
		grid-template-columns: 1fr 1fr;
		gap: 56px;
	}

	.cob-homepage .chp-audience-carousel {
		display: none;
	}

	.cob-homepage .chp-audience-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.cob-homepage .chp-audience-grid .chp-audience-card {
		padding: 28px;
	}

	.cob-homepage .chp-audience-grid .chp-audience-card h3 {
		font-size: 20px;
	}

	.cob-homepage .chp-audience-grid .chp-audience-card p {
		font-size: 14px;
		line-height: 1.85;
	}

	.cob-homepage .chp-testi-page.is-active {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.cob-homepage .chp-partners-grid {
		grid-template-columns: 1fr 1fr;
	}

	.cob-homepage .chp-mobile-bar {
		display: none;
	}

	.cob-homepage .chp-mobile-spacer {
		display: none;
	}
}
