/**
 * GemRadar — Web pública gemradar.es
 */
:root {
	--bg: #0a0a0f;
	--surface: #111118;
	--surface2: #1a1a24;
	--border: #2a2a3a;
	--accent: #00ff88;
	--accent2: #7c3aed;
	--accent-blue: #63b3ff;
	--text: #e8e8f0;
	--muted: #9a9ab3;
	--cymtech: #3A5AA2;
	--cymtech-light: #5B7EC4;
	--danger: #ff4444;
	--stock: #00bfff;
	--crypto: #f7931a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	min-height: 100vh;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(0,255,136,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,255,136,0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
	z-index: 0;
}

a { color: inherit; }

.wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px 64px;
	position: relative;
	z-index: 1;
}

/* Header */
.site-header {
	padding: 28px 0 20px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 0;
}

.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-icon {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.logo-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.logo-text h1 {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1.1;
}

.logo-text h1 span { color: var(--accent); }

.brand-byline {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	color: var(--muted);
	margin: 0;
}

.site-header .brand-byline {
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1;
	margin-top: 1px;
}

.site-header .brand-byline-by {
	flex-shrink: 0;
}

.site-header .brand-byline-logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	opacity: 0.95;
}

.site-header .brand-byline-logo:hover {
	opacity: 1;
	transform: none;
}

.site-header .brand-byline-logo img {
	width: 68px;
	height: auto;
	display: block;
	max-width: none;
}

.brand-cymtech {
	color: var(--cymtech);
	font-weight: 700;
	text-decoration: none;
}

.brand-cymtech:hover {
	color: var(--cymtech-light);
	text-decoration: underline;
}

.header-nav {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.nav-link {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--muted);
	text-decoration: none;
	transition: border-color .2s, color .2s;
}

.nav-link:hover {
	border-color: var(--accent);
	color: var(--text);
}

.nav-cta {
	background: var(--accent);
	color: #0a0a0f;
	border-color: var(--accent);
	font-weight: 700;
}

.nav-cta:hover {
	filter: brightness(1.08);
	color: #0a0a0f;
}

/* Hero + slider */
.hero {
	padding: 56px 0 48px;
	text-align: center;
}

.hero-slider {
	position: relative;
	max-width: 920px;
	margin: 0 auto 36px;
}

.hero-slider-glow {
	position: absolute;
	inset: -40px 10% auto;
	height: 280px;
	background: radial-gradient(ellipse at center, rgba(0,255,136,0.12) 0%, rgba(124,58,237,0.08) 40%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.hero-slider-viewport {
	position: relative;
	min-height: 220px;
	z-index: 1;
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(18px) scale(0.98);
	transition: opacity .55s ease, transform .55s ease, visibility .55s;
	padding: 0 12px;
}

.hero-slide.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.hero-slide-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	color: var(--muted);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 22px;
	background: rgba(17, 17, 24, 0.6);
	backdrop-filter: blur(6px);
}

.hero-slide-tag .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 8px var(--accent);
	flex-shrink: 0;
}

.hero-slide-title {
	font-size: clamp(30px, 5.5vw, 54px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -1px;
	margin-bottom: 16px;
	max-width: 820px;
}

.hero-slide-title em {
	font-style: normal;
	color: var(--accent);
	text-shadow: 0 0 40px rgba(0, 255, 136, 0.25);
}

.hero-slide-sub {
	font-size: 17px;
	color: var(--muted);
	max-width: 560px;
	line-height: 1.65;
}

.hero-slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
	position: relative;
	z-index: 2;
}

.hero-dots {
	display: flex;
	gap: 10px;
	align-items: center;
}

.hero-dot {
	width: 36px;
	height: 6px;
	border: none;
	border-radius: 999px;
	background: var(--surface2);
	padding: 0;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: background .2s;
}

.hero-dot:hover {
	background: var(--border);
}

.hero-dot.is-active {
	background: rgba(0, 255, 136, 0.2);
}

.hero-dot-progress {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: var(--accent);
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.hero-dot.is-active .hero-dot-progress {
	animation: heroDotProgress 6s linear forwards;
}

.hero-dot.is-active.is-paused .hero-dot-progress {
	animation-play-state: paused;
}

@keyframes heroDotProgress {
	from { width: 0; }
	to { width: 100%; }
}

.hero-arrow {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: rgba(17, 17, 24, 0.8);
	color: var(--muted);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: border-color .2s, color .2s, background .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 2px;
}

.hero-arrow:hover {
	border-color: var(--accent);
	color: var(--accent);
	background: rgba(0, 255, 136, 0.06);
}

.hero-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
	.hero-slide {
		transition: opacity .2s ease;
		transform: none;
	}
	.hero-dot.is-active .hero-dot-progress {
		animation: none;
		width: 100%;
	}
	.stat-card-live.is-live .stat-live-dot {
		animation: none;
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	color: var(--muted);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 24px;
}

.hero-badge .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 8px var(--accent);
}

.hero-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 22px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform .15s, filter .15s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
	background: var(--accent);
	color: #0a0a0f;
}

.btn-primary:hover { filter: brightness(1.06); }

