/* ============================================================
   Sportingo Widgets — frontend stylesheet
   © Weblix.pl
   ============================================================ */

/* Local fallback design tokens — page-level :root takes priority. */
.swp-btn,
.elementor-widget-sportingo-cta-button {
	--swp-ink:        var(--ink, #0e1228);
	--swp-paper:      var(--paper, #fdfcf8);
	--swp-accent:     var(--accent, #f39317);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-grad:       var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
	--swp-ease:       var(--ease, cubic-bezier(.2,.7,.2,1));
}

/* ============================================================
   Brand text utilities — for inline span emphasis inside any
   Elementor Heading / Text Editor widget. Use class= instead of
   inline style= because Elementor sanitizes -webkit-background-clip
   and -webkit-text-fill-color from inline style attributes.
   ============================================================ */

/* Gradient text emphasis — for use on dark backgrounds.
   Usage: <span class="swp-grad-text">stoją finanse</span> */
.swp-grad-text {
	background: linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%);
	-webkit-background-clip: text;
	        background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Light + accent-deep emphasis — for use on light/cream backgrounds.
   Implements Sportingo "italic" convention via weight + color (NOT font-style).
   Usage: <span class="swp-accent-text">zaczęła się w sporcie</span> */
.swp-accent-text {
	font-weight: 300;
	color: #b72e18;
}

/* ====================
   CTA Button
   ==================== */
.swp-btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 16px 26px;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	letter-spacing: -0.01em;
	text-decoration: none;
	white-space: nowrap;
	transition:
		transform .35s var(--swp-ease),
		background-color .35s var(--swp-ease),
		color .35s var(--swp-ease),
		border-color .35s var(--swp-ease);
	will-change: transform;
}

.swp-btn,
.swp-btn:hover,
.swp-btn:focus,
.swp-btn:active {
	text-decoration: none;
}

/* Sizes */
.swp-btn--sm {
	padding: 12px 20px;
	font-size: 13px;
	gap: 10px;
}
.swp-btn--md {
	padding: 16px 26px;
	font-size: 15px;
	gap: 14px;
}
.swp-btn--lg {
	padding: 20px 32px;
	font-size: 17px;
	gap: 16px;
}

/* Primary variant — dark pill on cream/light bg (default Sportingo CTA) */
.swp-btn--primary {
	background-color: var(--swp-ink);
	color: var(--swp-paper);
}

/* Text node — for typography control hooks */
.swp-btn__text {
	display: inline-block;
}

/* Arrow circle */
.swp-btn__arrow {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--swp-accent);
	color: var(--swp-paper);
	transition: transform .35s var(--swp-ease), background .35s var(--swp-ease);
}
.swp-btn--sm .swp-btn__arrow { width: 18px; height: 18px; }
.swp-btn--lg .swp-btn__arrow { width: 26px; height: 26px; }

.swp-btn.has-arrow-gradient .swp-btn__arrow {
	background: var(--swp-grad);
}

.swp-btn__arrow svg {
	display: block;
	width: 11px;
	height: 11px;
	stroke: currentColor;
}
.swp-btn--sm .swp-btn__arrow svg { width: 9px;  height: 9px; }
.swp-btn--lg .swp-btn__arrow svg { width: 13px; height: 13px; }

/* Hover effects */
.swp-btn.is-lift:hover { transform: translateY(-2px); }
.swp-btn.is-arrow-rotate:hover .swp-btn__arrow { transform: rotate(-45deg); }

/* Focus state for keyboard a11y */
.swp-btn:focus-visible {
	outline: 2px solid var(--swp-accent);
	outline-offset: 4px;
	border-radius: 999px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.swp-btn,
	.swp-btn__arrow {
		transition-duration: .001ms !important;
	}
	.swp-btn.is-lift:hover { transform: none; }
	.swp-btn.is-arrow-rotate:hover .swp-btn__arrow { transform: none; }
}

/* ============================================================
   Hero Stopwatch Scene
   ============================================================ */

.elementor-widget-sportingo-hero-stopwatch-scene {
	--swp-ink:        var(--ink, #0e1228);
	--swp-paper:      var(--paper, #fdfcf8);
	--swp-cream:      var(--cream, #f6f3ec);
	--swp-cream-deep: var(--cream-deep, #ece7da);
	--swp-mute:       var(--mute, #6c7090);
	--swp-accent:     var(--accent, #f39317);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-grad:       var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
	--swp-ease:       var(--ease, cubic-bezier(.2,.7,.2,1));
	/* Container queries host (widget root, not .swp-stopwatch-scene). */
	container-type: inline-size;
	container-name: swp-scene;
	/* Reserve scene aspect-ratio height as padding-box on widget root.
	   `padding-bottom: 110%` (relative to widget root width) + `height: 0`
	   gives intrinsic height = 110% width = matches scene aspect-ratio 1/1.1.
	   Why padding instead of:
	   - `aspect-ratio` on widget root: Elementor flex column items don't
	     honor aspect-ratio for height calculation — widget root collapses to 0.
	   - `min-height: 110cqw`: cqw on widget root references nearest ANCESTOR
	     container (none → viewport), giving 110vw = 1408px on desktop.
	   - `::before { padding-bottom: 110% }`: pseudo content height is not
	     respected by Elementor flex column for parent height calculation.
	   Real padding on the flex item itself IS respected — flex layout
	   computes padding-box height regardless of containment quirks. */
	position: relative;
	padding-bottom: 110%;
	height: 0;
}
.elementor-widget-sportingo-hero-stopwatch-scene > .elementor-widget-container {
	position: absolute;
	inset: 0;
	height: auto;
}

.swp-stopwatch-scene {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1.1;
	border-radius: 28px;
	overflow: hidden;
	background:
		radial-gradient(80% 60% at 50% 20%, rgba(243,147,23, var(--swp-scene-glow, .32)), transparent 70%),
		linear-gradient(180deg, var(--swp-scene-bg-top, #2a3060) 0%, var(--swp-scene-bg-bottom, #15182e) 100%);
	box-shadow:
		0 30px 80px -30px rgba(14,18,40,.45),
		inset 0 1px 0 rgba(255,255,255,.06);
}

.swp-stopwatch-scene__lanes {
	position: absolute;
	inset: 0;
	opacity: .08;
	background-image: repeating-linear-gradient(
		to right,
		transparent 0, transparent 60px,
		#fff 60px, #fff 61px
	);
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
	        mask-image: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
	pointer-events: none;
}

.swp-stopwatch-scene__orbit {
	position: absolute;
	width: 78%;
	aspect-ratio: 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px dashed rgba(255,255,255,.18);
	border-radius: 50%;
	animation: swp-scene-orbit 60s linear infinite;
	pointer-events: none;
}
.swp-stopwatch-scene__orbit::after {
	content: "";
	position: absolute;
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--swp-grad);
	top: -7px; left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 24px rgba(243,147,23,.6);
}
@keyframes swp-scene-orbit {
	to { transform: translate(-50%,-50%) rotate(360deg); }
}

.swp-stopwatch-scene__finish-tape {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 38px;
	background-image:
		linear-gradient(45deg,  rgba(255,255,255,.18) 25%, transparent 25%),
		linear-gradient(-45deg, rgba(255,255,255,.18) 25%, transparent 25%),
		linear-gradient(45deg,  transparent 75%, rgba(255,255,255,.18) 75%),
		linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.18) 75%);
	background-size: 24px 24px;
	background-position: 0 0, 0 12px, 12px -12px, -12px 0;
	pointer-events: none;
}

.swp-stopwatch {
	position: absolute;
	width: 56%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -52%);
	filter: drop-shadow(0 24px 50px rgba(0,0,0,.35));
}

.swp-stopwatch__hand.is-static {
	transform: rotate(135deg);
	transform-origin: 200px 240px;
	transform-box: view-box;
}
.swp-stopwatch__hand.is-animated {
	transform-origin: 200px 240px;
	transform-box: view-box;
	animation: swp-stopwatch-sweep var(--swp-hand-speed, 14s) linear infinite;
	will-change: transform;
}
@keyframes swp-stopwatch-sweep {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* ============================================================
   Floating cards (4 variants)
   ============================================================ */
.swp-card {
	position: absolute;
	transform: rotate(var(--swp-card-tilt, 0deg));
}
.swp-card__lift {
	animation: swp-card-bob 6s ease-in-out infinite;
	will-change: transform;
}
.swp-card--medal .swp-card__lift     { animation-duration: 8s; }
.swp-card--balance .swp-card__lift   { animation-duration: 7s; animation-delay: -1s; }
.swp-card--scoreboard .swp-card__lift{ animation-duration: 9s; animation-delay: -2s; }
@keyframes swp-card-bob {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-12px); }
}

.swp-card__inner {
	background: var(--swp-paper);
	border-radius: 18px;
	padding: 14px 18px;
	box-shadow:
		0 24px 48px -12px rgba(14,18,40,.28),
		inset 0 1px 0 rgba(255,255,255,.6);
	border: 1px solid rgba(14,18,40,.06);
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--swp-ink);
	line-height: 1.4;
}
.swp-card__inner--row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.swp-card__label {
	font-size: 11px;
	color: var(--swp-mute);
	letter-spacing: .04em;
	text-transform: uppercase;
	font-weight: 500;
}

/* — Timer card — */
.swp-card__icon {
	width: 42px; height: 42px;
	border-radius: 12px;
	background: linear-gradient(135deg, #fff5e6, #ffe2bc);
	display: grid; place-items: center;
	color: var(--swp-accent-deep);
	flex-shrink: 0;
}
.swp-card__value--timer {
	font-family: "Bebas Neue", sans-serif;
	font-size: 28px;
	font-weight: 400;
	color: var(--swp-ink);
	line-height: 1;
	letter-spacing: .02em;
}
.swp-card__value--timer sup {
	font-size: 13px;
	color: var(--swp-accent-deep);
	margin-left: 2px;
}

/* — Medal card — */
.swp-card--medal { width: 200px; }
.swp-card__ribbon {
	height: 6px;
	width: 70%;
	background: var(--swp-grad);
	border-radius: 99px;
	margin-bottom: 10px;
}
.swp-card__label--medal {
	font-size: 11px;
}
.swp-card__headline {
	font-family: "Sora", -apple-system, sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--swp-ink);
	line-height: 1.15;
	margin-top: 4px;
	letter-spacing: -.02em;
}
.swp-card__headline em {
	font-style: normal;
	font-weight: 600;
	color: var(--swp-accent-deep);
}

/* — Balance card — */
.swp-card--balance { width: 240px; }
.swp-card__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.swp-card__amount {
	font-family: "Sora", -apple-system, sans-serif;
	font-feature-settings: "tnum", "lnum";
	font-variant-numeric: tabular-nums;
	font-size: 24px;
	font-weight: 600;
	color: var(--swp-ink);
	letter-spacing: -.02em;
	line-height: 1.1;
}
.swp-card__delta {
	color: #22a06b;
	font-size: 12px;
	font-weight: 600;
	flex-shrink: 0;
	margin-left: 8px;
}
.swp-card__bars {
	display: flex;
	gap: 4px;
	align-items: end;
	height: 32px;
	margin-top: 12px;
}
.swp-card__bar {
	flex: 1;
	background: var(--swp-cream-deep);
	border-radius: 3px;
	min-height: 2px;
}
.swp-card__bar.is-up {
	background: var(--swp-grad);
}

/* — Scoreboard card — */
.swp-card--scoreboard { width: 230px; }
.swp-card--scoreboard .swp-card__inner {
	background: #15182e;
	color: var(--swp-paper);
	border: 1px solid rgba(255,255,255,.08);
	padding: 16px 18px;
}
.swp-card__label--scoreboard {
	font-family: "Bebas Neue", sans-serif;
	font-size: 13px;
	letter-spacing: .22em;
	color: var(--swp-accent);
	text-transform: none;
	font-weight: 400;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.swp-card__live-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: #22a06b;
	box-shadow: 0 0 0 3px rgba(34,160,107,.3);
	animation: swp-live-pulse 1.6s infinite;
}
@keyframes swp-live-pulse {
	0%,100% { opacity: 1; transform: scale(1); }
	50%     { opacity: .6; transform: scale(1.2); }
}
.swp-card__score-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: 10px;
}
.swp-card__score-label {
	font-size: 12px;
	opacity: .8;
}
.swp-card__score-value {
	font-family: "Bebas Neue", sans-serif;
	font-variant-numeric: tabular-nums;
	font-weight: 400;
	font-size: 19px;
	letter-spacing: .03em;
}
.swp-card__score-value.is-highlight {
	color: var(--swp-accent);
}

/* Reduced motion — freeze scene animations */
@media (prefers-reduced-motion: reduce) {
	.swp-stopwatch-scene__orbit,
	.swp-stopwatch__hand.is-animated,
	.swp-card__lift,
	.swp-card__live-dot {
		animation: none !important;
	}
}

/* ============================================================
   Hero Stopwatch Scene — 3-tier responsive layout
   (container queries on .swp-stopwatch-scene)

   Tier 1 (Wide, ≥ 520cqi): defaults above — cinematic spread
   Tier 2 (Medium, 480-520cqi): edge-aligned cards, calmer tilt
   Tier 3 (Compact, < 480cqi): 4-card layout shrunk + flattened

   Tier 2 has a deliberately narrow range — only triggers in
   very narrow Elementor column slots, NOT on standard laptop
   viewports. Most desktops/laptops/tablets stay in Tier 1.
   ============================================================ */

/* ──────────── Tier 2 — Medium (480-520cqi) ──────────── */
@container swp-scene (max-width: 520px) {
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer {
		top: 4% !important;
		left: 3% !important;
		--swp-card-tilt: -1deg !important;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__inner {
		padding: 10px 14px;
		gap: 10px;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__icon {
		width: clamp(32px, 8cqi, 42px);
		height: clamp(32px, 8cqi, 42px);
		border-radius: clamp(9px, 2.5cqi, 12px);
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__icon svg {
		width: clamp(16px, 4cqi, 22px);
		height: clamp(16px, 4cqi, 22px);
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__value--timer { font-size: clamp(20px, 5.5cqi, 28px); }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__label { font-size: clamp(10px, 2.6cqi, 12px); }

	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--medal {
		top: 6% !important;
		right: 3% !important;
		width: clamp(120px, 26cqi, 160px);
		--swp-card-tilt: 1deg !important;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--medal .swp-card__inner { padding: 10px 14px; }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--medal .swp-card__headline { font-size: clamp(13px, 3.6cqi, 16px); }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--medal .swp-card__ribbon { height: clamp(4px, 1.2cqi, 6px); }

	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance {
		bottom: 7% !important;
		left: 3% !important;
		width: clamp(140px, 30cqi, 180px);
		--swp-card-tilt: -1deg !important;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance .swp-card__inner { padding: 10px 14px; }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance .swp-card__amount {
		font-size: clamp(15px, 4cqi, 18px);
		white-space: nowrap;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance .swp-card__label { font-size: clamp(9px, 2.4cqi, 11px); }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance .swp-card__bars {
		height: clamp(18px, 5cqi, 32px);
		margin-top: 8px;
	}

	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard {
		bottom: 7% !important;
		right: 3% !important;
		width: clamp(130px, 28cqi, 180px);
		--swp-card-tilt: 1deg !important;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard .swp-card__inner { padding: 12px 14px; }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard .swp-card__score-value { font-size: clamp(15px, 4cqi, 19px); }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard .swp-card__label--scoreboard {
		font-size: clamp(11px, 2.8cqi, 13px);
		letter-spacing: .16em;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard .swp-card__score-label { font-size: clamp(10px, 2.8cqi, 12px); }

	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-stopwatch { width: 52%; }
}

/* ──────────── Tier 3 — Compact (< 480cqi), 4-card layout ──────────── */
@container swp-scene (max-width: 480px) {
	/* All 4 cards stay visible. Tilt flattened to 0 — at this scale
	   tilt reads as visual noise instead of design. Cards are scaled
	   down hard and corner-aligned with positive offsets. */
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer {
		top: 4% !important;
		left: 4% !important;
		--swp-card-tilt: 0deg !important;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__inner {
		padding: 7px 10px;
		gap: 6px;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__icon {
		width: clamp(26px, 7.5cqi, 32px);
		height: clamp(26px, 7.5cqi, 32px);
		border-radius: 8px;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__icon svg {
		width: clamp(13px, 4cqi, 16px);
		height: clamp(13px, 4cqi, 16px);
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__value--timer { font-size: clamp(16px, 5cqi, 20px); }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--timer .swp-card__label { font-size: clamp(8px, 2.4cqi, 10px); }

	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--medal {
		top: 4% !important;
		right: 4% !important;
		width: clamp(100px, 28cqi, 120px);
		--swp-card-tilt: 0deg !important;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--medal .swp-card__inner { padding: 7px 10px; }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--medal .swp-card__ribbon { height: 3px; margin-bottom: 6px; }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--medal .swp-card__label--medal { font-size: clamp(8px, 2.4cqi, 10px); }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--medal .swp-card__headline { font-size: clamp(11px, 3.2cqi, 13px); margin-top: 2px; }

	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance {
		bottom: 4% !important;
		left: 4% !important;
		width: clamp(140px, 38cqi, 155px);
		--swp-card-tilt: 0deg !important;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance .swp-card__inner { padding: 7px 10px; }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance .swp-card__amount {
		font-size: clamp(12px, 3.4cqi, 14px);
		white-space: nowrap;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance .swp-card__label { font-size: clamp(8px, 2.4cqi, 10px); }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance .swp-card__delta {
		font-size: clamp(9px, 2.6cqi, 10px);
		margin-left: 4px;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--balance .swp-card__bars {
		height: 10px;
		gap: 2px;
		margin-top: 5px;
	}

	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard {
		bottom: 4% !important;
		right: 4% !important;
		width: clamp(130px, 38cqi, 150px);
		--swp-card-tilt: 0deg !important;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard .swp-card__inner { padding: 9px 11px; }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard .swp-card__score-value { font-size: clamp(13px, 3.8cqi, 15px); }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard .swp-card__label--scoreboard {
		font-size: clamp(10px, 2.8cqi, 11px);
		letter-spacing: .18em;
	}
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard .swp-card__score-label { font-size: clamp(9px, 2.6cqi, 10px); }
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-card--scoreboard .swp-card__score-row { margin-top: 5px; }

	/* Stopwatch shrinks to leave corridors for 4 cards. */
	.elementor-widget-sportingo-hero-stopwatch-scene .swp-stopwatch-scene .swp-stopwatch { width: 50%; }
}

/* ============================================================
   Career Lanes — stadium-lane timeline widget
   ============================================================ */

.elementor-widget-sportingo-career-lanes {
	--swp-ink:         var(--ink, #0e1228);
	--swp-paper:       var(--paper, #fdfcf8);
	--swp-cream:       var(--cream, #f6f3ec);
	--swp-cream-warm:  var(--cream-warm, #faf7f0);
	--swp-line:        var(--line, #d8d2c2);
	--swp-mute:        var(--mute, #6c7090);
	--swp-navy:        var(--navy, #222850);
	--swp-navy-mid:    var(--navy-mid, #2a3060);
	--swp-navy-soft:   var(--navy-soft, #3a3f63);
	--swp-accent:      var(--accent, #f39317);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-grad:        var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
	--swp-ease:        var(--ease, cubic-bezier(.2,.7,.2,1));
}

.swp-career-lanes {
	--swp-cl-marker-col: 130px;
	position: relative;
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Background lanes pattern (vertical pinstripes with vertical fade mask). */
.swp-career-lanes.has-stripes::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		to right,
		transparent 0, transparent 80px,
		rgba(34,40,80,.04) 80px, rgba(34,40,80,.04) 81px
	);
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
	        mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
	pointer-events: none;
	z-index: 0;
}

.swp-career-lanes__track {
	position: relative;
	z-index: 1;
}

/* Vertical dotted guide line connecting all markers. */
.swp-career-lanes.has-guide .swp-career-lanes__track::before {
	content: "";
	position: absolute;
	left: calc(var(--swp-cl-marker-col) / 2);
	top: 28px;
	bottom: 80px;
	width: 1px;
	background: repeating-linear-gradient(
		to bottom,
		var(--swp-line) 0, var(--swp-line) 8px,
		transparent 8px, transparent 16px
	);
	transform: translateX(-50%);
	z-index: 0;
}

@media (max-width: 700px) {
	.swp-career-lanes { --swp-cl-marker-col: 64px; }
}

.swp-lane {
	display: grid;
	grid-template-columns: var(--swp-cl-marker-col) 1fr;
	gap: 32px;
	align-items: start;
	padding: 28px 0 36px;
	position: relative;
	z-index: 1;
}
@media (max-width: 700px) {
	.swp-lane { gap: 18px; padding: 20px 0 28px; }
}

.swp-lane__marker {
	display: grid;
	place-items: center;
	position: relative;
}

/* Outlined Bebas Neue lap counter. */
.swp-lane__lap {
	font-family: "Bebas Neue", "Helvetica Neue Condensed", "Arial Narrow", sans-serif;
	font-weight: 400;
	font-size: 5rem;
	line-height: .82;
	letter-spacing: 0;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--swp-ink);
	transition: color .35s var(--swp-ease), -webkit-text-stroke-color .35s var(--swp-ease);
}
.swp-lane:hover .swp-lane__lap {
	color: var(--swp-accent-deep);
	-webkit-text-stroke-color: var(--swp-accent-deep);
}

/* Dot below lap counter, sitting on the guide line. */
.swp-lane__dot {
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--swp-paper);
	border: 2px solid var(--swp-mute);
	transition: background .35s var(--swp-ease), border-color .35s var(--swp-ease), transform .35s var(--swp-ease);
}
.swp-lane:hover .swp-lane__dot {
	background: var(--swp-accent);
	border-color: var(--swp-accent);
	transform: translateX(-50%) scale(1.3);
}

.swp-lane__body {
	padding-top: 12px;
	min-width: 0;
}
.swp-lane__label {
	font-family: "Bebas Neue", "Helvetica Neue Condensed", "Arial Narrow", sans-serif;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--swp-mute);
	display: inline-block;
	margin-bottom: 10px;
}
.swp-lane__title {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: clamp(1.4rem, 2vw, 1.85rem);
	line-height: 1.15;
	letter-spacing: -.025em;
	color: var(--swp-ink);
	margin: 0 0 10px;
	transition: color .35s var(--swp-ease);
}
.swp-lane:hover .swp-lane__title { color: var(--swp-accent-deep); }
.swp-lane__title em {
	font-style: normal;
	font-weight: 300;
	color: var(--swp-accent-deep);
}
.swp-lane__text {
	font-family: "Onest", -apple-system, sans-serif;
	color: var(--swp-navy-soft);
	line-height: 1.6;
	margin: 0;
	font-size: 15px;
	max-width: 620px;
}

/* Credential chips inside lane body. */
.swp-lane__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}
.swp-lane__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--swp-paper);
	border: 1px solid var(--swp-line);
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--swp-navy);
	letter-spacing: .02em;
}
.swp-lane__chip::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--swp-accent-deep);
	flex-shrink: 0;
}

/* Finish lane — gradient lap counter (no longer outlined). */
.swp-lane--finish .swp-lane__lap {
	background: var(--swp-grad);
	-webkit-background-clip: text;
	        background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 0;
	color: transparent;
}
.swp-lane--finish .swp-lane__dot {
	background: var(--swp-accent-deep);
	border-color: var(--swp-accent-deep);
}
.swp-lane--finish .swp-lane__title { color: var(--swp-accent-deep); }
.swp-lane--finish .swp-lane__label { color: var(--swp-accent-deep); }

/* Finish quote panel (dark navy CTA at end of timeline). */
.swp-career-finish {
	margin-top: 24px;
	padding: 48px 56px;
	background: linear-gradient(135deg,
		var(--swp-cl-finish-top, #0e1228) 0%,
		var(--swp-cl-finish-bottom, #2a3060) 100%);
	border-radius: 24px;
	color: var(--swp-paper);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
/* Top accent line — thin brand gradient, full width inside the rounded panel.
   Replaced previous "checkered flag" stripe (too motorsport, leaked past
   border-radius on some renderers). */
.swp-career-finish::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--swp-grad);
	z-index: 1;
}
/* Subtle accent glow in the bottom-right corner — softer than before. */
.swp-career-finish::after {
	content: "";
	position: absolute;
	inset: auto -15% -40% auto;
	width: 55%;
	height: 75%;
	background: radial-gradient(ellipse, rgba(243,147,23,.14), transparent 65%);
	pointer-events: none;
	z-index: 0;
}
.swp-career-finish__quote {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 300;
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	line-height: 1.35;
	letter-spacing: -.02em;
	margin: 0 0 24px;
	color: var(--swp-paper);
	position: relative;
	z-index: 1;
	max-width: 880px;
}
.swp-career-finish__quote::before {
	content: "“";
	display: block;
	font-family: "Sora", -apple-system, sans-serif;
	font-size: 4rem;
	line-height: .6;
	color: var(--swp-accent);
	margin-bottom: 12px;
}
.swp-career-finish__quote em {
	font-style: normal;
	font-weight: 600;
	color: var(--swp-accent);
}
.swp-career-finish__signature {
	display: flex;
	align-items: center;
	gap: 14px;
	position: relative;
	z-index: 1;
}
.swp-career-finish__swatch {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--swp-grad);
	display: grid;
	place-items: center;
	color: var(--swp-paper);
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: 18px;
}
.swp-career-finish__name {
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 14px;
	color: rgba(253,252,248,.85);
	line-height: 1.4;
}
.swp-career-finish__name strong {
	color: var(--swp-paper);
	font-weight: 600;
	display: block;
	font-size: 16px;
}
@media (max-width: 700px) {
	.swp-career-finish { padding: 32px 24px; }
}

/* Reduced motion. */
@media (prefers-reduced-motion: reduce) {
	.swp-lane__lap,
	.swp-lane__dot,
	.swp-lane__title { transition: none !important; }
	.swp-lane:hover .swp-lane__dot { transform: translateX(-50%); }
}

/* ============================================================
   Checklist Card
   ============================================================ */

.elementor-widget-sportingo-checklist-card {
	--swp-paper:       var(--paper, #fdfcf8);
	--swp-grad:        var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
	--swp-ease:        var(--ease, cubic-bezier(.2,.7,.2,1));
}

.swp-checklist-card {
	background: rgba(253,252,248,.04);
	border: 1px solid rgba(253,252,248,.1);
	border-radius: 24px;
	padding: 32px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
}

.swp-checklist-card__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(253,252,248,.08);
}
.swp-checklist-card__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.swp-checklist-card__item:first-child {
	padding-top: 0;
}

/* Check icon — gradient circle by default; can switch to solid via prefix class. */
.swp-checklist-card__check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--swp-grad);
	display: grid;
	place-items: center;
	color: var(--swp-paper);
}
/* Solid mode — overridden via inline `selectors` from PHP control. */

/* Force child elements (svg / i / img) to inherit color and respect size. */
.swp-checklist-card__check svg,
.swp-checklist-card__check i,
.swp-checklist-card__check img {
	width: 13px;
	height: 13px;
	font-size: 13px;
	line-height: 1;
	display: block;
	max-width: none;
	object-fit: contain;
	color: inherit;
}
.swp-checklist-card__check svg {
	fill: currentColor;
	stroke: currentColor;
}

.swp-checklist-card__body {
	flex: 1;
	min-width: 0;
}

.swp-checklist-card__title {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 500;
	font-size: 17px;
	margin: 0 0 4px;
	color: var(--swp-paper);
	letter-spacing: -.02em;
	line-height: 1.2;
}

.swp-checklist-card__desc {
	margin: 0;
	font-size: 13px;
	color: rgba(253,252,248,.65);
	line-height: 1.45;
}

/* ============================================================
   Values Grid
   ============================================================ */

.elementor-widget-sportingo-values-grid {
	--swp-ink:         var(--ink, #0e1228);
	--swp-paper:       var(--paper, #fdfcf8);
	--swp-line:        var(--line, #d8d2c2);
	--swp-navy-soft:   var(--navy-soft, #3a3f63);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-ease:        var(--ease, cubic-bezier(.2,.7,.2,1));
}

.swp-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
}

.swp-value-card {
	background: var(--swp-paper);
	border: 1px solid var(--swp-line);
	border-radius: 22px;
	padding: 32px;
	position: relative;
}

/* Icon badge — warm gradient bg with accent-deep icon. */
.swp-value-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg,
		var(--swp-vg-icon-bg-top, #fff5e6),
		var(--swp-vg-icon-bg-bottom, #ffe2bc));
	display: grid;
	place-items: center;
	color: var(--swp-accent-deep);
	margin-bottom: 22px;
}

/* Force child elements (svg, i, img) to inherit parent color and respect
   size controls. Same pattern as Team Grid WhatsApp icon (lessons learned). */
.swp-value-card__icon svg,
.swp-value-card__icon i,
.swp-value-card__icon img {
	width: 26px;
	height: 26px;
	font-size: 26px;
	line-height: 1;
	display: block;
	max-width: none;
	object-fit: contain;
	color: inherit;
}
.swp-value-card__icon svg {
	fill: currentColor;
}

.swp-value-card__title {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: 26px;
	line-height: 1.15;
	margin: 0 0 12px;
	letter-spacing: -.03em;
	color: var(--swp-ink);
}

.swp-value-card__desc {
	font-size: 14px;
	line-height: 1.55;
	color: var(--swp-navy-soft);
	margin: 0;
}

/* — Partner badge (chip "Partner: Imię · Organizacja") — */
.swp-value-card__partner {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 16px 9px 14px;
	background: #faf7f0;
	border: 1px solid var(--swp-line, #d8d2c2);
	border-radius: 99px;
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 500;
	width: fit-content;
	max-width: 100%;
	margin-top: 18px;
	align-self: flex-start;
}
.swp-value-card__partner::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b72e18;
	flex-shrink: 0;
}
.swp-value-card__partner-label {
	color: var(--swp-navy-soft, #3a3f63);
	font-weight: 500;
}
.swp-value-card__partner-name {
	color: var(--swp-ink, #0e1228);
	font-weight: 600;
}

/* — Wide card mode (toggle: 1–2 col layouts or partner badges) — */
.swp-vg-wide-yes .swp-value-card {
	padding: 44px 40px;
}
.swp-vg-wide-yes .swp-value-card__title {
	font-size: 28px;
	line-height: 1.18;
}
.swp-vg-wide-yes .swp-value-card__desc {
	font-size: 15px;
	line-height: 1.6;
}
@media (max-width: 700px) {
	.swp-vg-wide-yes .swp-value-card { padding: 32px 28px; }
	.swp-vg-wide-yes .swp-value-card__title { font-size: 22px; }
}

/* ============================================================
   Team Grid
   ============================================================ */

.elementor-widget-sportingo-team-grid {
	--swp-ink:         var(--ink, #0e1228);
	--swp-paper:       var(--paper, #fdfcf8);
	--swp-navy:        var(--navy, #222850);
	--swp-navy-soft:   var(--navy-soft, #3a3f63);
	--swp-line:        var(--line, #d8d2c2);
	--swp-accent:      var(--accent, #f39317);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-grad:        var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
	--swp-ease:        var(--ease, cubic-bezier(.2,.7,.2,1));
}

.swp-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
}

.swp-team-card {
	background: var(--swp-paper);
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid var(--swp-line);
	transition: transform .35s var(--swp-ease), border-color .35s var(--swp-ease);
}
.swp-team-card:hover {
	transform: translateY(-4px);
	border-color: var(--swp-ink);
}

/* Photo (top, aspect 4/5 by default). */
.swp-team-card__photo {
	aspect-ratio: 1 / 1.25;
	background: linear-gradient(160deg,
		var(--swp-tg-bg-top, #2a3060),
		var(--swp-tg-bg-bottom, #15182e));
	position: relative;
	overflow: hidden;
}
.elementor-widget-sportingo-team-grid .swp-team-card__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	max-width: none;
}
/* Bottom-up dark overlay for readability of pill / cinematic mood. */
.swp-team-card__photo::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 60%;
	background: linear-gradient(180deg,
		transparent,
		color-mix(in srgb, var(--swp-ink) calc(var(--swp-tg-overlay-alpha, .7) * 100%), transparent));
	pointer-events: none;
	z-index: 1;
}

/* Role pill — top-left of photo, glassmorphism. */
.swp-team-card__pill {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(253,252,248,.95);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 99px;
	padding: 5px 12px;
	font-size: 10px;
	color: var(--swp-navy);
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	z-index: 2;
}

/* Brand gradient stripe — bottom edge of photo. */
.swp-team-card__stripe {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60%;
	height: 4px;
	background: var(--swp-grad);
	z-index: 2;
}

/* Info block. */
.swp-team-card__info {
	padding: 22px 22px 26px;
}

.swp-team-card__name {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.15;
	letter-spacing: -.025em;
	margin: 0 0 4px;
	color: var(--swp-ink);
}

.swp-team-card__position {
	font-size: 13px;
	color: var(--swp-navy-soft);
	line-height: 1.4;
	margin: 0;
}

/* Contact block — phone + optional WhatsApp. */
.swp-team-card__contact {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--swp-line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	gap: 12px;
}
.swp-team-card__phone {
	font-family: "Sora", -apple-system, sans-serif;
	color: var(--swp-ink);
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	text-decoration: none;
	transition: color .35s var(--swp-ease);
}
a.swp-team-card__phone:hover,
a.swp-team-card__phone:focus {
	text-decoration: none;
	color: var(--swp-accent-deep);
}

.swp-team-card__whatsapp {
	color: var(--swp-accent-deep);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	transition: opacity .35s var(--swp-ease);
}
a.swp-team-card__whatsapp:hover,
a.swp-team-card__whatsapp:focus { text-decoration: none; opacity: .8; }

.swp-team-card__whatsapp-icon {
	color: #22a06b;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
/* Force child elements to inherit parent color — Font Awesome and some
   themes ship `<i>` with hardcoded color. */
.swp-team-card__whatsapp-icon svg,
.swp-team-card__whatsapp-icon i,
.swp-team-card__whatsapp-icon img {
	width: 14px;
	height: 14px;
	font-size: 14px;
	line-height: 1;
	display: block;
	max-width: none;
	object-fit: contain;
	color: inherit;
}
.swp-team-card__whatsapp-icon svg {
	fill: currentColor;
}

/* Reduced motion. */
@media (prefers-reduced-motion: reduce) {
	.swp-team-card { transition: none !important; }
	.swp-team-card:hover { transform: none; }
}

/* ============================================================
   Process Steps
   ============================================================ */

.elementor-widget-sportingo-process-steps {
	--swp-ink:         var(--ink, #0e1228);
	--swp-paper:       var(--paper, #fdfcf8);
	--swp-cream:       var(--cream, #f6f3ec);
	--swp-cream-deep:  var(--cream-deep, #ece7da);
	--swp-cream-warm:  var(--cream-warm, #faf7f0);
	--swp-line:        var(--line, #d8d2c2);
	--swp-navy-soft:   var(--navy-soft, #3a3f63);
	--swp-accent:      var(--accent, #f39317);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-grad:        var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
	--swp-ease:        var(--ease, cubic-bezier(.2,.7,.2,1));
}

.swp-process-steps {
	position: relative;
	padding: 60px 0;
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
}

.swp-process-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	position: relative;
	z-index: 1;
}

/* Brand gradient bar connector between cards (replaces dotted line). */
.swp-process-steps__line {
	position: absolute;
	top: 50%;
	left: 0; right: 0;
	height: 6px;
	background: var(--swp-grad);
	border-radius: 99px;
	transform: translateY(-50%);
	z-index: 0;
}

/* Hide line on mobile (single column stack). */
@media (max-width: 900px) {
	.swp-process-steps.has-line .swp-process-steps__line {
		display: none;
	}
}

/* Card. */
.swp-process-card {
	background: var(--swp-paper);
	border: 1px solid var(--swp-line);
	border-radius: 22px;
	padding: 32px 28px;
	position: relative;
	transition: transform .35s var(--swp-ease), box-shadow .35s var(--swp-ease);
	color: inherit;
	text-decoration: none;
	display: block;
}
.swp-process-card.is-link { cursor: pointer; }
.swp-process-card.is-link:hover,
.swp-process-card.is-link:focus,
.swp-process-card.is-link:active { text-decoration: none; }
.swp-process-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -16px rgba(14,18,40,.18);
}

/* Stage visual — top image with grayscale + warm overlay + corner icon. */
.swp-process-card__visual {
	position: relative;
	height: 140px;
	margin: -32px -28px 24px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--swp-cream-deep), var(--swp-cream));
	display: flex;
	align-items: center;
	justify-content: center;
	border-top-left-radius: 22px;
	border-top-right-radius: 22px;
}
.elementor-widget-sportingo-process-steps .swp-process-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	max-width: none;
	filter: saturate(30%) contrast(1.05);
}
.swp-process-card__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 50%, rgba(250,247,240,.55) 100%),
		linear-gradient(225deg, rgba(243,147,23,.18), transparent 60%);
	pointer-events: none;
}

/* Floating icon badge in the corner of the stage visual. */
.swp-process-card__icon-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	z-index: 2;
	width: 40px;
	height: 40px;
	background: var(--swp-paper);
	border-radius: 12px;
	display: grid;
	place-items: center;
	color: var(--swp-accent-deep);
	box-shadow: 0 4px 12px -4px rgba(14,18,40,.15);
}
.swp-process-card__icon-badge svg,
.swp-process-card__icon-badge i,
.swp-process-card__icon-badge img {
	width: 20px;
	height: 20px;
	font-size: 20px;
	line-height: 1;
	display: block;
	max-width: none;
	object-fit: contain;
}

/* Step indicator (dot circle + uppercase label). */
.swp-process-card__step {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--swp-accent-deep);
	font-weight: 700;
	margin-bottom: 22px;
}
.swp-process-card__dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1.5px solid var(--swp-accent-deep);
	display: grid;
	place-items: center;
	font-family: "Sora", -apple-system, sans-serif;
	font-size: 13px;
	color: var(--swp-accent-deep);
	font-weight: 500;
	letter-spacing: 0;
	transition: background-color .35s var(--swp-ease), border-color .35s var(--swp-ease), color .35s var(--swp-ease);
}
.swp-process-card.is-active .swp-process-card__dot {
	background: var(--swp-accent);
	border-color: var(--swp-accent);
	color: var(--swp-ink);
}

/* Title with emphasis. */
.swp-process-card__title {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: -.035em;
	margin: 0 0 14px;
	color: var(--swp-ink);
}
.swp-process-card__title-em {
	font-weight: 300;
	color: var(--swp-accent-deep);
}

/* Description. */
.swp-process-card__desc {
	color: var(--swp-navy-soft);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	font-family: "Onest", -apple-system, sans-serif;
}

/* Reduced motion. */
@media (prefers-reduced-motion: reduce) {
	.swp-process-card,
	.swp-process-card__dot {
		transition: none !important;
	}
	.swp-process-card:hover {
		transform: none;
	}
}

/* ============================================================
   Principles List
   ============================================================ */

.elementor-widget-sportingo-principles-list {
	--swp-ink:         var(--ink, #0e1228);
	--swp-paper:       var(--paper, #fdfcf8);
	--swp-line:        var(--line, #d8d2c2);
	--swp-mute:        var(--mute, #6c7090);
	--swp-navy-soft:   var(--navy-soft, #3a3f63);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-ease:        var(--ease, cubic-bezier(.2,.7,.2,1));
}

.swp-principles-list {
	--swp-pl-num-col: 140px;
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
}

.swp-principles-list.has-dividers {
	border-top: 1px solid var(--swp-line);
}

.swp-principle {
	display: grid;
	grid-template-columns: var(--swp-pl-num-col) 1fr 2.4fr 60px;
	gap: 36px;
	padding: 36px 0;
	align-items: center;
	position: relative;
	transition: background-color .35s var(--swp-ease);
	color: inherit;
	text-decoration: none;
}
.swp-principle.is-link { cursor: pointer; }
.swp-principle.is-link:hover,
.swp-principle.is-link:focus,
.swp-principle.is-link:active { text-decoration: none; }

/* Strip the arrow grid track when arrow is disabled. */
.swp-principles-list:not(.has-arrow) .swp-principle {
	grid-template-columns: var(--swp-pl-num-col) 1fr 2.4fr;
}

.swp-principles-list.has-dividers .swp-principle {
	border-bottom: 1px solid var(--swp-line);
}

/* Outlined Bebas-Neue numeral. */
.swp-principle__num {
	font-family: "Bebas Neue", "Helvetica Neue Condensed", "Arial Narrow", sans-serif;
	font-weight: 400;
	font-size: clamp(4.5rem, 8vw, 8rem);
	line-height: .85;
	letter-spacing: 0;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--swp-ink);
	transition: color .35s var(--swp-ease), -webkit-text-stroke-color .35s var(--swp-ease);
}

/* Title — bold + emphasis (light + accent-deep, brand "italic" convention). */
.swp-principle__title {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: clamp(1.6rem, 2.2vw, 2.1rem);
	line-height: 1.05;
	letter-spacing: -.03em;
	color: var(--swp-ink);
}
.swp-principle__title-em {
	font-weight: 300;
	color: var(--swp-accent-deep);
}

/* Description. */
.swp-principle__desc {
	color: var(--swp-navy-soft);
	font-size: 15px;
	line-height: 1.55;
}

/* Arrow — slides right on hover. */
.swp-principle__arr {
	color: var(--swp-mute);
	transition: transform .35s var(--swp-ease), color .35s var(--swp-ease);
	text-align: right;
	display: inline-flex;
	justify-content: flex-end;
}
.swp-principle__arr svg { display: block; }

.swp-principle:hover .swp-principle__arr {
	color: var(--swp-accent-deep);
	transform: translateX(8px);
}

/* "W praktyce" chip — optional context line below title/desc.
   Spans columns 2 to -2 (skips num + arrow tracks). Renders on row 2. */
.swp-principle__practice {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px 8px 12px;
	background: #faf7f0;
	border: 1px solid #d8d2c2;
	border-radius: 99px;
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 13px;
	line-height: 1.35;
	color: #222850;
	font-weight: 500;
	width: fit-content;
	max-width: 100%;
	margin-top: 14px;
	grid-column: 2 / -2;
	grid-row: 2;
}
.swp-principles-list:not(.has-arrow) .swp-principle__practice {
	grid-column: 2 / -1;
}
.swp-principle__practice::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b72e18;
	flex-shrink: 0;
}
.swp-principle__practice-prefix {
	color: #0e1228;
	font-weight: 600;
}

/* Mobile: stack to 2-column grid (num + title), description + practice full width. */
@media (max-width: 900px) {
	.swp-principle {
		grid-template-columns: 80px 1fr !important;
		gap: 18px;
		padding: 28px 0;
	}
	.swp-principle__desc {
		grid-column: 2 / -1;
	}
	.swp-principle__arr {
		display: none;
	}
	.swp-principle__practice {
		grid-column: 2 / -1;
		font-size: 12.5px;
		padding: 7px 12px 7px 11px;
	}
}

/* Reduced motion. */
@media (prefers-reduced-motion: reduce) {
	.swp-principle,
	.swp-principle__num,
	.swp-principle__arr {
		transition: none !important;
	}
	.swp-principle:hover .swp-principle__arr {
		transform: none;
	}
}

/* ============================================================
   Score Lanes
   ============================================================ */

.elementor-widget-sportingo-score-lanes {
	--swp-paper:       var(--paper, #fdfcf8);
	--swp-accent:      var(--accent, #f39317);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-grad:        var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
}

.swp-score-lanes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.swp-score-lanes.has-top-border {
	border-top: 1px solid rgba(255,255,255,.1);
}

.swp-score-lane {
	padding: 36px 28px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
}

.swp-score-lanes.has-dividers .swp-score-lane {
	border-right: 1px solid rgba(255,255,255,.08);
}
.swp-score-lanes.has-dividers .swp-score-lane:last-child {
	border-right: none;
}

/* Lane label — Bebas Neue stadium-style uppercase. */
.swp-score-lane__label {
	font-family: "Bebas Neue", "Helvetica Neue Condensed", "Arial Narrow", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .22em;
	color: rgba(253,252,248,.45);
	line-height: 1;
	text-transform: uppercase;
}

/* Big stat value — Bebas Neue, large. */
.swp-score-lane__value {
	font-family: "Bebas Neue", "Helvetica Neue Condensed", "Arial Narrow", sans-serif;
	font-weight: 400;
	font-size: clamp(4rem, 8vw, 7.5rem);
	line-height: .85;
	letter-spacing: -.005em;
	color: var(--swp-paper);
	font-variant-numeric: tabular-nums;
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	white-space: nowrap;
}

/* Gradient color mode for selected stat values (e.g. AI, 100%). */
.swp-score-lane__value.is-gradient {
	background: var(--swp-grad);
	-webkit-background-clip: text;
	        background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Suffix (% / + / lat etc.) — smaller, accent color. */
.swp-score-lane__suffix {
	font-size: .4em;
	color: var(--swp-accent);
	-webkit-text-fill-color: var(--swp-accent);  /* override gradient inheritance */
	background: none;
	font-variant-numeric: normal;
}

/* Description under stat. */
.swp-score-lane__desc {
	font-size: 13px;
	color: rgba(253,252,248,.65);
	line-height: 1.4;
	margin-top: 6px;
	font-family: "Onest", -apple-system, sans-serif;
}

/* ============================================================
   Service Grid
   ============================================================ */

.elementor-widget-sportingo-service-grid {
	--swp-ink:        var(--ink, #0e1228);
	--swp-paper:      var(--paper, #fdfcf8);
	--swp-cream-warm: var(--cream-warm, #faf7f0);
	--swp-mute:       var(--mute, #6c7090);
	--swp-line:       var(--line, #d8d2c2);
	--swp-navy-soft:  var(--navy-soft, #3a3f63);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-grad:       var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
	--swp-ease:       var(--ease, cubic-bezier(.2,.7,.2,1));
}

.swp-service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--swp-line);
	border: 1px solid var(--swp-line);
	border-radius: 24px;
	overflow: hidden;
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
}

.swp-service-card {
	background: var(--swp-paper);
	padding: 32px 28px 28px;
	display: flex;
	flex-direction: column;
	min-height: 280px;
	position: relative;
	overflow: hidden;
	transition: background-color .35s var(--swp-ease), transform .35s var(--swp-ease);
	color: inherit;
	text-decoration: none;
}

.swp-service-card.is-link {
	cursor: pointer;
}
.swp-service-card.is-link:hover,
.swp-service-card.is-link:focus,
.swp-service-card.is-link:active {
	text-decoration: none;
}

/* Gradient hover bar — slides in from left on hover. Toggled by
   `.has-hover-bar` on the grid wrapper (set when show_hover_bar=yes). */
.swp-service-grid.has-hover-bar .swp-service-card::before {
	content: "";
	position: absolute;
	inset: auto auto -1px 0;
	width: 0;
	height: 3px;
	background: var(--swp-grad);
	transition: width .5s var(--swp-ease);
	pointer-events: none;
}
.swp-service-grid.has-hover-bar .swp-service-card:hover::before,
.swp-service-grid.has-hover-bar .swp-service-card:focus::before {
	width: 100%;
}

/* Number (bib) */
.swp-service-card__num {
	align-self: flex-start;
	font-family: "Onest", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--swp-mute);
	margin-bottom: 22px;
	transition: color .35s var(--swp-ease);
}

/* Icon */
.swp-service-card__icon {
	color: var(--swp-accent-deep);
	margin-bottom: 18px;
	display: inline-flex;
	transition: color .35s var(--swp-ease), transform .35s var(--swp-ease);
}
.swp-service-card__icon svg,
.swp-service-card__icon img {
	width: 28px;
	height: 28px;
	display: block;
	max-width: none;
	object-fit: contain;
}
.swp-service-card__icon i {
	font-size: 28px;
	line-height: 1;
}
.swp-service-card.is-link:hover .swp-service-card__icon,
.swp-service-card:hover .swp-service-card__icon {
	transform: scale(1.05);
}

/* Title */
.swp-service-card__title {
	font-family: "Sora", -apple-system, sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -.03em;
	margin: 0 0 10px;
	color: var(--swp-ink);
	transition: color .35s var(--swp-ease);
}

/* Description */
.swp-service-card__desc {
	font-size: 14px;
	line-height: 1.55;
	color: var(--swp-navy-soft);
	margin: 0;
	transition: color .35s var(--swp-ease);
}

/* Arrow — bottom-right, slides on hover */
.swp-service-card__arrow {
	margin-top: auto;
	align-self: flex-end;
	color: var(--swp-mute);
	transform: translateX(-6px);
	transition: transform .35s var(--swp-ease), color .35s var(--swp-ease);
	display: inline-flex;
}
.swp-service-card__arrow svg {
	display: block;
}
.swp-service-card:hover .swp-service-card__arrow,
.swp-service-card:focus .swp-service-card__arrow {
	transform: translateX(0);
}

/* Reduced motion — freeze hover transitions on the bar + arrow */
@media (prefers-reduced-motion: reduce) {
	.swp-service-card,
	.swp-service-card *,
	.swp-service-card::before {
		transition: none !important;
	}
	.swp-service-card:hover .swp-service-card__icon {
		transform: none;
	}
}

/* — Partner badge (chip "Partner: Imię · Organizacja") — */
.swp-service-card__partner {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 16px 9px 14px;
	background: #faf7f0;
	border: 1px solid #d8d2c2;
	border-radius: 99px;
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 500;
	width: fit-content;
	max-width: 100%;
	margin-top: 18px;
}
.swp-service-card__partner::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b72e18;
	flex-shrink: 0;
}
.swp-service-card__partner-label {
	color: #3a3f63;
	font-weight: 500;
}
.swp-service-card__partner-name {
	color: #0e1228;
	font-weight: 600;
}

/* — Wide card mode (toggle: 1–2 col layouts or partner badges) — */
.swp-sg-wide-yes .swp-service-card {
	padding: 44px 40px;
}
.swp-sg-wide-yes .swp-service-card__title {
	font-size: 26px;
	line-height: 1.2;
}
.swp-sg-wide-yes .swp-service-card__desc {
	font-size: 15px;
}
@media (max-width: 700px) {
	.swp-sg-wide-yes .swp-service-card { padding: 32px 28px; }
	.swp-sg-wide-yes .swp-service-card__title { font-size: 22px; }
}

/* ============================================================
   Story Photo Card
   ============================================================ */

.elementor-widget-sportingo-story-photo-card {
	--swp-ink:         var(--ink, #0e1228);
	--swp-paper:       var(--paper, #fdfcf8);
	--swp-navy:        var(--navy, #222850);
	--swp-navy-soft:   var(--navy-soft, #3a3f63);
	--swp-accent:      var(--accent, #f39317);
	--swp-accent-deep: var(--accent-deep, #b72e18);
	--swp-grad:        var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
	--swp-ease:        var(--ease, cubic-bezier(.2,.7,.2,1));

	/* Container query host. */
	container-type: inline-size;
	container-name: swp-photo-card;
	/* Aspect-ratio reservation via padding-bottom — same lesson learned
	   as Hero Stopwatch Scene (flex containers respect padding-box). */
	position: relative;
	padding-bottom: 125%;  /* default 4/5 — overridden by `card_aspect` control */
	height: 0;
}
.elementor-widget-sportingo-story-photo-card > .elementor-widget-container {
	position: absolute;
	inset: 0;
	height: auto;
}

.swp-photo-card {
	position: absolute;
	inset: 0;
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(135deg,
		var(--swp-pc-bg-top, #2a3060),
		var(--swp-pc-bg-bottom, #15182e));
	box-shadow: 0 30px 60px -20px rgba(14,18,40,.4);
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Higher specificity (3 classes) — wins against theme/Elementor
   `img { height: auto; max-width: 100% }` resets without `!important`.
   Filter composes 5 individual sliders (image_blur etc.) via CSS variables. */
.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	max-width: none;
	z-index: 0;
	filter:
		blur(var(--swp-pc-img-blur, 0px))
		brightness(var(--swp-pc-img-brightness, 100%))
		contrast(var(--swp-pc-img-contrast, 100%))
		saturate(var(--swp-pc-img-saturate, 100%))
		hue-rotate(var(--swp-pc-img-hue, 0deg));
}

/* Overlay layer — composes dark gradient + glow radial. Two CSS
   variables (`--swp-pc-glow-x`, `--swp-pc-glow-y`) drive radial origin
   so the same overlay rule serves all 4 corners + center via prefix
   classes set on widget root. */
.swp-photo-card__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background:
		radial-gradient(
			var(--swp-pc-glow-size, 60%) var(--swp-pc-glow-size, 60%)
			at var(--swp-pc-glow-x, 100%) var(--swp-pc-glow-y, 0%),
			color-mix(in srgb, var(--swp-pc-glow-color, #f39317) calc(var(--swp-pc-glow-alpha, .32) * 100%), transparent) 0%,
			transparent 60%
		),
		linear-gradient(180deg,
			transparent 40%,
			color-mix(in srgb, var(--swp-pc-overlay-dark, #0e1228) calc(var(--swp-pc-overlay-dark-alpha, .55) * 100%), transparent) 100%
		);
}
/* Toggle classes applied via prefix_class for show/hide of each layer. */
.swp-photo-card__overlay:not(.has-dark) {
	background: radial-gradient(
		var(--swp-pc-glow-size, 60%) var(--swp-pc-glow-size, 60%)
		at var(--swp-pc-glow-x, 100%) var(--swp-pc-glow-y, 0%),
		color-mix(in srgb, var(--swp-pc-glow-color, #f39317) calc(var(--swp-pc-glow-alpha, .32) * 100%), transparent) 0%,
		transparent 60%
	);
}
.swp-photo-card__overlay:not(.has-glow) {
	background: linear-gradient(180deg,
		transparent 40%,
		color-mix(in srgb, var(--swp-pc-overlay-dark, #0e1228) calc(var(--swp-pc-overlay-dark-alpha, .55) * 100%), transparent) 100%
	);
}
.swp-photo-card__overlay:not(.has-glow):not(.has-dark) {
	display: none;
}

/* Glow position — set --swp-pc-glow-x/y on widget root via prefix class.
   `swp-pc-glow-tr` etc. is set by glow_position SELECT in PHP. */
.swp-pc-glow-tl { --swp-pc-glow-x: 0%;   --swp-pc-glow-y: 0%; }
.swp-pc-glow-tr { --swp-pc-glow-x: 100%; --swp-pc-glow-y: 0%; }
.swp-pc-glow-bl { --swp-pc-glow-x: 0%;   --swp-pc-glow-y: 100%; }
.swp-pc-glow-br { --swp-pc-glow-x: 100%; --swp-pc-glow-y: 100%; }
.swp-pc-glow-c  { --swp-pc-glow-x: 50%;  --swp-pc-glow-y: 50%; }

/* — Pill Badge — */
.swp-photo-card__badge {
	position: absolute;
	top: 24px;
	left: 24px;
	background: rgba(253,252,248,.95);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 14px;
	padding: 12px 16px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	color: var(--swp-navy);
	font-weight: 600;
	letter-spacing: .02em;
	z-index: 2;
}
.swp-photo-card__badge-icon {
	color: var(--swp-accent-deep);
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
.swp-photo-card__badge-icon svg,
.swp-photo-card__badge-icon i,
.swp-photo-card__badge-icon img {
	width: 16px;
	height: 16px;
	font-size: 16px;
	line-height: 1;
	display: block;
	max-width: none;
	object-fit: contain;
}
.swp-photo-card__badge-label {
	white-space: nowrap;
}

/* — Stat Card — */
.swp-photo-card__stat {
	position: absolute;
	bottom: 24px;
	right: 24px;
	background: rgba(253,252,248,.96);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 18px;
	padding: 16px 22px;
	text-align: center;
	z-index: 2;
	transform: rotate(var(--swp-pc-stat-tilt, 0deg));
}
.swp-photo-card__stat-number {
	font-family: "Sora", -apple-system, sans-serif;
	font-size: 44px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -.02em;
}
.swp-pc-stat-num-gradient .swp-photo-card__stat-number {
	background: var(--swp-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.swp-photo-card__stat-suffix {
	font-size: .7em;
	margin-left: 1px;
	font-weight: 500;
}
.swp-photo-card__stat-label {
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--swp-navy-soft);
	margin-top: 6px;
	font-weight: 600;
}

/* — Step variant (full-width bottom callout: gradient num-box + title + desc) — */
.swp-photo-card__stat.is-step {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 18px;
	align-items: center;
	text-align: left;
	padding: 18px 22px;
	left: 24px;
	right: 24px;
	border: 1px solid rgba(255,255,255,.8);
	box-shadow: 0 20px 50px -22px rgba(14,18,40,.35);
}
.swp-photo-card__step-num {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--swp-grad);
	color: var(--swp-paper, #fdfcf8);
	display: grid;
	place-items: center;
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -.02em;
}
.swp-pc-step-num-solid .swp-photo-card__step-num {
	background-image: none;
}
/* Step num-box w trybie ikony Font Awesome / custom SVG.
   Multi-target color + size defaults — slider w widget kontroluje rozmiar. */
.swp-photo-card__step-num svg {
	width: 20px;
	height: 20px;
	display: block;
	fill: currentColor;
	color: inherit;
}
.swp-photo-card__step-num i {
	font-size: 20px;
	line-height: 1;
	color: inherit;
}
.swp-photo-card__step-num img {
	width: 24px;
	height: 24px;
	display: block;
	max-width: none;
	object-fit: contain;
}
.swp-photo-card__step-info { min-width: 0; }
.swp-photo-card__step-title {
	margin: 0 0 2px;
	font-family: "Sora", -apple-system, sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -.015em;
	color: var(--swp-ink, #0e1228);
	line-height: 1.2;
}
.swp-photo-card__step-desc {
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
	color: var(--swp-navy-soft, #3a3f63);
	font-family: "Onest", -apple-system, sans-serif;
}
.swp-photo-card__step-pulse {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--swp-accent, #f39317);
	box-shadow: 0 0 0 4px rgba(243,147,23,.2);
	animation: swp-pc-step-pulse 2s var(--swp-ease, cubic-bezier(.2,.7,.2,1)) infinite;
}
@keyframes swp-pc-step-pulse {
	0%, 100% { box-shadow: 0 0 0 4px rgba(243,147,23,.2); }
	50%      { box-shadow: 0 0 0 8px rgba(243,147,23,0);  }
}
@media (prefers-reduced-motion: reduce) {
	.swp-photo-card__step-pulse { animation: none; }
}

/* ============================================================
   Story Photo Card — 3-tier responsive (container queries)

   Tier 1 (Wide, ≥ 520cqi): defaults above
   Tier 2 (Medium, 400-520cqi): smaller pill + stat, tighter offsets
   Tier 3 (Compact, < 400cqi): minimal scale, no tilt
   ============================================================ */

@container swp-photo-card (max-width: 520px) {
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__badge {
		top: 16px !important;
		left: 16px !important;
		padding: 10px 12px;
		font-size: 11px;
		gap: 9px;
		border-radius: 12px;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__badge-icon svg,
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__badge-icon i,
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__badge-icon img {
		width: 14px;
		height: 14px;
		font-size: 14px;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__stat {
		bottom: 16px !important;
		right: 16px !important;
		padding: 12px 18px;
		border-radius: 16px;
		--swp-pc-stat-tilt: 0deg !important;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__stat-number {
		font-size: clamp(28px, 8cqi, 38px);
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__stat-label {
		font-size: clamp(9px, 2.4cqi, 10px);
		margin-top: 4px;
	}
}

@container swp-photo-card (max-width: 400px) {
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__badge {
		top: 12px !important;
		left: 12px !important;
		padding: 8px 10px;
		font-size: 10px;
		gap: 7px;
		border-radius: 10px;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__badge-icon svg,
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__badge-icon i,
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__badge-icon img {
		width: 12px;
		height: 12px;
		font-size: 12px;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__stat {
		bottom: 12px !important;
		right: 12px !important;
		padding: 10px 14px;
		border-radius: 14px;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__stat-number {
		font-size: clamp(24px, 7cqi, 30px);
	}
}

/* — Step variant container query rules (mirror stat scaling) — */
@container swp-photo-card (max-width: 520px) {
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__stat.is-step {
		left: 16px !important;
		right: 16px !important;
		bottom: 16px !important;
		padding: 14px 16px;
		gap: 14px;
		border-radius: 16px;
		--swp-pc-stat-tilt: 0deg !important;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__step-num {
		width: 38px; height: 38px;
		font-size: 16px;
		border-radius: 10px;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__step-title {
		font-size: 14px;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__step-desc {
		font-size: 11.5px;
	}
}
@container swp-photo-card (max-width: 400px) {
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__stat.is-step {
		left: 12px !important;
		right: 12px !important;
		bottom: 12px !important;
		padding: 12px 14px;
		gap: 10px;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__step-num {
		width: 34px; height: 34px;
		font-size: 14px;
	}
	.elementor-widget-sportingo-story-photo-card .swp-photo-card .swp-photo-card__step-pulse {
		display: none;
	}
}

/* ============================================================
   Contact Cards
   ============================================================ */

.swp-contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.swp-contact-card {
	background: #fdfcf8;
	border: 1px solid #d8d2c2;
	border-radius: 22px;
	padding: 32px 30px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: transform .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            border-color .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            box-shadow .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
	position: relative;
}

.swp-cc-hover-yes .swp-contact-card.is-link:hover {
	transform: translateY(-4px);
	border-color: #0e1228;
	box-shadow: 0 18px 40px -16px rgba(14,18,40,.16);
}

.swp-contact-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	margin-bottom: 24px;
	transition: transform .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
	flex-shrink: 0;
}
.swp-cc-hover-yes .swp-contact-card.is-link:hover .swp-contact-card__icon {
	transform: scale(1.05) rotate(-3deg);
}

/* Icon bg presets */
.swp-contact-card__icon.is-warm {
	background: linear-gradient(135deg, #fff5e6, #ffe2bc);
	color: #b72e18;
}
.swp-contact-card__icon.is-whatsapp {
	background: linear-gradient(135deg, #d4f5dc, #a8e6b8);
	color: #128C7E;
}

.swp-contact-card__icon svg,
.swp-contact-card__icon i {
	width: 26px;
	height: 26px;
	font-size: 26px;
}

.swp-contact-card__label {
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #6c7090;
	font-weight: 600;
	margin-bottom: 8px;
}

.swp-contact-card__value {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: clamp(20px, 2.4vw, 26px);
	line-height: 1.15;
	letter-spacing: -.025em;
	color: #0e1228;
	margin: 0 0 8px;
	word-break: break-word;
}

.swp-contact-card__desc {
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #3a3f63;
	margin: 0 0 22px;
	flex: 1;
}

.swp-contact-card__arrow {
	align-self: flex-end;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #faf7f0;
	color: #0e1228;
	display: grid;
	place-items: center;
	transition: background .25s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            color .25s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            transform .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
	margin-top: auto;
}
.swp-cc-hover-yes .swp-contact-card.is-link:hover .swp-contact-card__arrow {
	background: #f39317;
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.swp-contact-card,
	.swp-contact-card__icon,
	.swp-contact-card__arrow { transition: none; }
	.swp-cc-hover-yes .swp-contact-card.is-link:hover {
		transform: none;
	}
	.swp-cc-hover-yes .swp-contact-card.is-link:hover .swp-contact-card__icon {
		transform: none;
	}
}

/* ============================================================
   Contact Team
   ============================================================ */

.swp-contact-team {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	width: 100%;
}

.swp-ct-card {
	background: #fdfcf8;
	border: 1px solid #d8d2c2;
	border-radius: 22px;
	padding: 28px 30px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 20px;
	align-items: center;
	transition: border-color .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            background .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
}

@media (max-width: 600px) {
	.swp-ct-card {
		grid-template-columns: auto 1fr;
		gap: 16px;
	}
	.swp-ct-card .swp-ct-actions {
		grid-column: 1 / -1;
		justify-content: flex-start;
	}
}

.swp-ct-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2a3060, #0e1228);
	display: grid;
	place-items: center;
	color: #fdfcf8;
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: -.02em;
	flex-shrink: 0;
}

.swp-ct-info { min-width: 0; }
.swp-ct-name {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: 18px;
	margin: 0 0 4px;
	color: #0e1228;
	letter-spacing: -.02em;
	line-height: 1.25;
}
.swp-ct-role {
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 13px;
	line-height: 1.4;
	color: #3a3f63;
}
.swp-ct-subrole {
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 12px;
	color: #6c7090;
	margin-top: 2px;
	line-height: 1.4;
}

.swp-ct-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.swp-ct-phone-text {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #0e1228;
	text-decoration: none;
	margin-right: 4px;
	letter-spacing: -.005em;
	white-space: nowrap;
	transition: color .2s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
}
.swp-ct-phone-text:hover { color: #b72e18; }

.swp-ct-action {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #faf7f0;
	color: #0e1228;
	display: grid;
	place-items: center;
	text-decoration: none;
	flex-shrink: 0;
	transition: background .2s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            color .2s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            transform .2s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
}
.swp-ct-action:hover {
	background: #f39317;
	transform: scale(1.08);
}
.swp-ct-action.is-whatsapp {
	background: #25D366;
	color: white;
}
.swp-ct-action.is-whatsapp:hover {
	background: #128C7E;
	color: white;
}

@media (prefers-reduced-motion: reduce) {
	.swp-ct-card,
	.swp-ct-action,
	.swp-ct-phone-text { transition: none; }
	.swp-ct-action:hover { transform: none; }
}

/* ============================================================
   Reviews Compact — light social-proof banner for homepage
   ============================================================ */

.swp-reviews-compact {
	width: 100%;
}

.swp-rc-inner {
	background: #fdfcf8;
	border: 1px solid #d8d2c2;
	border-radius: 22px;
	padding: 36px 40px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
}

@media (max-width: 900px) {
	.swp-rc-inner { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}

/* Layout variants */
.swp-rc-layout-centered .swp-rc-inner {
	grid-template-columns: 1fr;
	text-align: center;
}
.swp-rc-layout-centered .swp-rc-actions { justify-content: center; }
.swp-rc-layout-centered .swp-rc-rating { justify-content: center; }

.swp-rc-layout-stacked .swp-rc-inner {
	grid-template-columns: 1fr;
	gap: 24px;
}

/* Copy block */
.swp-rc-copy { min-width: 0; }

.swp-rc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #222850;
	font-weight: 600;
	margin-bottom: 12px;
}
.swp-rc-eyebrow::before {
	content: "";
	width: 26px;
	height: 1px;
	background: #b72e18;
}

.swp-rc-headline {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	line-height: 1.15;
	letter-spacing: -.03em;
	color: #0e1228;
	margin: 0 0 12px;
}
.swp-rc-headline em {
	font-style: normal;
	font-weight: 300;
	color: #b72e18;
}
.swp-rc-headline .swp-accent-text {
	font-weight: 300;
	color: #b72e18;
}

.swp-rc-intro {
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 15px;
	line-height: 1.55;
	color: #3a3f63;
	margin: 0 0 18px;
	max-width: 520px;
}

/* Rating block */
.swp-rc-rating {
	display: inline-flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}
.swp-rc-stars {
	color: #f39317;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 1px;
}
.swp-rc-rating-value {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #0e1228;
	letter-spacing: -.02em;
}
.swp-rc-rating-count {
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 14px;
	color: #3a3f63;
}

/* Actions block (videos + CTA) */
.swp-rc-actions {
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-items: flex-end;
}

@media (max-width: 900px) {
	.swp-rc-actions { align-items: flex-start; }
}

/* Videos */
.swp-rc-videos {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.swp-rc-video {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-decoration: none;
	color: inherit;
	width: 160px;
	transition: transform .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
}
.swp-rc-video:hover { transform: translateY(-2px); }

.swp-rc-video-thumb {
	position: relative;
	display: block;
	aspect-ratio: 16/9;
	border-radius: 10px;
	overflow: hidden;
	background: #1a1d3a;
}
.swp-rc-video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .55s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
}
.swp-rc-video:hover .swp-rc-video-thumb img { transform: scale(1.05); }

.swp-rc-video-play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: white;
	background: rgba(14,18,40,.35);
	transition: background .25s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
}
.swp-rc-video:hover .swp-rc-video-play { background: rgba(183,46,24,.55); }
.swp-rc-video-play svg {
	background: rgba(255,255,255,.95);
	color: #b72e18;
	border-radius: 50%;
	padding: 8px;
	width: 36px;
	height: 36px;
}

.swp-rc-video-title {
	font-family: "Sora", -apple-system, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #0e1228;
	line-height: 1.3;
	letter-spacing: -.01em;
}
.swp-rc-video-author {
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 11px;
	color: #6c7090;
	line-height: 1.3;
}

/* CTA button */
.swp-rc-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -.005em;
	background: #0e1228;
	color: #fdfcf8;
	border: 1px solid #0e1228;
	border-radius: 99px;
	text-decoration: none;
	transition: background .25s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            border-color .25s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            transform .2s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
	white-space: nowrap;
}
.swp-rc-cta:hover {
	background: #b72e18;
	border-color: #b72e18;
	transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
	.swp-rc-video,
	.swp-rc-video img,
	.swp-rc-video-play,
	.swp-rc-cta { transition: none; }
	.swp-rc-video:hover,
	.swp-rc-cta:hover { transform: none; }
}

/* — YouTube Modal (used by Reviews Compact) — */
.swp-yt-modal {
	position: fixed;
	inset: 0;
	background: rgba(14,18,40,.85);
	-webkit-backdrop-filter: blur(8px);
	        backdrop-filter: blur(8px);
	z-index: 999999;
	display: grid;
	place-items: center;
	padding: 20px;
	opacity: 0;
	transition: opacity .25s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
}
.swp-yt-modal.is-open { opacity: 1; }

.swp-yt-modal__inner {
	position: relative;
	width: 100%;
	max-width: 1100px;
	aspect-ratio: 16/9;
	background: #000;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 30px 100px rgba(0,0,0,.6);
	transform: scale(.92);
	transition: transform .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
}
.swp-yt-modal.is-open .swp-yt-modal__inner { transform: scale(1); }

.swp-yt-modal__player {
	position: absolute;
	inset: 0;
}
.swp-yt-modal__player iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.swp-yt-modal__close {
	position: absolute;
	top: -52px;
	right: 0;
	background: transparent;
	border: 0;
	color: white;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	transition: background .2s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            transform .2s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
	z-index: 1;
	font-family: "Sora", -apple-system, sans-serif;
}
.swp-yt-modal__close:hover,
.swp-yt-modal__close:focus-visible {
	background: rgba(255,255,255,.18);
	transform: scale(1.08);
	outline: none;
}
.swp-yt-modal__close:focus-visible {
	box-shadow: 0 0 0 2px var(--swp-accent, #f39317);
}

@media (max-width: 768px) {
	.swp-yt-modal { padding: 14px; }
	.swp-yt-modal__close { top: -44px; right: -4px; width: 36px; height: 36px; font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
	.swp-yt-modal,
	.swp-yt-modal__inner,
	.swp-yt-modal__close { transition: none; }
	.swp-yt-modal__inner { transform: none; }
}

/* ============================================================
   Reviews Grid
   ============================================================ */

.swp-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.swp-review-card {
	background: #fdfcf8;
	border: 1px solid #d8d2c2;
	border-radius: 22px;
	padding: 32px 30px;
	position: relative;
	transition: transform .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            border-color .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1)),
	            box-shadow .35s var(--swp-ease, cubic-bezier(.2,.7,.2,1));
	display: flex;
	flex-direction: column;
}

.swp-rg-hover-yes .swp-review-card:hover {
	transform: translateY(-4px);
	border-color: #0e1228;
	box-shadow: 0 18px 40px -16px rgba(14,18,40,.16);
}

.swp-review-card__stars {
	display: flex;
	gap: 3px;
	font-size: 16px;
	margin-bottom: 16px;
	line-height: 1;
}
.swp-review-card__stars .star.is-on  { color: #f39317; }
.swp-review-card__stars .star.is-off { color: #d8d2c2; }

.swp-review-card__quote {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.45;
	letter-spacing: -.018em;
	color: #0e1228;
	margin: 0 0 22px;
	flex: 1;
	--swp-rg-quote-marks: #b72e18;
}
.swp-reviews-grid.has-marks .swp-review-card__quote::before {
	content: "\201E";
	color: var(--swp-rg-quote-marks);
}
.swp-reviews-grid.has-marks .swp-review-card__quote::after {
	content: "\201D";
	color: var(--swp-rg-quote-marks);
}

.swp-review-card__quote em {
	font-style: normal;
	font-weight: 300;
	color: #b72e18;
}
.swp-review-card__quote strong {
	font-weight: 600;
}

.swp-review-card__author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 18px;
	border-top: 1px solid #d8d2c2;
	margin-top: auto;
}

.swp-review-card__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	overflow: hidden;
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -.02em;
}
.swp-review-card__avatar.is-initials {
	background: linear-gradient(135deg, #2a3060, #0e1228);
	color: #fdfcf8;
}
.swp-review-card__avatar.is-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.swp-review-card__author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.swp-review-card__author-name {
	margin: 0;
	font-family: "Sora", -apple-system, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #0e1228;
	letter-spacing: -.01em;
	line-height: 1.3;
}
.swp-review-card__author-meta {
	font-family: "Onest", -apple-system, sans-serif;
	font-size: 12px;
	color: #3a3f63;
	line-height: 1.3;
}

@media (prefers-reduced-motion: reduce) {
	.swp-review-card { transition: none; }
	.swp-rg-hover-yes .swp-review-card:hover { transform: none; }
}

/* ---- Mobile/Tablet carousel (CSS scroll-snap) ----
   Activated by 2 wrapper classes:
     .swp-rg-carousel-yes  — toggle on
     .swp-rg-bp-{767|900|1024} — chosen breakpoint
   Below the breakpoint the grid becomes a horizontal scroll container
   with each card snapping to start. Card width = 100% - peek (default 20px)
   so the next card peeks from the right edge. */

.swp-rg-carousel-yes .swp-reviews-grid {
	--swp-rg-peek: 20px;
	--swp-rg-carousel-gap: 16px;
}

@media (max-width: 1024px) {
	.swp-rg-carousel-yes.swp-rg-bp-1024 .swp-reviews-grid {
		display: flex !important;
		grid-template-columns: none !important;
		overflow-x: auto;
		overflow-y: visible;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: var(--swp-rg-carousel-gap) !important;
		padding-bottom: 6px;
	}
	.swp-rg-carousel-yes.swp-rg-bp-1024 .swp-reviews-grid::-webkit-scrollbar { display: none; }
	.swp-rg-carousel-yes.swp-rg-bp-1024 .swp-reviews-grid > .swp-review-card {
		flex: 0 0 calc(100% - var(--swp-rg-peek));
		scroll-snap-align: start;
		min-width: 0;
	}
}

@media (max-width: 900px) {
	.swp-rg-carousel-yes.swp-rg-bp-900 .swp-reviews-grid {
		display: flex !important;
		grid-template-columns: none !important;
		overflow-x: auto;
		overflow-y: visible;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: var(--swp-rg-carousel-gap) !important;
		padding-bottom: 6px;
	}
	.swp-rg-carousel-yes.swp-rg-bp-900 .swp-reviews-grid::-webkit-scrollbar { display: none; }
	.swp-rg-carousel-yes.swp-rg-bp-900 .swp-reviews-grid > .swp-review-card {
		flex: 0 0 calc(100% - var(--swp-rg-peek));
		scroll-snap-align: start;
		min-width: 0;
	}
}

@media (max-width: 767px) {
	.swp-rg-carousel-yes.swp-rg-bp-767 .swp-reviews-grid {
		display: flex !important;
		grid-template-columns: none !important;
		overflow-x: auto;
		overflow-y: visible;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: var(--swp-rg-carousel-gap) !important;
		padding-bottom: 6px;
	}
	.swp-rg-carousel-yes.swp-rg-bp-767 .swp-reviews-grid::-webkit-scrollbar { display: none; }
	.swp-rg-carousel-yes.swp-rg-bp-767 .swp-reviews-grid > .swp-review-card {
		flex: 0 0 calc(100% - var(--swp-rg-peek));
		scroll-snap-align: start;
		min-width: 0;
	}
}

/* ============================================================
   Mixed Heading
   ============================================================ */

.elementor-widget-sportingo-mixed-heading {
	--swp-grad: var(--grad, linear-gradient(95deg, #b72e18 0%, #d24527 30%, #e8721b 60%, #f39317 100%));
}

.swp-mixed-heading {
	font-family: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
	color: #0e1228;
	margin: 0;
	line-height: 0.98;
	letter-spacing: -0.045em;
}

.swp-mh__fragment {
	display: inline;
	font-family: inherit;
}

.swp-mh__fragment.has-underline {
	display: inline-block;
	position: relative;
	white-space: nowrap;
}

.swp-mh__fragment.has-underline::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 5px;
	background: var(--swp-grad);
	opacity: .55;
	border-radius: 99px;
	pointer-events: none;
}

/* ============================================================
   Avatar Stack
   ============================================================ */

.swp-avatar-stack {
	--swp-avatar-size: 38px;
	--swp-avatar-overlap: 10px;
	--swp-avatar-border-width: 2px;
	--swp-avatar-border-color: #f6f3ec;
	display: flex;
	align-items: center;
}

.swp-avatar-stack__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	transition: gap .35s var(--ease, cubic-bezier(.2,.7,.2,1));
}

.swp-stack-dir-rtl .swp-avatar-stack__list {
	flex-direction: row-reverse;
}

.swp-avatar-stack__item {
	margin-left: calc(-1 * var(--swp-avatar-overlap));
	transition:
		transform .35s var(--ease, cubic-bezier(.2,.7,.2,1)),
		margin-left .35s var(--ease, cubic-bezier(.2,.7,.2,1)),
		z-index 0s;
	position: relative;
}

.swp-avatar-stack__list > .swp-avatar-stack__item:first-child {
	margin-left: 0;
}

/* z-index: first-on-top — uses --swp-avatar-i index from inline style */
.swp-stack-z-first-on-top .swp-avatar-stack__item {
	z-index: calc(50 - var(--swp-avatar-i, 0));
}

.swp-stack-z-last-on-top .swp-avatar-stack__item {
	z-index: calc(var(--swp-avatar-i, 0) + 1);
}

/* Avatar base */
.swp-avatar {
	display: grid;
	place-items: center;
	width: var(--swp-avatar-size);
	height: var(--swp-avatar-size);
	border-radius: 50%;
	border: var(--swp-avatar-border-width) solid var(--swp-avatar-border-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
	transition: transform .35s var(--ease, cubic-bezier(.2,.7,.2,1));
	box-sizing: border-box;
	flex-shrink: 0;
}

a.swp-avatar:hover,
a.swp-avatar:focus {
	text-decoration: none;
}

/* Initials variant */
.swp-avatar__initials {
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: calc(var(--swp-avatar-size) * 0.36);
	letter-spacing: -0.02em;
	line-height: 1;
	user-select: none;
	text-transform: uppercase;
}

/* "+N more" badge */
.swp-avatar--more {
	background: #0e1228;
	color: #fdfcf8;
	font-family: "Sora", -apple-system, sans-serif;
	font-weight: 600;
	font-size: calc(var(--swp-avatar-size) * 0.32);
	letter-spacing: -0.02em;
}

/* Hover behaviors (toggled via prefix_class) */
.swp-stack-hover-lift-yes .swp-avatar:hover {
	transform: translateY(-3px);
}

.swp-stack-hover-front-yes .swp-avatar-stack__item:hover {
	z-index: 99 !important;
}

.swp-stack-hover-spread-yes .swp-avatar-stack:hover .swp-avatar-stack__item {
	margin-left: calc(-1 * var(--swp-avatar-overlap) + 6px);
}
.swp-stack-hover-spread-yes .swp-avatar-stack:hover .swp-avatar-stack__list > .swp-avatar-stack__item:first-child {
	margin-left: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.swp-avatar-stack__list,
	.swp-avatar-stack__item,
	.swp-avatar {
		transition: none !important;
	}
}

/* ============================================================
   Marquee Ticker
   ============================================================ */

.swp-marquee {
	--swp-marquee-bg: #0e1228;
	--swp-marquee-color: #f6f3ec;
	--swp-marquee-num-color: #f39317;
	--swp-marquee-sep-color: #f39317;
	--swp-marquee-sep-size: 6px;
	--swp-marquee-speed: 50s;
	--swp-marquee-gap: 80px;
	background: var(--swp-marquee-bg);
	color: var(--swp-marquee-color);
	overflow: hidden;
	position: relative;
}

.swp-marquee__track {
	display: flex;
	align-items: center;
	gap: var(--swp-marquee-gap);
	padding: 18px 0;
	width: max-content;
	animation: swp-marquee-scroll var(--swp-marquee-speed) linear infinite;
	will-change: transform;
}

@keyframes swp-marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(calc(-100% / var(--swp-marquee-loops, 2))); }
}

/* Direction reverse */
.swp-marquee-dir-right .swp-marquee__track {
	animation-direction: reverse;
}

/* Pause on hover */
.swp-marquee-pause-yes:hover .swp-marquee__track {
	animation-play-state: paused;
}

/* Edge fade via mask */
.swp-marquee-fade-yes .swp-marquee {
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
	        mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

/* Items */
.swp-marquee__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	letter-spacing: .02em;
	white-space: nowrap;
	flex-shrink: 0;
}

.swp-marquee__num {
	font-family: "Bebas Neue", "Helvetica Neue Condensed", "Arial Narrow", sans-serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: .04em;
	color: var(--swp-marquee-num-color);
	line-height: 1;
}

.swp-marquee__text {
	display: inline-block;
}

/* Separators — uniform <span class="swp-marquee__sep"></span> markup
   styled purely via wrapper prefix_class. This way switching the type
   in Elementor live preview takes effect without re-rendering PHP. */
.swp-marquee__sep {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	color: var(--swp-marquee-sep-color);
}

/* — Dot — */
.swp-marquee-sep-dot .swp-marquee__sep {
	width: var(--swp-marquee-sep-size);
	height: var(--swp-marquee-sep-size);
	border-radius: 50%;
	background: var(--swp-marquee-sep-color);
}

/* — Line — */
.swp-marquee-sep-line .swp-marquee__sep {
	width: calc(var(--swp-marquee-sep-size) * 4);
	height: 1px;
	background: var(--swp-marquee-sep-color);
}

/* — Character-based separators (·, |, ★) — */
.swp-marquee-sep-middot .swp-marquee__sep::before { content: "·"; }
.swp-marquee-sep-pipe   .swp-marquee__sep::before { content: "|"; }
.swp-marquee-sep-star   .swp-marquee__sep::before { content: "★"; }
.swp-marquee-sep-middot .swp-marquee__sep,
.swp-marquee-sep-pipe   .swp-marquee__sep,
.swp-marquee-sep-star   .swp-marquee__sep {
	font-size: calc(var(--swp-marquee-sep-size) * 2.4);
	font-weight: 400;
	opacity: .85;
}

/* — SVG-based separators (Sportingo Ball + Custom SVG upload) — */
.swp-marquee-sep-ball .swp-marquee__sep,
.swp-marquee-sep-custom_svg .swp-marquee__sep {
	width: calc(var(--swp-marquee-sep-size) * 3);
	height: calc(var(--swp-marquee-sep-size) * 3);
	background-color: var(--swp-marquee-sep-color);
	-webkit-mask-image: var(--swp-marquee-sep-mask, none);
	        mask-image: var(--swp-marquee-sep-mask, none);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-position: center;
	        mask-position: center;
}

/* — None — */
.swp-marquee-sep-none .swp-marquee__sep {
	display: none;
}

/* Reduced motion — freeze the track */
@media (prefers-reduced-motion: reduce) {
	.swp-marquee__track {
		animation: none;
	}
}

/* ============================================================
   Category Filter (sportingo-category-filter)
   Brand-styled pill chips dla taksonomii — mirror concept-wiedza.html.
   ============================================================ */

.swp-cat-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 20px 0;
	margin: 0;
	font-family: 'Onest', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	border-top-style: solid;
	border-bottom-style: solid;
}

.elementor-element.swp-cat-filter-dividers .swp-cat-filter {
	border-top-color: rgba(14, 18, 40, .1);
	border-bottom-color: rgba(14, 18, 40, .1);
}

.swp-cat-filter__label {
	font-family: 'Onest', system-ui, sans-serif;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 600;
	color: #6c7090;
	align-self: center;
	margin-right: 8px;
	white-space: nowrap;
}

.swp-cat-filter__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	background-color: #fdfcf8;
	color: #0e1228;
	border: 1px solid rgba(14, 18, 40, .1);
	border-radius: 99px;
	font-family: 'Onest', system-ui, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -.005em;
	cursor: pointer;
	text-decoration: none;
	transition: background-color .25s cubic-bezier(.2, .8, .2, 1),
	            border-color    .25s cubic-bezier(.2, .8, .2, 1),
	            color           .25s cubic-bezier(.2, .8, .2, 1),
	            transform       .25s cubic-bezier(.2, .8, .2, 1);
}

.swp-cat-filter__chip:hover {
	background-color: #ece7da;
	border-color: #0e1228;
	color: #0e1228;
	text-decoration: none;
}

.swp-cat-filter__chip.is-active {
	background-color: #0e1228;
	border-color: #0e1228;
	color: #fdfcf8;
}

.swp-cat-filter__chip.is-active:hover {
	background-color: #0e1228;
	border-color: #0e1228;
	color: #fdfcf8;
}

.swp-cat-filter__chip:focus-visible {
	outline: 2px solid #f39317;
	outline-offset: 2px;
}

.swp-cat-filter__chip-label {
	white-space: nowrap;
}

.swp-cat-filter__chip-count {
	font-size: 11px;
	font-weight: 400;
	color: #6c7090;
	font-variant-numeric: tabular-nums;
	transition: color .25s cubic-bezier(.2, .8, .2, 1);
}

.swp-cat-filter__chip.is-active .swp-cat-filter__chip-count {
	color: rgba(253, 252, 248, .6);
}

/* Empty-state placeholder injected by JS into the target container. */
.swp-cat-empty-state {
	grid-column: 1 / -1;
	padding: 60px 20px;
	text-align: center;
	font-family: 'Onest', system-ui, sans-serif;
	font-size: 15px;
	color: #6c7090;
	border: 1px dashed rgba(14, 18, 40, .15);
	border-radius: 16px;
}

@media (prefers-reduced-motion: reduce) {
	.swp-cat-filter__chip,
	.swp-cat-filter__chip-count {
		transition: none;
	}
}

@media (max-width: 600px) {
	.swp-cat-filter {
		gap: 8px;
	}
	.swp-cat-filter__chip {
		padding: 8px 14px;
		font-size: 12.5px;
	}
}

/* ============================================================
   Contact Icons (sportingo-contact-icons)
   Compact 3-icon row z pure-CSS tooltipem w brand style.
   ============================================================ */

.swp-ci {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-family: 'Onest', system-ui, sans-serif;
}

.swp-ci__item {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background-color: #f6f3ec;
	color: #0e1228;
	border: 1px solid rgba(14,18,40,.08);
	text-decoration: none;
	cursor: pointer;
	transition: background-color .25s cubic-bezier(.2,.8,.2,1),
	            color .25s cubic-bezier(.2,.8,.2,1),
	            border-color .25s cubic-bezier(.2,.8,.2,1),
	            transform .25s cubic-bezier(.2,.8,.2,1);
}

.swp-ci__item:hover {
	text-decoration: none;
}

.swp-ci__item:focus-visible {
	outline: 2px solid #f39317;
	outline-offset: 2px;
}

/* Ghost mode — sam SVG, brak bg/border */
.swp-ci-shape-ghost .swp-ci__item {
	background: transparent !important;
	border: none !important;
	width: auto !important;
	height: auto !important;
	padding: 6px;
	border-radius: 4px;
}

/* Square mode — kwadrat z radius */
.swp-ci-shape-square .swp-ci__item {
	border-radius: 10px;
}

/* Icon size defaults (slider overrides via selectors) */
.swp-ci__item svg {
	width: 17px;
	height: 17px;
	display: block;
	fill: currentColor;
	color: inherit;
}
.swp-ci__item i {
	font-size: 17px;
	line-height: 1;
	color: inherit;
}
.swp-ci__item img {
	width: 17px;
	height: 17px;
	display: block;
	max-width: none;
	object-fit: contain;
}

/* WhatsApp brand color override (per-item) */
.swp-ci__item.is-wa-brand {
	color: #25d366;
}
.swp-ci__item.is-wa-brand svg,
.swp-ci__item.is-wa-brand i {
	color: #25d366;
	fill: #25d366;
}
.swp-ci__item.is-wa-brand:hover {
	background-color: #25d366;
	color: #fdfcf8;
	border-color: #25d366;
}
.swp-ci__item.is-wa-brand:hover svg,
.swp-ci__item.is-wa-brand:hover i {
	color: #fdfcf8;
	fill: #fdfcf8;
}

/* ----- Tooltip — pure CSS, w brand style ----- */

.swp-ci__tooltip {
	--swp-ci-tip-offset: 8px;
	position: absolute;
	left: 50%;
	background-color: #0e1228;
	color: #fdfcf8;
	padding: 6px 10px;
	border-radius: 6px;
	font-family: 'Onest', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: -.005em;
	line-height: 1.3;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	z-index: 10;
	box-shadow: 0 8px 20px -8px rgba(14,18,40,.4);
	transition: opacity .2s cubic-bezier(.2,.8,.2,1),
	            transform .2s cubic-bezier(.2,.8,.2,1);
}

/* Pointer arrow */
.swp-ci-pointer-yes .swp-ci__tooltip::after {
	content: '';
	position: absolute;
	left: 50%;
	width: 0;
	height: 0;
	border: 4px solid transparent;
}

/* Position: TOP (default) — tooltip nad ikoną */
.swp-ci-tip-top .swp-ci__tooltip {
	bottom: calc(100% + var(--swp-ci-tip-offset, 8px));
	transform: translate(-50%, 4px);
}
.swp-ci-tip-top.swp-ci-pointer-yes .swp-ci__tooltip::after {
	top: 100%;
	transform: translateX(-50%);
	border-top-color: #0e1228;
}

/* Position: BOTTOM — tooltip pod ikoną (lepsze dla nagłówka) */
.swp-ci-tip-bottom .swp-ci__tooltip {
	top: calc(100% + var(--swp-ci-tip-offset, 8px));
	transform: translate(-50%, -4px);
}
.swp-ci-tip-bottom.swp-ci-pointer-yes .swp-ci__tooltip::after {
	bottom: 100%;
	transform: translateX(-50%);
	border-bottom-color: #0e1228;
}

/* Show on hover / focus-within */
.swp-ci-tooltips-yes .swp-ci__item:hover .swp-ci__tooltip,
.swp-ci-tooltips-yes .swp-ci__item:focus-visible .swp-ci__tooltip,
.swp-ci-tooltips-yes .swp-ci__item:focus-within .swp-ci__tooltip {
	opacity: 1;
}
.swp-ci-tooltips-yes.swp-ci-tip-top .swp-ci__item:hover .swp-ci__tooltip,
.swp-ci-tooltips-yes.swp-ci-tip-top .swp-ci__item:focus-visible .swp-ci__tooltip,
.swp-ci-tooltips-yes.swp-ci-tip-top .swp-ci__item:focus-within .swp-ci__tooltip {
	transform: translate(-50%, 0);
}
.swp-ci-tooltips-yes.swp-ci-tip-bottom .swp-ci__item:hover .swp-ci__tooltip,
.swp-ci-tooltips-yes.swp-ci-tip-bottom .swp-ci__item:focus-visible .swp-ci__tooltip,
.swp-ci-tooltips-yes.swp-ci-tip-bottom .swp-ci__item:focus-within .swp-ci__tooltip {
	transform: translate(-50%, 0);
}

/* Hide tooltips when toggle is off */
.swp-ci-tooltips- .swp-ci__tooltip {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.swp-ci__item,
	.swp-ci__tooltip {
		transition: none;
	}
}
