/* =========================================================================
   Labiia Lab — folha de estilo de produção
   Sumário: 1.Tokens 2.Base 3.Tipografia 4.Layout 5.Botões 6.Cabeçalho
   7.Hero 8.Seções 9.Cards 10.Publicações 11.Faixa CTA 12.Parceiros
   13.Formulários 14.Rodapé 15.Page hero 16.Single 17.Equipe 18.Institucional
   19.Widgets 20.Estados 21.LGPD/UI 22.Reveal 23.Responsivo
   ========================================================================= */

/* ---------------------------------- 1. TOKENS ---------------------------- */
:root {
	--brand: #5b5be5;
	--brand-600: #4a48d8;
	--brand-700: #3a37b3;
	--brand-100: #eeeefb;
	--brand-50: #f6f6fd;
	--ink: #15132e;
	--ink-700: #2c2a4a;
	--ink-500: #5b5975;
	--ink-300: #9b99b3;
	--line: #e6e5f0;
	--bg: #ffffff;
	--bg-alt: #f5f5fc;
	--accent: #ffb43d;
	--accent-600: #f3a01b;
	--ok: #1f9d6b;
	--err: #d9415f;
	--radius: 18px;
	--radius-sm: 12px;
	--radius-lg: 28px;
	--shadow-sm: 0 2px 10px rgba(21, 19, 46, .07);
	--shadow: 0 18px 44px -22px rgba(21, 19, 46, .30);
	--shadow-lg: 0 34px 64px -26px rgba(21, 19, 46, .36);
	--container: 1200px;
	--gap: 28px;
	--ease: cubic-bezier(.22, .61, .36, 1);
	--font-head: 'Space Grotesk', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;
	--font-mono: 'JetBrains Mono', ui-monospace, monospace;
	--header-h: 78px;
}