.btn-ghost {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-ghost:hover { border-color: var(--muted); }

/* Stats bar */
.stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin: 48px 0 64px;
}

.stat-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 20px;
	text-align: center;
}

.stat-val {
	font-size: 28px;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 6px;
}

.stat-val-row {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.stat-trend-arrow {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.stat-trend-up {
	color: var(--accent);
}

.stat-trend-down {
	color: var(--danger);
}

.stat-trend-flat {
	color: var(--muted);
	font-size: 16px;
}

.stat-val-down .stat-val-num {
	color: var(--danger);
}

.stat-label {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.stat-live-dot {
	display: none;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 8px var(--accent);
	flex-shrink: 0;
}

.stat-card-live.is-live .stat-live-dot {
	display: inline-block;
	animation: statLivePulse 2s ease-in-out infinite;
}

@keyframes statLivePulse {
	0%, 100% {
		opacity: 1;
		box-shadow: 0 0 6px var(--accent);
	}
	50% {
		opacity: 0.55;
		box-shadow: 0 0 12px var(--accent);
	}
}

.stat-sublabel {
	font-size: 10px;
	color: var(--muted);
	margin-top: 4px;
	opacity: 0.85;
	line-height: 1.3;
}

.stat-val-down.stat-val {
	color: var(--danger);
}

.stat-val-down.stat-val-row {
	color: var(--accent);
}

/* Sections */
.section {
	margin-bottom: 72px;
}

.section-head {
	margin-bottom: 28px;
}

.section-head h3 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin-bottom: 8px;
}

.section-head p {
	color: var(--muted);
	font-size: 15px;
	max-width: 560px;
}

.section-head h3 span { color: var(--accent); }

/* Trending */
.trending-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.trend-row {
	display: grid;
	grid-template-columns: 36px 1fr auto auto;
	align-items: center;
	gap: 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 16px 20px;
	transition: border-color .2s;
}

.trend-row:hover { border-color: rgba(0,255,136,0.25); }

.trend-rank {
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	color: var(--muted);
	font-weight: 700;
}

.trend-main {
	min-width: 0;
}

.trend-ticker {
	font-weight: 800;
	font-size: 16px;
	margin-bottom: 2px;
}

.trend-name {
	font-size: 13px;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.trend-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}

.tag {
	font-family: 'Space Mono', monospace;
	font-size: 9px;
	padding: 3px 8px;
	border-radius: 6px;
	background: var(--surface2);
	color: var(--muted);
	border: 1px solid var(--border);
}

.tag-stock { color: var(--stock); border-color: rgba(0,191,255,0.25); }
.tag-crypto { color: var(--crypto); border-color: rgba(247,147,26,0.25); }

.trend-score {
	text-align: right;
}

.score-num {
	font-size: 26px;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
}

.score-label {
	font-family: 'Space Mono', monospace;
	font-size: 9px;
	color: var(--muted);
}

.trend-delta {
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	font-weight: 700;
	text-align: right;
	min-width: 52px;
}

.trend-delta.up { color: var(--accent); }
.trend-delta.down { color: var(--danger); }
.trend-delta.neu { color: var(--muted); }

.trend-loading, .trend-empty {
	text-align: center;
	padding: 48px;
	color: var(--muted);
	font-family: 'Space Mono', monospace;
	font-size: 13px;
	border: 1px dashed var(--border);
	border-radius: 14px;
}

.scan-meta {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	color: var(--muted);
	margin-top: 12px;
	text-align: right;
}

/* Jugadas top de hoy */
.today-moves-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.today-moves-col-title {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--muted);
}

.today-moves-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.today-move-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 14px 16px;
	transition: border-color .2s;
}

.today-move-card:hover {
	border-color: rgba(0, 255, 136, 0.18);
}

.today-move-icon {
	font-size: 22px;
	flex-shrink: 0;
}

.today-move-info {
	flex: 1;
	min-width: 0;
}

.today-move-ticker {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 2px;
}

.today-move-name {
	font-size: 11px;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.today-move-pct {
	font-family: 'Space Mono', monospace;
	font-size: 16px;
	font-weight: 800;
	flex-shrink: 0;
}

.today-move-up { color: var(--accent); }
.today-move-down { color: var(--danger); }

.today-moves-meta {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	color: var(--muted);
	margin-top: 12px;
	text-align: right;
	opacity: 0.85;
}

/* GemScore */
.gemscore-block {
	background: linear-gradient(135deg, rgba(0,255,136,0.06), rgba(124,58,237,0.08));
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 32px;
}

.gemscore-intro {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 24px;
	max-width: 720px;
}

.formula {
	font-family: 'Space Mono', monospace;
	font-size: 15px;
	font-weight: 700;
	color: var(--accent);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 16px 20px;
	margin: 20px 0 24px;
	text-align: center;
}

.pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.pillar {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 18px;
}

.pillar strong {
	display: block;
	font-size: 16px;
	margin-bottom: 8px;
	color: var(--accent);
}

.pillar p {
	font-size: 13px;
	color: var(--muted);
	margin-top: 8px;
	line-height: 1.5;
}

/* How it works */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.step {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 24px;
}

.step-num {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	color: var(--cymtech);
	font-weight: 700;
	margin-bottom: 12px;
}

.step h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.step p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.55;
}

