/* ════════════════════════════════════════════════════════
   Shared styles for individual article pages
   (artigo-*.html)
   ════════════════════════════════════════════════════════ */

:root {
	--bg-light: #F4F1EC;
	--bg-card: #FFFFFF;
	--text-dark: #09111C;
	--text-body: #3a4452;
	--text-mute: #6b7480;
	--accent: #51728B;
	--accent-soft: #E8EDF1;
	--border: rgba(9, 17, 28, 0.08);
	--border-strong: rgba(9, 17, 28, 0.18);
	--tag-bg: #E8E4FB;
	--tag-text: #4f3fb0;

	--bg-dark: #09111C;
	--text-body-dark: #ACB7C0;
	--title-light: #F9F9F9;
	--border-subtle: rgba(81, 114, 139, 0.15);
}

* { box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

html { scroll-behavior: auto; }

body {
	background-color: var(--bg-light);
	color: var(--text-body);
	font-family: 'DM Sans', sans-serif;
	font-size: 17px;
	line-height: 1.65;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.preloading { overflow: hidden; }

a { color: inherit; text-decoration: none; }

/* === Preloader === */
.preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: #09111C;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.55s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
	width: clamp(120px, 14vw, 180px);
	height: auto;
	opacity: 0;
	transform: scale(0.94);
	animation: preloaderFadeIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
	filter: brightness(0) invert(1);
}

@keyframes preloaderFadeIn { to { opacity: 1; transform: scale(1); } }

/* === Nav (light variant) === */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: transparent;
	border-bottom: 1px solid transparent;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

nav.scrolled {
	padding: 14px 40px;
	background-color: rgba(244, 241, 236, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom-color: var(--border);
}

.nav-logo { width: 150px; height: auto; }
.nav-logo img { display: block; width: 100%; height: auto; }

.menu-trigger {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 10px 4px;
	background: transparent;
	border: 0;
	color: var(--text-dark);
	cursor: pointer;
	font-family: 'Chivo Mono', monospace;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.menu-trigger:hover { color: var(--accent); }
.menu-trigger-lines { position: relative; width: 32px; height: 12px; display: inline-block; }
.menu-trigger-line { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; }
.menu-trigger-line:nth-child(1) { top: 3px; }
.menu-trigger-line:nth-child(2) { top: 8px; }

/* === Article hero === */
.article-hero {
	max-width: 1320px;
	margin: 0 auto;
	padding: 160px 40px 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: end;
}

.article-meta-top { display: flex; align-items: center; gap: 14px; margin-bottom: 1rem; flex-wrap: wrap; }

.article-tag {
	display: inline-block;
	padding: 6px 14px;
	background: var(--tag-bg);
	color: var(--tag-text);
	border-radius: 999px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 500;
}

.article-readtime { color: var(--text-mute); font-size: 14px; }
.article-date { color: var(--text-mute); font-size: 14px; margin-bottom: 1.75rem; }

.article-title {
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: clamp(2rem, 4.4vw, 3.75rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--text-dark);
	margin: 0 0 2.5rem;
}

.article-author { display: flex; align-items: center; gap: 14px; }
.article-author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent) 0%, #1a2d42 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--title-light);
	font-family: 'Chivo Mono', monospace;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.04em;
	flex-shrink: 0;
}
.article-author-info { display: flex; flex-direction: column; gap: 2px; }
.article-author-name { font-weight: 600; color: var(--text-dark); font-size: 15px; }
.article-author-role { color: var(--text-mute); font-size: 13px; }

.article-cover {
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4/3;
	background:
		radial-gradient(circle at 30% 30%, rgba(81, 114, 139, 0.25) 0%, transparent 60%),
		linear-gradient(135deg, #2a1f3a 0%, #6b3da8 100%);
	position: relative;
}
.article-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(45deg, rgba(249, 249, 249, 0.04) 0 2px, transparent 2px 14px);
}
.article-cover-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(249, 249, 249, 0.55);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }

/* Per-topic cover gradient (for articles that use placeholder) */
.article-cover[data-topic="endolaser"] { background: radial-gradient(circle at 30% 30%, rgba(81, 114, 139, 0.25) 0%, transparent 60%), linear-gradient(135deg, #2a1f3a 0%, #6b3da8 100%); }
.article-cover[data-topic="vasinhos"]  { background: radial-gradient(circle at 30% 30%, rgba(81, 114, 139, 0.25) 0%, transparent 60%), linear-gradient(135deg, #1a2d42 0%, #51728B 100%); }
.article-cover[data-topic="doppler"]   { background: radial-gradient(circle at 30% 30%, rgba(81, 114, 139, 0.25) 0%, transparent 60%), linear-gradient(135deg, #0d2a2a 0%, #2c8a8a 100%); }
.article-cover[data-topic="opcoes"]    { background: radial-gradient(circle at 30% 30%, rgba(81, 114, 139, 0.25) 0%, transparent 60%), linear-gradient(135deg, #2a2018 0%, #b07a3a 100%); }
.article-cover[data-topic="quando"]    { background: radial-gradient(circle at 30% 30%, rgba(81, 114, 139, 0.25) 0%, transparent 60%), linear-gradient(135deg, #1f2a18 0%, #4a8540 100%); }

@media (max-width: 900px) {
	.article-hero {
		grid-template-columns: 1fr;
		padding: 130px 24px 40px;
		gap: 2rem;
	}
	/* Cover goes full-bleed (escapes the hero padding) and uses the
	   natural 1:1 ratio of the article photos. Edge-to-edge feels like
	   a real editorial cover instead of a small floating thumbnail. */
	.article-cover {
		order: -1;
		aspect-ratio: 1 / 1;
		border-radius: 0;
		margin-left: -24px;
		margin-right: -24px;
		width: calc(100% + 48px);
	}
}

/* === Article body layout === */
.article-body {
	max-width: 1320px;
	margin: 0 auto;
	padding: 60px 40px 120px;
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
}

/* Legal pages (Privacidade, Termos, Cookies) — single-column reading
   layout without TOC sidebar, narrower for comfortable line length. */
.legal-body {
	max-width: 820px;
	margin: 0 auto;
	padding: 60px 40px 120px;
}
.legal-body .article-content { max-width: none; }
@media (max-width: 900px) { .legal-body { padding: 40px 24px 80px; } }
@media (max-width: 480px) { .legal-body { padding: 32px 20px 64px; } }

.article-sidebar { position: sticky; top: 120px; align-self: start; }

.toc-label { font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--text-dark); font-size: 16px; margin: 0 0 1.25rem; }
.toc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.toc-list a {
	color: var(--text-mute);
	font-size: 14px;
	line-height: 1.5;
	transition: color 0.25s ease;
	display: block;
}
.toc-list a:hover, .toc-list a.is-active { color: var(--text-dark); }
.toc-divider { height: 1px; background: var(--border); margin: 1.75rem 0 1.5rem; }

.share-buttons { display: flex; gap: 8px; }
.share-btn {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text-mute);
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.share-btn:hover { background: var(--accent-soft); color: var(--accent); transform: translateY(-2px); }

/* === Article content === */
.article-content {
	max-width: 720px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--text-body);
}
.article-content > * + * { margin-top: 1.25rem; }
.article-content h2 {
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: clamp(1.5rem, 2.4vw, 1.875rem);
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--text-dark);
	margin: 3rem 0 1.25rem;
	scroll-margin-top: 110px;
}
.article-content h3 {
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--text-dark);
	margin: 2rem 0 0.75rem;
}
.article-content p { margin: 0 0 1.25rem; }
.article-content a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(81, 114, 139, 0.4);
	transition: text-decoration-color 0.2s ease;
}
.article-content a:hover { text-decoration-color: var(--accent); }
.article-content strong { color: var(--text-dark); font-weight: 600; }
.article-content ul, .article-content ol { margin: 1.25rem 0 1.5rem; padding-left: 1.5rem; }
.article-content li { margin-bottom: 0.5rem; }
.article-content blockquote {
	border-left: 3px solid var(--accent);
	background: var(--bg-card);
	padding: 1.5rem 1.75rem;
	border-radius: 0 6px 6px 0;
	margin: 2rem 0;
}
.article-content blockquote p { font-style: italic; color: var(--text-dark); font-size: 1.05rem; margin: 0; }
.article-content blockquote cite { display: block; margin-top: 1rem; font-size: 13px; font-style: normal; color: var(--text-mute); }

.article-figure { margin: 2rem 0; }
.article-figure-image {
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 16/10;
	background:
		radial-gradient(circle at 30% 30%, rgba(81, 114, 139, 0.18) 0%, transparent 60%),
		linear-gradient(135deg, #1a2d42 0%, #51728B 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.article-figure-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(45deg, rgba(249, 249, 249, 0.04) 0 2px, transparent 2px 14px);
}
.article-figure-image svg { color: rgba(249, 249, 249, 0.55); z-index: 1; }
.article-figure-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-figure figcaption { margin-top: 0.75rem; font-size: 13px; color: var(--text-mute); line-height: 1.45; }

.callout {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1.5rem 1.75rem;
	margin: 2rem 0;
}
.callout-label {
	font-family: 'Chivo Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 0.5rem;
	font-weight: 600;
}
.callout p { margin: 0; color: var(--text-dark); font-size: 15px; }

/* References */
.article-references { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.article-references h2 { font-size: 1.5rem; margin: 0 0 1.5rem; }
.article-references ol { list-style: none; counter-reset: ref; padding-left: 0; margin: 0; }
.article-references li {
	counter-increment: ref;
	padding-left: 2.5rem;
	position: relative;
	font-size: 14px;
	line-height: 1.55;
	margin-bottom: 1rem;
	color: var(--text-mute);
}
.article-references li::before {
	content: counter(ref) '.';
	position: absolute;
	left: 0;
	top: 0;
	font-family: 'Chivo Mono', monospace;
	font-weight: 600;
	color: var(--accent);
	font-size: 13px;
}
.article-references li a { color: var(--accent); word-break: break-word; }

/* Disclaimer at very bottom of article */
.article-disclaimer {
	margin-top: 3rem;
	padding: 1.5rem 1.75rem;
	background: rgba(81, 114, 139, 0.05);
	border-left: 3px solid var(--accent);
	border-radius: 0 6px 6px 0;
}
.article-disclaimer p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--text-mute); font-style: italic; }

/* Article footer (tags + author bio) */
.article-footer {
	margin-top: 4rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.article-tag-chip {
	padding: 6px 14px;
	background: var(--accent-soft);
	color: var(--accent);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
}

/* Inline CTA at bottom of article */
.article-cta-inline {
	margin-top: 3rem;
	padding: 2rem 2.25rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.article-cta-inline h3 {
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--text-dark);
	margin: 0;
}
.article-cta-inline p { margin: 0; color: var(--text-body); font-size: 15px; }
.article-cta-button {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	background: var(--text-dark);
	color: var(--title-light);
	border-radius: 999px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.005em;
	text-decoration: none;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.article-cta-button:hover {
	background: #142633;
	transform: translateY(-2px);
	box-shadow: 0 14px 36px -10px rgba(9, 17, 28, 0.35);
}

/* Related articles */
.related-articles {
	background: var(--bg-card);
	padding: 80px 40px;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.related-articles-inner { max-width: 1320px; margin: 0 auto; }
.related-articles h2 {
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	color: var(--text-dark);
	margin: 0 0 2.5rem;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.related-card { display: flex; flex-direction: column; gap: 1rem; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.related-card:hover { transform: translateY(-4px); }
.related-card-cover {
	aspect-ratio: 4/3;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.related-card-cover svg { color: rgba(249, 249, 249, 0.5); z-index: 1; }
.related-card-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(45deg, rgba(249, 249, 249, 0.04) 0 2px, transparent 2px 14px);
}
.related-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.related-card[data-topic="endolaser"] .related-card-cover { background: linear-gradient(135deg, #2a1f3a 0%, #6b3da8 100%); }
.related-card[data-topic="vasinhos"] .related-card-cover { background: linear-gradient(135deg, #1a2d42 0%, #51728B 100%); }
.related-card[data-topic="doppler"]  .related-card-cover { background: linear-gradient(135deg, #0d2a2a 0%, #2c8a8a 100%); }
.related-card[data-topic="opcoes"]   .related-card-cover { background: linear-gradient(135deg, #2a2018 0%, #b07a3a 100%); }
.related-card[data-topic="quando"]   .related-card-cover { background: linear-gradient(135deg, #1f2a18 0%, #4a8540 100%); }

.related-card-eyebrow {
	font-family: 'Chivo Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 600;
}
.related-card-title {
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 1.3;
	color: var(--text-dark);
	margin: 0;
}

@media (max-width: 900px) {
	.article-body { grid-template-columns: 1fr; padding: 40px 24px 80px; }
	.article-sidebar {
		position: static;
		order: 2;
		margin-top: 3rem;
		padding-top: 2rem;
		border-top: 1px solid var(--border);
	}
	.related-grid { grid-template-columns: 1fr; gap: 1.5rem; }
	.related-articles { padding: 60px 24px; }
}

@media (max-width: 640px) {
	nav { padding: 16px 24px; }
	.nav-logo { width: 110px; }
}

@media (max-width: 480px) {
	.article-hero { padding: 110px 20px 32px; }
	/* Re-sync the full-bleed cover with the 20px hero padding at this width */
	.article-cover {
		margin-left: -20px;
		margin-right: -20px;
		width: calc(100% + 40px);
	}
	.article-title { margin-bottom: 1.75rem; }
	.article-body { padding: 32px 20px 64px; }
	.article-content { font-size: 16px; line-height: 1.7; }
	.article-content h2 { font-size: 1.4rem; margin-top: 2.25rem; }
	.article-content h3 { font-size: 1.15rem; }
	.article-cta-inline { padding: 1.5rem 1.5rem; }
	.related-articles { padding: 48px 20px; }
	nav { padding: 14px 20px; }
	.nav-logo { width: 96px; }
}

/* === Footer (dark, same as other pages) === */
footer {
	background-color: #05080f;
	color: var(--text-body-dark);
	border-top: 1px solid var(--border-subtle);
	display: flex;
	flex-direction: column;
	padding: 0;
}
footer h3, footer p { color: inherit; }

.footer-top-grid {
	display: grid;
	grid-template-columns: auto 1fr 1fr 1.1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
	padding: 96px 80px 64px;
	max-width: 1720px;
	margin: 0 auto;
	width: 100%;
}

@media (max-width: 980px) { .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 600px) { .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.25rem; } }

/* ── Compact footer mobile layout — same across every page ──
   Logo full-width on row 1, Nav + Legais side by side on row 2,
   Contato full-width on row 3. Tight padding/fonts so the whole
   footer fits inside one mobile viewport (~900px). */
@media (max-width: 480px) {
	.footer-top-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		padding: 36px 20px 18px;
		gap: 1.5rem 1.25rem;
	}
	.footer-top-grid > div:first-child { grid-column: 1 / -1; }
	.footer-top-grid > div:first-child img {
		width: 90px !important;
		margin-bottom: 0 !important;
	}
	.footer-top-grid > div:nth-child(4) {
		grid-column: 1 / -1;
		margin-top: 0.25rem;
	}
	.footer-col-label { font-size: 0.65rem; margin-bottom: 0.65rem; }
	.footer-link { font-size: 0.85rem; }
	.footer-list { gap: 0.4rem; }
	.footer-social { width: 32px; height: 32px; }
	footer address {
		font-size: 0.8rem;
		line-height: 1.45;
	}
}

.footer-col-label {
	color: var(--text-body-dark);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1.5rem;
}

.footer-link { color: var(--title-light); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.footer-link:hover { color: var(--accent); }
.footer-list { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(249, 249, 249, 0.18);
	color: var(--title-light);
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer-social:hover { background: rgba(249, 249, 249, 0.06); border-color: rgba(249, 249, 249, 0.45); transform: translateY(-2px); }

.footer-bottom {
	max-width: 1720px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.75rem 80px 2.5rem 80px;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	border-top: 1px solid var(--border-subtle);
}
@media (max-width: 480px) {
	.footer-bottom {
		padding: 0.85rem 20px 1.25rem;
		gap: 0.35rem;
		text-align: center;
		flex-direction: column;
	}
	.footer-bottom p { font-size: 0.62rem; }
}

.footer-credit-link {
	color: var(--title-light);
	border-bottom: 1px solid var(--border-subtle);
	padding-bottom: 1px;
	transition: border-color 0.3s ease, color 0.3s ease;
}
.footer-credit-link:hover { border-color: var(--accent); color: var(--accent); }

/* === WhatsApp float === */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 80;
	width: 56px;
	height: 56px;
	background-color: #25D366;
	color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.06); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25); }
@media (max-width: 480px) {
	.whatsapp-float { width: 48px; height: 48px; bottom: 18px; right: 18px; }
}

/* === Cookie banner === */
.cookie-banner {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	background: rgba(9, 17, 28, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(249, 249, 249, 0.12);
	border-radius: 10px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 880px;
	margin: 0 auto;
	box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.5);
	transform: translateY(140%);
	opacity: 0;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
	pointer-events: none;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner-text { color: rgba(249, 249, 249, 0.85); font-size: 0.875rem; line-height: 1.55; margin: 0; flex: 1 1 auto; }
.cookie-banner-text a { color: var(--title-light); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; gap: 10px; }

.cookie-btn {
	font-family: 'Chivo Mono', monospace;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 12px 20px;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
}
.cookie-btn-primary { background: var(--title-light); color: #09111C; border: 1px solid var(--title-light); }
.cookie-btn-secondary { background: transparent; color: var(--title-light); border: 1px solid rgba(249, 249, 249, 0.3); }

@media (max-width: 720px) {
	.cookie-banner { flex-direction: column; align-items: stretch; gap: 14px; padding: 18px 20px; left: 16px; right: 16px; bottom: 16px; }
	.cookie-banner-actions { justify-content: flex-end; }
}