/* ---------------------------------- 2. BASE ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-700);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-700); }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
	position: fixed; top: -100px; left: 16px; z-index: 999;
	background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 10px;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------------------------------- 3. TIPOGRAFIA ------------------------ */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
	display: inline-block; font-family: var(--font-mono); font-size: .82rem; font-weight: 600;
	letter-spacing: .04em; color: var(--brand); background: var(--brand-100);
	padding: 6px 12px; border-radius: 8px; margin-bottom: 18px;
}
.eyebrow--light { color: #c9caff; background: rgba(255, 255, 255, .10); }

/* ---------------------------------- 4. LAYOUT ---------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.site-main { display: block; }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 680px; margin-bottom: 44px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }
.section__title { margin-bottom: .35em; }
.section__lead { font-size: 1.12rem; color: var(--ink-500); }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; padding-top: 56px; padding-bottom: 88px; align-items: start; }
.layout--reverse { grid-template-columns: 340px minmax(0, 1fr); }
.layout--reverse .layout__sidebar { order: -1; }

.icon { flex: none; }

/* ---------------------------------- 5. BOTÕES ---------------------------- */
.btn {
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--font-head); font-weight: 600; font-size: .98rem;
	padding: 13px 24px; border-radius: 12px; border: 1.5px solid transparent;
	cursor: pointer; transition: transform .18s var(--ease), background .2s, box-shadow .2s, color .2s;
	white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { transition: transform .2s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(3px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 22px -10px rgba(91, 91, 229, .7); }
.btn--primary:hover { background: var(--brand-700); color: #fff; }
.btn--accent { background: var(--accent); color: var(--ink); box-shadow: 0 10px 22px -10px rgba(255, 180, 61, .8); }
.btn--accent:hover { background: var(--accent-600); color: var(--ink); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--ghost-light { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.btn--lg { padding: 16px 30px; font-size: 1.04rem; }
.btn--sm { padding: 9px 16px; font-size: .86rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------------------------------- 6. CABEÇALHO ------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
	transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 28px; min-height: var(--header-h); }
.site-branding { flex: none; }
.site-branding img, .custom-logo { height: 38px; width: auto; }
.site-branding a { display: block; }

.site-nav { flex: 1; }
.menu { list-style: none; display: flex; align-items: center; gap: 4px; }
.menu--primary > .menu-item > a {
	display: block; padding: 9px 14px; border-radius: 9px;
	font-family: var(--font-head); font-weight: 500; font-size: .97rem; color: var(--ink);
}
.menu--primary > .menu-item > a:hover,
.menu--primary > .current-menu-item > a { background: var(--brand-100); color: var(--brand-700); }
.menu--primary .menu-item { position: relative; }
.menu--primary .sub-menu {
	list-style: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
	transform: translateY(8px); transition: all .2s var(--ease);
}
.menu--primary .menu-item:hover > .sub-menu,
.menu--primary .menu-item:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu--primary .sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--ink-700); font-size: .94rem; }
.menu--primary .sub-menu a:hover { background: var(--brand-50); color: var(--brand-700); }

.site-header__actions { display: flex; align-items: center; gap: 10px; flex: none; }
.icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--line);
	background: #fff; color: var(--ink); transition: all .2s var(--ease);
}
.icon-btn:hover { border-color: var(--brand); color: var(--brand); }
.icon-btn--outline { width: 38px; height: 38px; }
.icon-btn--menu { display: none; }

.lang-switcher { display: flex; gap: 2px; border: 1.5px solid var(--line); border-radius: 10px; padding: 3px; }
.lang-switcher__item { padding: 5px 9px; border-radius: 7px; font-size: .8rem; font-weight: 600; font-family: var(--font-mono); color: var(--ink-500); }
.lang-switcher__item.is-active { background: var(--brand); color: #fff; }

.site-search { border-top: 1px solid var(--line); background: #fff; padding: 18px 0; }
.site-search[hidden] { display: none; }

/* Navegação mobile */
.mobile-nav {
	position: fixed; inset: 0; z-index: 200; background: #fff;
	transform: translateX(100%); transition: transform .32s var(--ease); overflow-y: auto;
}
.mobile-nav:not([hidden]) { display: block; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); border-bottom: 1px solid var(--line); }
.mobile-nav__title { font-family: var(--font-mono); font-weight: 600; color: var(--ink-500); }
.menu--mobile { flex-direction: column; align-items: stretch; gap: 0; padding: 16px 0; }
.menu--mobile .menu-item > a { display: block; padding: 14px 4px; font-family: var(--font-head); font-size: 1.15rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.menu--mobile .sub-menu { list-style: none; padding-left: 16px; }
.mobile-nav .btn { margin-top: 24px; }
.social-links--mobile { margin-top: 28px; }

/* ---------------------------------- 7. HERO ------------------------------ */
.hero {
	position: relative; display: flex; align-items: center;
	min-height: clamp(560px, 82vh, 820px); overflow: hidden;
	background: linear-gradient(150deg, #1c1a40 0%, #2b2769 45%, var(--brand) 120%);
	color: #fff; padding: 100px 0;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__video, .hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(20, 18, 48, .92), rgba(36, 32, 92, .72)); }
.hero__grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
	background-size: 54px 54px;
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 40%, transparent 100%);
	mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 40%, transparent 100%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__content { max-width: 760px; }
.hero__title { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.1rem); margin-bottom: .35em; }
.hero__text { font-size: clamp(1.05rem, 1.6vw, 1.32rem); color: rgba(255, 255, 255, .82); max-width: 600px; margin-bottom: 2em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
	position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1;
	width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .4); border-radius: 14px;
}
.hero__scroll span {
	position: absolute; top: 8px; left: 50%; margin-left: -3px; width: 6px; height: 6px;
	background: #fff; border-radius: 50%; animation: heroScroll 1.7s infinite;
}
@keyframes heroScroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(14px); } }

/* ---------------------------------- 8. SOBRE / STATS --------------------- */
.section--about { padding-top: clamp(64px, 9vw, 120px); }
.about { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.about__stats { display: grid; gap: 18px; }
.stat {
	background: var(--brand-50); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 26px 28px; transition: transform .25s var(--ease);
}
.stat:hover { transform: translateX(6px); }
.stat__num { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--brand); line-height: 1; }
.stat__label { display: block; margin-top: 8px; color: var(--ink-500); font-size: .98rem; }

/* ---------------------------------- 8b. ÁREAS ---------------------------- */
.area-card {
	display: flex; flex-direction: column; align-items: flex-start;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 32px; color: var(--ink); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; color: var(--ink); }
.area-card__icon {
	display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px;
	border-radius: 15px; background: var(--brand-100); color: var(--brand); margin-bottom: 20px;
	transition: background .25s, color .25s;
}
.area-card:hover .area-card__icon { background: var(--brand); color: #fff; }
.area-card__title { font-size: 1.22rem; margin-bottom: .4em; }
.area-card__text { color: var(--ink-500); font-size: .98rem; margin-bottom: 1.4em; }
.area-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--brand); }
.area-card:hover .area-card__link .icon { transform: translateX(3px); }