/* Highlights / Hall of Fame */
.hof-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.hof-col-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text);
}

.hof-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hof-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 14px 16px;
	transition: border-color .2s;
}

.hof-card:hover {
	border-color: rgba(0, 255, 136, 0.2);
}

.hof-card-gold {
	border-color: rgba(245, 158, 11, 0.4);
	background: rgba(245, 158, 11, 0.05);
}

.hof-icon {
	font-size: 22px;
	flex-shrink: 0;
}

.hof-info {
	flex: 1;
	min-width: 0;
}

.hof-ticker {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 2px;
}

.hof-name {
	font-size: 11px;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hof-pct {
	font-family: 'Space Mono', monospace;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
}

.hof-pct-up { color: var(--accent); }

.hof-badge {
	font-size: 12px;
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.highlight-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	text-align: center;
}

.highlight-pct {
	font-size: 24px;
	font-weight: 800;
	color: var(--accent);
}

.highlight-ticker {
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	color: var(--muted);
	margin-top: 4px;
}

/* Cymtech logo links */
.cymtech-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
	opacity: 0.92;
	transition: opacity .2s, transform .15s;
}

.cymtech-logo-link:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.cymtech-logo-link img {
	display: block;
	height: auto;
	max-width: 100%;
}

.cymtech-logo-block img {
	width: 160px;
	height: auto;
}

.cymtech-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px 32px;
}

.cymtech-block h4 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 6px;
}

.cymtech-block p {
	font-size: 14px;
	color: var(--muted);
	max-width: 480px;
}

.cymtech-logo {
	font-size: 28px;
	font-weight: 800;
	color: var(--cymtech);
	letter-spacing: -0.5px;
}

/* Cymtech block */
.site-footer {
	border-top: 1px solid var(--border);
	padding: 32px 0;
	margin-top: 24px;
}

.footer-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	color: var(--muted);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.footer-links a {
	color: var(--muted);
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--accent);
}

/* Cookie banner */
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	padding: 16px;
	background: rgba(10, 10, 15, 0.96);
	border-top: 1px solid var(--border);
	backdrop-filter: blur(8px);
	transform: translateY(0);
	transition: transform .28s ease, opacity .28s ease;
}

.cookie-banner--hide {
	transform: translateY(110%);
	opacity: 0;
}

.cookie-banner-inner {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.cookie-banner-inner p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.55;
	max-width: 640px;
}

.cookie-banner-inner a {
	color: var(--accent);
}

.cookie-banner-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.cookie-banner .btn {
	padding: 10px 16px;
	font-size: 12px;
}

/* Legal pages */
.legal-page {
	padding-bottom: 48px;
}

.legal-content {
	max-width: 760px;
	margin: 0 auto 48px;
}

.legal-content h2 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 28px;
	letter-spacing: -0.5px;
}

.legal-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 28px 0 12px;
	color: var(--text);
}

.legal-content h4 {
	font-size: 15px;
	font-weight: 700;
	margin: 20px 0 8px;
	color: var(--accent);
}

.legal-content p,
.legal-content li {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 12px;
}

.legal-content ul {
	padding-left: 20px;
	margin-bottom: 16px;
}

.legal-content a {
	color: var(--accent);
}

.legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 12px 0 20px;
	font-size: 13px;
}

.legal-table th,
.legal-table td {
	border: 1px solid var(--border);
	padding: 10px 12px;
	text-align: left;
	vertical-align: top;
}

.legal-table th {
	background: var(--surface);
	color: var(--text);
	font-weight: 600;
}

.legal-table td {
	color: var(--muted);
}

.legal-table code {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	color: var(--text);
}

.legal-updated {
	margin-top: 32px;
	font-family: 'Space Mono', monospace;
	font-size: 11px;
}

.disclaimer {
	margin-top: 20px;
	font-size: 12px;
	color: var(--muted);
	line-height: 1.6;
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: var(--surface);
}

@media (max-width: 900px) {
	.stats-bar { grid-template-columns: repeat(2, 1fr); }
	.pillars, .steps, .highlights-grid, .hof-grid, .today-moves-grid { grid-template-columns: 1fr; }
	.trend-row {
		grid-template-columns: 36px 1fr;
		grid-template-rows: auto auto;
	}
	.trend-score, .trend-delta {
		grid-column: 2;
		text-align: left;
	}
}

@media (max-width: 600px) {
	.hero { padding: 40px 0 36px; }
	.hero-slider-viewport { min-height: 260px; }
	.hero-slider-nav { gap: 10px; margin-top: 24px; }
	.hero-arrow { width: 36px; height: 36px; font-size: 20px; }
	.stats-bar { grid-template-columns: 1fr 1fr; }
	.cymtech-block { flex-direction: column; align-items: flex-start; }
	.cookie-banner-inner { flex-direction: column; align-items: stretch; }
	.cookie-banner-actions { width: 100%; }
	.cookie-banner-actions .btn { flex: 1; justify-content: center; }
}