/* ---------------------------------- 9. CARDS ----------------------------- */
.card {
	display: flex; flex-direction: column; background: #fff;
	border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
	transition: transform .25s var(--ease), box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--brand-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__badge {
	position: absolute; top: 14px; left: 14px; z-index: 2;
	font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
	padding: 6px 11px; border-radius: 7px; background: #fff; color: var(--ink); box-shadow: var(--shadow-sm);
}
.card__badge--andamento, .card__badge--running, .card__badge--open { background: var(--brand); color: #fff; }
.card__badge--concluido, .card__badge--past { background: var(--ink); color: #fff; }
.card__badge--futuro, .card__badge--soon { background: var(--accent); color: var(--ink); }
.card__badge--pub { background: var(--ink); color: #fff; }
.card__date {
	position: absolute; bottom: 14px; left: 14px; z-index: 2; text-align: center;
	background: #fff; border-radius: 10px; padding: 8px 12px; box-shadow: var(--shadow-sm); line-height: 1;
}
.card__date strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--brand); }
.card__date span { font-size: .72rem; text-transform: uppercase; color: var(--ink-500); font-weight: 600; }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.card__title { font-size: 1.18rem; margin-bottom: .5em; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--brand); }
.card__excerpt { color: var(--ink-500); font-size: .96rem; margin-bottom: 1.2em; }
.card__specs { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 16px; margin-bottom: 1.1em; font-size: .85rem; color: var(--ink-500); }
.card__specs li { display: flex; align-items: center; gap: 6px; }
.card__specs .icon { color: var(--brand); }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.card__meta { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--ink-500); }
.card__meta .icon { color: var(--brand); }
.card__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--brand); }
.card:hover .card__link .icon { transform: translateX(3px); }
.card__link .icon { transition: transform .2s var(--ease); }

.entry-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-bottom: 12px; font-size: .82rem; color: var(--ink-500); }
.entry-meta__cat { font-family: var(--font-mono); font-weight: 600; color: var(--brand); }
.entry-meta__date::before, .entry-meta__read::before { content: "·"; margin-right: 14px; color: var(--ink-300); }
.entry-meta__cat + .entry-meta__date::before { }

.pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.pill {
	font-family: var(--font-mono); font-size: .74rem; font-weight: 600;
	padding: 5px 10px; border-radius: 7px; background: var(--brand-100); color: var(--brand-700);
}
.pill:hover { background: var(--brand); color: #fff; }
.pill--solid { background: var(--ink); color: #fff; }
.pill--status { color: #fff; }
.pill--andamento, .pill--running, .pill--open { background: var(--brand); color: #fff; }
.pill--concluido, .pill--past { background: var(--ink); color: #fff; }
.pill--futuro, .pill--soon { background: var(--accent); color: var(--ink); }

.placeholder-img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------- 10. PUBLICAÇÕES ---------------------- */
.pub-list { display: flex; flex-direction: column; gap: 16px; }
.pub-item {
	display: flex; align-items: center; gap: 24px; background: #fff;
	border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px;
	transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.pub-item:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: transparent; }
.pub-item__icon {
	flex: none; display: inline-flex; align-items: center; justify-content: center;
	width: 60px; height: 60px; border-radius: 14px; background: var(--brand-100); color: var(--brand);
}
.pub-item__body { flex: 1; min-width: 0; }
.pub-item__top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.pub-item__year { font-family: var(--font-mono); font-size: .82rem; color: var(--ink-500); }
.pub-item__title { font-size: 1.16rem; margin-bottom: .35em; }
.pub-item__title a { color: var(--ink); }
.pub-item__title a:hover { color: var(--brand); }
.pub-item__authors { display: flex; align-items: center; gap: 7px; font-size: .86rem; color: var(--ink-500); margin-bottom: .5em; }
.pub-item__authors .icon { color: var(--brand); }
.pub-item__excerpt { font-size: .92rem; color: var(--ink-500); margin: 0; }
.pub-item__actions { flex: none; display: flex; flex-direction: column; gap: 8px; }

/* ---------------------------------- 11. FAIXA CTA ------------------------ */
.cta-band { background: linear-gradient(135deg, var(--brand-700), var(--brand)); color: #fff; }
.cta-band__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 40px;
	padding: clamp(48px, 6vw, 76px) 0;
}
.cta-band__title { color: #fff; margin-bottom: .3em; }
.cta-band__text { max-width: 600px; }
.cta-band__text p { color: rgba(255, 255, 255, .85); margin: 0; }

/* ---------------------------------- 12. LÉXICO DA IA --------------------- */
/* Na home, o léxico reaproveita o layout de .area-card (ver seção "ÁREAS"). */
/* Página completa do léxico (archive-verbete). */
.section--narrow .prose { margin-inline: auto; }
.lexicon-list {
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: clamp(20px, 2.5vw, 30px); align-items: start;
}
.lexicon-entry {
	position: relative; scroll-margin-top: 100px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: clamp(28px, 4vw, 44px); padding-left: clamp(32px, 4vw, 52px);
	box-shadow: var(--shadow-sm);
}
.lexicon-entry::before {
	content: ''; position: absolute; top: clamp(28px, 4vw, 44px); bottom: clamp(28px, 4vw, 44px);
	left: 0; width: 4px; border-radius: 0 4px 4px 0; background: var(--brand);
}
.lexicon-entry__term {
	font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 0 0 .6em; line-height: 1.15;
}
.lexicon-entry__body { font-size: 1.04rem; color: var(--ink-700); }
.lexicon-entry__body p { margin: 0; }
.lexicon-entry__body > * + * { margin-top: 1.1em; }
.lexicon-empty { text-align: center; color: var(--ink-500); padding: 40px 0; }
.lexicon-back { margin-top: 48px; text-align: center; }

/* Página completa: coluna única de verbetes + sumário de temas lateral. */
.lexicon-layout { display: grid; gap: clamp(28px, 4vw, 56px); }
@media (min-width: 880px) {
	.lexicon-layout { grid-template-columns: 220px minmax(0, 1fr); align-items: start; }
}

/* Sumário de temas. */
@media (min-width: 880px) {
	.lexicon-toc { position: sticky; top: 96px; }
}
.lexicon-toc__label {
	font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
	color: var(--ink-500); font-weight: 600; margin: 0 0 12px;
}
.lexicon-toc__nav { display: flex; flex-direction: column; gap: 2px; }
.lexicon-toc__link {
	display: block; padding: 8px 12px; border-radius: 8px;
	font-size: .94rem; line-height: 1.3; color: var(--ink-700);
	text-decoration: none; border-left: 2px solid transparent;
	transition: color .15s ease, background .15s ease, border-color .15s ease;
}
.lexicon-toc__link:hover { background: var(--brand-50); color: var(--brand); }
.lexicon-toc__link.is-active {
	color: var(--brand); background: var(--brand-50);
	border-left-color: var(--brand); font-weight: 600;
}
@media (max-width: 879px) {
	/* No mobile o sumário vira uma faixa de chips. */
	.lexicon-toc__nav { flex-direction: row; flex-wrap: wrap; gap: 8px; }
	.lexicon-toc__link {
		border-left: 0; border: 1px solid var(--line); background: #fff;
		padding: 6px 13px; border-radius: 999px; font-size: .88rem;
	}
	.lexicon-toc__link.is-active { border-color: var(--brand); }
}

/* Grupos temáticos. */
.lexicon-group { scroll-margin-top: 90px; }
.lexicon-group + .lexicon-group { margin-top: clamp(40px, 6vw, 72px); }
.lexicon-group__title {
	font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.15;
	margin: 0 0 clamp(6px, 1.2vw, 14px);
}

/* Verbetes em coluna única (lista de definições). */
.lexicon-def {
	scroll-margin-top: 90px;
	padding: clamp(20px, 2.6vw, 28px) 0;
	border-top: 1px solid var(--line);
}
.lexicon-def:first-child { border-top: 0; }
.lexicon-def__term {
	font-size: clamp(1.1rem, 2vw, 1.32rem); line-height: 1.2;
	margin: 0 0 .4em; color: var(--ink);
}
.lexicon-def__body { font-size: 1.04rem; color: var(--ink-700); max-width: 68ch; }
.lexicon-def__body p { margin: 0; }
.lexicon-def__body > * + * { margin-top: 1em; }

/* ---------------------------------- 13. FORMULÁRIOS / NEWSLETTER --------- */
.section--newsletter { background: linear-gradient(150deg, #1c1a40, #2b2769); color: #fff; }
.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.newsletter__text .section__title { color: #fff; }
.newsletter__text p { color: rgba(255, 255, 255, .8); }
.newsletter__form {
	background: #fff; border-radius: var(--radius-lg); padding: 36px;
	box-shadow: var(--shadow-lg);
}
.form__field { margin-bottom: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.form input[type="text"], .form input[type="email"], .form textarea {
	width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
	padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; background: #fff;
	transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-100); }
.form textarea { resize: vertical; min-height: 130px; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 20px; }
.form__consent input { margin-top: 4px; flex: none; }
.form__consent span { font-family: var(--font-body); font-size: .84rem; color: var(--ink-500); font-weight: 400; }
.form--newsletter .btn { margin-top: 4px; }

.form-notice { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 11px; margin-bottom: 18px; font-size: .92rem; }
.form-notice--ok { background: rgba(31, 157, 107, .12); color: var(--ok); }
.form-notice--ok .icon { color: var(--ok); }
.form-notice--erro { background: rgba(217, 65, 95, .1); color: var(--err); }

.search-form { position: relative; display: flex; gap: 10px; }
.search-form__icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-300); pointer-events: none; }
.search-form__input {
	flex: 1; font-family: var(--font-body); font-size: 1rem; padding: 14px 16px 14px 46px;
	border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink);
}
.search-form__input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-100); }

/* ---------------------------------- 14. RODAPÉ --------------------------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .68); }
.footer-widgets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 56px 24px 0; }
.footer-main {
	display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px;
	padding-top: 72px; padding-bottom: 56px;
}
.footer-logo { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.footer-logo:hover { color: var(--accent); }
.footer-brand__text { margin: 18px 0 22px; font-size: .94rem; max-width: 360px; }
.footer-col__title { color: #fff; font-size: .96rem; font-family: var(--font-mono); letter-spacing: .03em; margin-bottom: 18px; }
.footer-menu { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-menu a { color: rgba(255, 255, 255, .68); font-size: .95rem; }
.footer-menu a:hover { color: #fff; }
.footer-contact__list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-contact__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .94rem; }
.footer-contact__list .icon { color: var(--brand); margin-top: 2px; flex: none; }
.footer-contact__list a { color: rgba(255, 255, 255, .68); }
.footer-contact__list a:hover { color: #fff; }

.social-links { display: flex; gap: 9px; }
.social-link {
	display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
	border-radius: 10px; background: rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .8);
	transition: all .2s var(--ease);
}
.social-link:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.social-links--newsletter { margin-top: 26px; }
.social-links--newsletter .social-link { background: rgba(255, 255, 255, .1); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 24px 24px; }
.footer-copyright { margin: 0; font-size: .86rem; }
.footer-legal { list-style: none; display: flex; gap: 20px; }
.footer-legal a { color: rgba(255, 255, 255, .68); font-size: .86rem; }
.footer-legal a:hover { color: #fff; }
.footer-credit { margin: 0; display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .8rem; color: rgba(255, 255, 255, .45); }
.footer-credit .icon { color: var(--brand); }

.footer-widgets .widget__title { color: #fff; font-size: 1rem; }
.footer-widgets a { color: rgba(255, 255, 255, .68); }

/* ---------------------------------- 15. PAGE HERO / BREADCRUMBS ---------- */
.page-hero { background: var(--bg-alt); padding: clamp(44px, 6vw, 76px) 0 clamp(40px, 5vw, 60px); border-bottom: 1px solid var(--line); }
.page-hero--accent { background: linear-gradient(150deg, #1c1a40, #2b2769); border-bottom: none; }
.page-hero--accent .page-hero__title, .page-hero--accent .breadcrumbs span { color: #fff; }
.page-hero--accent .page-hero__lead, .page-hero--accent .page-hero__authors { color: rgba(255, 255, 255, .8); }
.page-hero--accent .breadcrumbs a { color: rgba(255, 255, 255, .6); }
.page-hero--accent .breadcrumbs a:hover { color: #fff; }
.page-hero--accent .breadcrumbs__sep { color: rgba(255, 255, 255, .3); }
.page-hero--curso { background: linear-gradient(150deg, var(--brand-700), var(--brand)); }
.page-hero--curso .page-hero__title { color: #fff; }
.page-hero--curso .breadcrumbs a, .page-hero--curso .breadcrumbs span { color: rgba(255, 255, 255, .8); }
.page-hero__title { margin-bottom: .3em; max-width: 900px; }
.page-hero__title span { color: var(--brand); }
.page-hero__lead { font-size: 1.12rem; color: var(--ink-500); max-width: 680px; }
.page-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.page-hero__authors { display: flex; align-items: center; gap: 8px; font-size: 1rem; margin-top: 8px; }
.page-hero__search { margin-top: 24px; max-width: 540px; }

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; font-size: .85rem; font-family: var(--font-mono); }
.breadcrumbs a { color: var(--ink-500); }
.breadcrumbs span { color: var(--ink); }
.breadcrumbs__sep { color: var(--ink-300); }

/* ---------------------------------- 16. SINGLE --------------------------- */
.single-hero { background: var(--bg-alt); padding: clamp(44px, 6vw, 70px) 0 36px; border-bottom: 1px solid var(--line); }
.single-hero__inner { max-width: 820px; }
.single-hero__title { margin: 6px 0 .4em; }
.single-hero__lead { font-size: 1.2rem; color: var(--ink-500); margin-bottom: 1.4em; }
.single-hero__meta { display: flex; align-items: center; gap: 13px; }
.single-hero__avatar { border-radius: 50%; }
.single-hero__author { display: block; font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.single-hero__sub { display: block; font-size: .86rem; color: var(--ink-500); }

.single-feature { margin: -52px auto 0; position: relative; z-index: 1; }
.single-feature img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.single-feature--inline { margin: 0 0 32px; }
.single-feature--inline img { box-shadow: none; }

.prose { max-width: 760px; font-size: 1.08rem; color: var(--ink-700); }
.prose--page { margin-inline: auto; }
.prose > * + * { margin-top: 1.3em; }
.prose h2 { font-size: 1.7rem; margin-top: 1.8em; }
.prose h3 { font-size: 1.32rem; margin-top: 1.6em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--brand); }
.prose blockquote {
	margin: 1.6em 0; padding: 8px 0 8px 28px; border-left: 4px solid var(--brand);
	font-family: var(--font-head); font-size: 1.3rem; color: var(--ink); font-style: normal;
}
.prose img { border-radius: var(--radius-sm); }
.prose figcaption { font-size: .85rem; color: var(--ink-500); text-align: center; margin-top: 8px; }
.prose code { font-family: var(--font-mono); font-size: .9em; background: var(--brand-100); color: var(--brand-700); padding: 2px 7px; border-radius: 5px; }
.prose pre { background: var(--ink); color: #e8e8f5; padding: 22px; border-radius: var(--radius-sm); overflow-x: auto; }
.prose pre code { background: none; color: inherit; padding: 0; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--bg-alt); font-family: var(--font-head); }

.info-box { background: var(--brand-50); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.info-box--sticky { position: sticky; top: calc(var(--header-h) + 20px); }
.info-box__title { font-size: 1.08rem; margin-bottom: 16px; }
.info-box__list { margin: 0 0 18px; }
.info-box__list > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-box__list > div:last-child { border-bottom: none; }
.info-box__list dt { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .78rem; color: var(--ink-500); margin-bottom: 3px; }
.info-box__list dt .icon { color: var(--brand); }
.info-box__list dd { margin: 0; font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.info-box__note { font-size: .88rem; color: var(--ink-500); margin-bottom: 12px; }
.info-box .btn { margin-bottom: 10px; }
.info-box .btn:last-child { margin-bottom: 0; }

.team-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.team-list li { display: flex; align-items: center; gap: 9px; font-size: .94rem; }
.team-list .icon { color: var(--brand); flex: none; }

.timeline { margin-top: 56px; }
.timeline__heading { font-size: 1.5rem; margin-bottom: 28px; }
.timeline__list { list-style: none; position: relative; padding-left: 30px; }
.timeline__list::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline__item { position: relative; padding-bottom: 28px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
	content: ""; position: absolute; left: -30px; top: 5px; width: 16px; height: 16px;
	border-radius: 50%; background: #fff; border: 3px solid var(--brand);
}
.timeline__year { font-family: var(--font-mono); font-weight: 600; font-size: .82rem; color: var(--brand); }
.timeline__title { font-size: 1.12rem; margin: 4px 0 .3em; }
.timeline__body p { color: var(--ink-500); font-size: .96rem; margin: 0; }

.share-row { display: flex; align-items: center; gap: 10px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.share-row--compact { margin-top: 18px; padding-top: 18px; }
.share-row__label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-right: 4px; }

.author-box { display: flex; gap: 20px; background: var(--bg-alt); border-radius: var(--radius); padding: 28px; margin-top: 36px; }
.author-box img { border-radius: 50%; flex: none; }
.author-box__eyebrow { font-family: var(--font-mono); font-size: .76rem; color: var(--brand); }
.author-box__name { font-size: 1.2rem; margin: 4px 0 .4em; }
.author-box p { font-size: .95rem; color: var(--ink-500); margin: 0; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.post-nav__item {
	display: flex; flex-direction: column; gap: 6px; padding: 20px 22px;
	border: 1px solid var(--line); border-radius: var(--radius); transition: all .2s var(--ease);
}
.post-nav__item:hover { border-color: var(--brand); background: var(--brand-50); }
.post-nav__item--next { text-align: right; align-items: flex-end; }
.post-nav__dir { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .78rem; color: var(--brand); }
.post-nav__title { font-family: var(--font-head); font-weight: 600; color: var(--ink); }

.tags-row, .pills { }
.single .pills { margin-top: 28px; }

/* ---------------------------------- 17. EQUIPE --------------------------- */
.member { display: flex; flex-direction: column; }
.member__photo { aspect-ratio: 5 / 6; border-radius: var(--radius); overflow: hidden; background: var(--brand-100); margin-bottom: 16px; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.member:hover .member__photo img { transform: scale(1.04); }
.member__name { font-size: 1.12rem; margin-bottom: .15em; }
.member__role { font-family: var(--font-mono); font-size: .8rem; color: var(--brand); margin-bottom: .6em; }
.member__bio { font-size: .9rem; color: var(--ink-500); margin-bottom: .9em; }
.member__links { display: flex; gap: 8px; }
.member__links a {
	display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
	border-radius: 9px; background: var(--brand-50); color: var(--ink-500); transition: all .2s;
}
.member__links a:hover { background: var(--brand); color: #fff; }

/* ---------------------------------- 18. INSTITUCIONAL -------------------- */
.mvv__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; text-align: center; }
.mvv__icon {
	display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px;
	border-radius: 16px; background: var(--brand); color: #fff; margin-bottom: 18px;
}
.mvv__title { font-size: 1.3rem; }
.mvv__card p { color: var(--ink-500); font-size: .98rem; }

.transparency { display: flex; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.transparency__text { max-width: 620px; }
.transparency__text p { color: var(--ink-500); }
.transparency__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info__list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 28px 0; }
.contact-info__list li { display: flex; gap: 14px; }
.contact-info__icon {
	flex: none; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
	border-radius: 12px; background: var(--brand-100); color: var(--brand);
}
.contact-info__list strong { display: block; font-family: var(--font-head); }
.contact-info__social-label { display: block; font-family: var(--font-mono); font-size: .82rem; color: var(--ink-500); margin-bottom: 10px; }
.contact-info__social .social-link { background: var(--brand-50); color: var(--ink-500); }
.contact-info__social .social-link:hover { background: var(--brand); color: #fff; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.contact-form-wrap__title { font-size: 1.4rem; margin-bottom: 22px; }

/* ---------------------------------- 19. FILTROS / PAGINAÇÃO / WIDGETS ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 40px; }
.filter-bar__item {
	font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--ink-700);
	padding: 9px 17px; border-radius: 10px; border: 1.5px solid var(--line); background: #fff;
	transition: all .18s var(--ease);
}
.filter-bar__item:hover { border-color: var(--brand); color: var(--brand); }
.filter-bar__item.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.pagination { margin-top: 56px; }
.pagination__list { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.pagination__list .page-numbers {
	display: inline-flex; align-items: center; gap: 6px; min-width: 44px; height: 44px;
	padding: 0 14px; justify-content: center; border-radius: 11px; border: 1.5px solid var(--line);
	font-family: var(--font-head); font-weight: 600; color: var(--ink); background: #fff;
	transition: all .18s var(--ease);
}
.pagination__list a.page-numbers:hover { border-color: var(--brand); color: var(--brand); }
.pagination__list .page-numbers.current { background: var(--brand); border-color: var(--brand); color: #fff; }
.pagination__list .page-numbers.dots { border: none; }

.layout__sidebar { display: flex; flex-direction: column; gap: 20px; }
.widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.widget__title { font-size: 1.05rem; font-family: var(--font-head); margin-bottom: 16px; }
.widget--cta { background: var(--brand-50); }
.widget--cta p { font-size: .92rem; color: var(--ink-500); margin-bottom: 14px; }
.widget-posts { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.widget-posts__item { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.widget-posts__item:last-child { border-bottom: none; padding-bottom: 0; }
.widget-posts__date { display: block; font-family: var(--font-mono); font-size: .74rem; color: var(--brand); }
.widget-posts__title { display: block; font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--ink); }
.widget-posts__item a:hover .widget-posts__title { color: var(--brand); }
.widget-cats { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.widget-cats a { display: flex; justify-content: space-between; color: var(--ink-700); font-size: .94rem; }
.widget-cats a:hover { color: var(--brand); }
.widget select, .widget input { width: 100%; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; }

/* ---------------------------------- 20. ESTADOS -------------------------- */
.empty-state { text-align: center; max-width: 520px; margin: 60px auto; }
.empty-state__icon {
	display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px;
	border-radius: 50%; background: var(--brand-100); color: var(--brand); margin-bottom: 22px;
}
.empty-state__title { margin-bottom: .4em; }
.empty-state p { color: var(--ink-500); margin-bottom: 1.4em; }
.empty-state .search-form { margin-top: 20px; }

.error-404 { text-align: center; }
.error-404__inner { max-width: 600px; margin-inline: auto; }
.error-404__code { font-family: var(--font-mono); font-size: clamp(3.5rem, 12vw, 7rem); font-weight: 700; color: var(--brand); line-height: 1; }
.error-404__code span { color: var(--accent); }
.error-404__title { margin: 12px 0 .4em; }
.error-404__text { color: var(--ink-500); font-size: 1.1rem; }
.error-404__search { max-width: 460px; margin: 28px auto; }
.error-404__links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------- 21. LGPD / UI FLUTUANTE -------------- */
.cookie-banner {
	position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 300; max-width: 720px;
	margin-inline: auto; background: var(--ink); color: rgba(255, 255, 255, .82);
	border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-lg);
	display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
	transform: translateY(140%); transition: transform .4s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__text { flex: 1; min-width: 240px; font-size: .9rem; }
.cookie-banner__text a { color: var(--accent); }
.cookie-banner__actions { display: flex; gap: 10px; }

.to-top {
	position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 48px; height: 48px;
	border-radius: 50%; border: none; background: var(--brand); color: #fff;
	display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-700); }

/* Comentários */
.comments-area { max-width: 760px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--line); }
.comments-title, .comment-reply-title { font-size: 1.4rem; margin-bottom: 24px; }
.comment-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.comment-list .children { list-style: none; padding-left: 28px; margin-top: 24px; }
.comment-body { background: var(--bg-alt); border-radius: var(--radius); padding: 22px; }
.comment-author { display: flex; align-items: center; gap: 12px; }
.comment-author .avatar { border-radius: 50%; }
.comment-author .fn { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-style: normal; }
.comment-metadata { font-size: .8rem; color: var(--ink-500); }
.comment-content { margin-top: 12px; }
.comment-respond { margin-top: 32px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; font-family: inherit; margin-bottom: 14px;
}
.comment-form textarea { min-height: 130px; }

/* ---------------------------------- 22. REVEAL --------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	[data-reveal] { opacity: 1; transform: none; }
}

/* ---------------------------------- 23. RESPONSIVO ----------------------- */
@media (max-width: 1080px) {
	.lexicon-grid { grid-template-columns: repeat(2, 1fr); }
	.grid--4 { grid-template-columns: repeat(3, 1fr); }
	.footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
	.site-nav, .site-header__cta, .lang-switcher { display: none; }
	.icon-btn--menu { display: inline-flex; }
	.layout, .layout--reverse { grid-template-columns: 1fr; gap: 40px; }
	.layout--reverse .layout__sidebar { order: 0; }
	.info-box--sticky { position: static; }
	.about { grid-template-columns: 1fr; gap: 36px; }
	.newsletter { grid-template-columns: 1fr; gap: 32px; }
	.contact-grid { grid-template-columns: 1fr; gap: 36px; }
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
	.cta-band__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
	.section__head--row { flex-direction: column; align-items: flex-start; }
	.pub-item { flex-wrap: wrap; gap: 16px; }
	.pub-item__actions { flex-direction: row; width: 100%; }
	.pub-item__actions .btn { flex: 1; }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
	.lexicon-list { grid-template-columns: 1fr; }
	.footer-main, .footer-widgets { grid-template-columns: 1fr; gap: 32px; }
	.form__row { grid-template-columns: 1fr; }
	.post-nav { grid-template-columns: 1fr; }
	.post-nav__item--next { text-align: left; align-items: flex-start; }
	.hero { min-height: 78vh; padding: 80px 0; }
	.hero__actions .btn { flex: 1; justify-content: center; }
	.single-feature { margin-top: 0; }
	.single-feature img { border-radius: var(--radius-sm); }
	.footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
	.author-box { flex-direction: column; gap: 14px; }
	.section__head--row { gap: 16px; }
}

@media (max-width: 460px) {
	.container { padding-inline: 18px; }
	.newsletter__form, .contact-form-wrap { padding: 24px; }
	.cookie-banner { padding: 18px; }
	.cookie-banner__actions { width: 100%; }
	.cookie-banner__actions .btn { flex: 1; }
}
