/*
Theme Name: TecReparo
Theme URI: https://example.com/tecreparo
Author: TecReparo
Description: Tema WordPress técnico, rápido e responsivo para conteúdo de manutenção e eletrônica.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: tecreparo
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, news, electronics, responsive-layout, custom-logo, featured-images
*/

:root {
	--color-primary: #128cf5;
	--color-primary-hover: #0874d1;
	--color-dark: #07121d;
	--color-dark-secondary: #0d1b29;
	--color-text: #17202a;
	--color-muted: #687684;
	--color-border: #e4e9ee;
	--color-background: #f6f8fa;
	--color-white: #fff;
	--container-width: 1400px;
	--blue: var(--color-primary);
	--blue-dark: var(--color-primary-hover);
	--ink: var(--color-text);
	--muted: var(--color-muted);
	--dark: var(--color-dark);
	--dark-2: var(--color-dark-secondary);
	--dark-3: #142536;
	--pale: var(--color-background);
	--line: var(--color-border);
	--white: var(--color-white);
	--shadow: 0 3px 12px rgb(19 36 51 / 6%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--pale); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.5; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgb(18 140 245 / 42%); outline-offset: 3px; }
.site-container, .tr-container { width: min(calc(100% - 32px), var(--container-width)); margin-inline: auto; }
.tr-icon { flex: 0 0 auto; width: 1em; height: 1em; display: inline-block; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.screen-reader-text:focus { z-index: 1000; top: 12px; left: 12px; width: auto; height: auto; padding: 10px 14px; clip: auto; color: var(--dark); background: var(--white); box-shadow: var(--shadow); }

/* Header */
.site-header { position: relative; z-index: 20; color: var(--white); background: var(--dark); border-bottom: 1px solid rgb(255 255 255 / 8%); }
.site-header__inner { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.site-branding { flex: 0 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: #f6f9fc; }
.brand--image { display: block; line-height: 0; }.brand__image { width: 198px; height: auto; max-height: 66px; object-fit: contain; object-position: left center; }
.brand__mark { width: 50px; height: 50px; display: grid; place-items: center; color: var(--blue); filter: drop-shadow(0 3px 5px rgb(18 140 245 / 20%)); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__words { display: grid; line-height: 1; gap: 4px; }
.brand__words strong { font-size: 28px; letter-spacing: -1.4px; font-weight: 850; }
.brand__words strong b { color: var(--blue); font-weight: inherit; }
.brand__words small { font-size: 10px; color: #d5dee7; letter-spacing: .1px; }
.primary-navigation { margin-left: auto; }
.menu { margin: 0; padding: 0; display: flex; align-items: stretch; list-style: none; }
.menu > li > a { position: relative; min-height: 82px; display: grid; place-items: center; padding: 0 16px; color: #f1f5f8; font-size: 14px; font-weight: 750; text-transform: uppercase; }
.menu > li > a::after { content: ""; position: absolute; right: 16px; bottom: -1px; left: 16px; height: 3px; border-radius: 2px 2px 0 0; background: transparent; transition: background .15s ease; }
.menu > li.current-menu-item > a, .menu > li.current-menu-ancestor > a, .menu > li > a:hover { color: var(--blue); }
.menu > li.current-menu-item > a::after, .menu > li.current-menu-ancestor > a::after, .menu > li > a:hover::after { background: var(--blue); }
.menu .sub-menu { position: absolute; display: none; min-width: 190px; padding: 8px; list-style: none; background: var(--dark-2); border: 1px solid rgb(255 255 255 / 10%); box-shadow: 0 12px 24px rgb(0 0 0 / 20%); }
.menu li:hover > .sub-menu, .menu li:focus-within > .sub-menu { display: block; }
.menu .sub-menu a { display: block; padding: 8px 10px; font-size: 13px; }
.menu .sub-menu a:hover { color: var(--blue); }
.search-toggle, .menu-toggle { flex: 0 0 auto; color: var(--white); border: 0; background: transparent; }
.search-toggle { width: 28px; height: 40px; padding: 3px; display: grid; place-items: center; }
.search-toggle__icon { width: 21px; height: 21px; }
.search-toggle:hover { color: var(--blue); }
.menu-toggle { display: none; width: 42px; height: 38px; padding: 8px; }
.menu-toggle__icon { width: 25px; height: 25px; }
.site-search { border-top: 1px solid rgb(255 255 255 / 10%); background: var(--dark-2); }
.site-search__inner { min-height: 80px; display: flex; align-items: center; gap: 14px; }
.search-form { width: min(700px, 100%); display: flex; gap: 9px; }
.search-form label { flex: 1; }
.search-field { width: 100%; min-height: 42px; padding: 10px 13px; color: var(--ink); background: var(--white); border: 1px solid transparent; border-radius: 5px; outline: 0; }
.search-field:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(18 140 245 / 18%); }
.site-search__close { margin-left: auto; padding: 8px; color: var(--white); background: transparent; border: 0; line-height: 1; }
.site-search__close-icon { width: 23px; height: 23px; }

/* Hero */
.hero { position: relative; min-height: 410px; overflow: hidden; color: var(--white); background: #040b12; isolation: isolate; }
.hero__shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, #06111d 0%, #06111d 32%, rgb(6 17 29 / 94%) 44%, rgb(6 17 29 / 35%) 71%, rgb(6 17 29 / 70%) 100%); }
.hero__visual { position: absolute; z-index: -2; top: -70px; right: max(-40px, calc((100vw - var(--container-width)) / 2 - 85px)); width: 780px; height: 580px; overflow: hidden; background: radial-gradient(circle at 58% 58%, #3c514e 0 2%, transparent 2.2%), radial-gradient(circle at 44% 53%, #304044 0 2%, transparent 2.3%), linear-gradient(137deg, #17252b 2%, #0c171d 37%, #29393d 65%, #101d22); filter: saturate(.9) brightness(.9); transform: rotate(-2deg); }
.hero__visual::before { content: ""; position: absolute; inset: 82px 124px 90px 48px; opacity: .88; background-image: linear-gradient(90deg, rgb(108 138 132 / 24%) 1px, transparent 1px), linear-gradient(rgb(108 138 132 / 24%) 1px, transparent 1px), radial-gradient(circle, #667d72 0 2px, transparent 2.6px); background-size: 34px 34px, 34px 34px, 34px 34px; border: 18px solid #1d2929; box-shadow: inset 0 0 0 5px #192021, 0 0 0 16px rgb(12 21 25 / 72%); transform: perspective(350px) rotateX(8deg) rotateY(-6deg); }
.hero__visual::after { content: ""; position: absolute; width: 260px; height: 260px; left: 250px; top: 168px; border-radius: 12px; background: repeating-linear-gradient(0deg, transparent 0 12px, rgb(98 127 121 / 46%) 13px 14px), repeating-linear-gradient(90deg, transparent 0 12px, rgb(98 127 121 / 46%) 13px 14px), #162625; box-shadow: 0 0 0 14px #222d2d, 0 0 0 23px #0b1216; }
.hero__board { position: absolute; width: 95px; height: 83px; right: 230px; top: 258px; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; padding: 9px; background: #303c3b; border: 5px solid #455151; }
.hero__board span { background: #b29470; border: 2px solid #c5a67a; }
.hero__board b { position: absolute; inset: 20px; border: 3px solid #111a1d; }
.hero__meter { position: absolute; z-index: 3; right: 25px; top: 80px; width: 180px; height: 260px; padding: 33px 22px; color: #1b2525; background: linear-gradient(100deg, #cb7e10 0 15%, #f0a529 20% 88%, #b96a08 100%); border: 8px solid #554027; border-radius: 21px 24px 37px 38px; transform: rotate(7deg); box-shadow: 0 15px 20px rgb(0 0 0 / 45%); }
.hero__meter span { display: block; padding: 9px 5px; font-family: ui-monospace, monospace; font-size: 42px; line-height: 1; text-align: right; letter-spacing: -5px; background: #a6afb1; border-radius: 4px; box-shadow: inset 0 0 0 4px #657378; }
.hero__meter i { position: relative; z-index: 1; display: inline-block; width: 30px; height: 16px; margin: 24px 6px 0; border-radius: 50%; background: #302b29; }
.hero__meter i::after { content: ""; position: absolute; width: 8px; height: 8px; left: 11px; top: 4px; border-radius: 50%; background: #df2828; }
.hero__probe { position: absolute; z-index: 4; width: 220px; height: 13px; border-radius: 999px; box-shadow: 0 2px 5px rgb(0 0 0 / 50%); transform-origin: left center; }
.hero__probe::after { content: ""; position: absolute; right: -14px; top: 2px; width: 31px; height: 8px; background: #b5bdc2; clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 75%); }
.hero__probe--dark { left: 151px; top: 138px; background: #161b1e; transform: rotate(49deg); }
.hero__probe--red { left: 560px; top: 370px; background: #a92d2d; transform: rotate(-26deg); }
/* Foto fornecida para o cabeçalho: o degradê da camada seguinte preserva a leitura à esquerda. */
.hero__visual { top: 0; right: 0; width: min(60vw, 1000px); height: 100%; background: url("assets/images/hero-electronics.png") center 30% / cover no-repeat; filter: none; transform: none; }
.hero__visual::before, .hero__visual::after, .hero__visual > * { display: none; }
.hero__inner { position: relative; min-height: 410px; padding: 48px 0 22px; display: flex; flex-direction: column; }
.hero__content { width: min(570px, 54%); }
.eyebrow { margin: 0 0 15px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .9px; text-transform: uppercase; }
.eyebrow i { margin: 0 8px; color: #4a93d3; font-style: normal; }
.hero h1 { max-width: 640px; margin: 0; font-size: clamp(38px, 3.5vw, 54px); line-height: 1.13; letter-spacing: -1.9px; }
.hero__lead { max-width: 540px; margin: 19px 0 26px; color: #dce5ec; font-size: 17px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 45px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 17px; border: 1px solid transparent; border-radius: 5px; font-size: 12px; font-weight: 800; letter-spacing: .1px; text-transform: uppercase; transition: background .15s ease, border .15s ease, transform .15s ease; }
.button:hover { transform: translateY(-1px); }
.button--primary { color: var(--white); background: linear-gradient(135deg, #1497ff, #0879df); box-shadow: 0 4px 8px rgb(0 109 211 / 22%); }
.button--primary:hover { background: var(--blue-dark); }
.button--outline { color: var(--white); border-color: #b6c1c9; background: rgb(2 9 15 / 20%); }
.button--outline:hover { border-color: var(--blue); color: var(--blue); }
.hero-benefits { margin-top: 28px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); width: min(760px, 73%); gap: 25px; }
.hero-benefits > div { display: flex; align-items: flex-start; gap: 13px; }
.benefit-icon { flex: 0 0 auto; width: 27px; height: 27px; margin-top: 1px; color: #9fb3c8; }
.hero-benefits p { margin: 0; font-size: 13px; line-height: 1.35; }
.hero-benefits small { display: block; color: #e1e9ef; font-size: 13px; }

/* Category navigation */
.category-bar { position: relative; z-index: 3; margin-top: -1px; padding: 27px 0 30px; background: var(--white); }
.category-bar__inner { display: grid; grid-template-columns: repeat(6, 1fr); padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.category-link { min-width: 0; min-height: 76px; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-right: 1px solid var(--line); color: var(--blue); }
.category-link:last-child { border-right: 0; }
.category-link:hover { background: #f6fbff; }
.category-link__icon { flex: 0 0 auto; width: 29px; height: 29px; }
.category-link strong, .category-link small { display: block; white-space: nowrap; }
.category-link strong { font-size: 13px; font-weight: 800; }
.category-link--5 { gap: 9px; padding-inline: 11px; }.category-link--5 strong { font-size: 11px; letter-spacing: -.15px; }
.category-link small { margin-top: 2px; overflow: hidden; color: #5d6875; font-size: 11px; text-overflow: ellipsis; }

/* Home content and cards */
.home-content { display: grid; grid-template-columns: minmax(0, 1fr) 370px; align-items: start; gap: 36px; padding-top: 0; padding-bottom: 42px; }
.home-content__main { min-width: 0; }
.section-heading { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 20px; }
.section-heading h2, .sidebar-panel h2 { margin: 0; font-size: 17px; line-height: 1.2; font-weight: 850; letter-spacing: -.35px; text-transform: uppercase; }
.section-heading > a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.section-heading__icon { width: 16px; height: 16px; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.featured-card { min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 1px 4px rgb(11 28 43 / 3%); }
.featured-card__media { position: relative; display: block; width: calc(100% - 10px); margin: 5px 5px 0; aspect-ratio: 1.58 / 1; overflow: hidden; background: #122433; border-radius: 6px; }
.featured-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.featured-card:hover .featured-card__image { transform: scale(1.025); }
.category-badge { position: absolute; bottom: 5px; left: 5px; padding: 5px 8px; color: var(--white); background: var(--category-color, var(--blue)); border-radius: 3px; font-size: 9px; font-weight: 800; line-height: 1; text-transform: uppercase; }
.category-notebook { --category-color: #128cf5; }.category-desktop { --category-color: #2574cf; }.category-eletronica { --category-color: #7653c6; }.category-ferramentas { --category-color: #e46f16; }.category-esquemas-boardviews { --category-color: #157d9d; }.category-dicas-tecnicas { --category-color: #169b79; }.category-diagnostico { --category-color: #159b67; }.category-default { --category-color: var(--blue); }
.featured-card__content { padding: 15px 15px 16px; }
.featured-card h3 { margin: 0; font-size: 17px; line-height: 1.29; letter-spacing: -.25px; }
.featured-card h3 a:hover, .article-row h3 a:hover, .tool-item h3 a:hover { color: var(--blue); }
.featured-card p { min-height: 57px; margin: 10px 0 13px; color: #4e5b68; font-size: 14px; line-height: 1.45; }
.post-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; }.post-card__meta time, .article-row__meta time { color: #627081; font-size: 10px; }
.reading-time { display: inline-flex; align-items: center; gap: 6px; color: #627081; font-size: 11px; }
.reading-time__icon { width: 15px; height: 15px; }
.latest-posts { margin-top: 33px; }
.article-list { display: grid; gap: 7px; }
.article-row { display: grid; grid-template-columns: 205px minmax(0, 1fr); min-height: 118px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 7px; box-shadow: 0 1px 3px rgb(11 28 43 / 2%); }
.article-row__media { display: block; margin: 5px 0 5px 5px; overflow: hidden; background: #142536; border-radius: 6px; }
.article-row__image { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.article-row__content { min-width: 0; padding: 15px 18px 12px; }
.article-row h3 { margin: 0; font-size: 16px; line-height: 1.25; letter-spacing: -.2px; }
.article-row p { margin: 6px 0 8px; overflow: hidden; color: #5c6772; font-size: 14px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.article-row__meta { display: flex; align-items: center; gap: 20px; }
.article-row__meta time, .article-row .reading-time { font-size: 12px; }
.article-row__category { color: var(--category-color, var(--blue)); font-size: 12px; }
.button--more { display: flex; width: max-content; margin: 22px auto 0; min-width: 180px; color: var(--ink); background: var(--white); border-color: #cbd6df; }
.button__icon { width: 16px; height: 16px; }
.empty-posts { padding: 23px; text-align: center; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.empty-posts p { margin: 0; }
.archive-grid .empty-posts--archive { grid-column: 1 / -1; width: min(490px, 100%); min-height: 210px; display: grid; place-content: center; justify-items: center; gap: 9px; margin: 72px auto 44px; padding: 32px 24px; }.empty-posts--archive strong { color: var(--ink); }.empty-posts--archive .button--more { margin-top: 9px; }.empty-posts__icon { width: 31px; height: 31px; color: var(--blue); }

/* Post image fallback: a deliberately neutral electronic-board illustration */
.tr-placeholder { position: relative; display: block; overflow: hidden; background: linear-gradient(135deg, #17353d, #0d1b29 55%, #1b4551); }
.tr-placeholder::before, .tr-placeholder::after { content: ""; position: absolute; inset: 0; opacity: .65; background-image: linear-gradient(90deg, transparent 45%, #5f9897 46% 48%, transparent 49%), linear-gradient(0deg, transparent 42%, #5f9897 43% 45%, transparent 46%); background-size: 29px 23px; }
.tr-placeholder::after { opacity: .55; background: radial-gradient(circle at 24% 34%, #d1a257 0 3px, transparent 4px), radial-gradient(circle at 70% 58%, #d1a257 0 3px, transparent 4px); }
.tr-placeholder__chip { position: absolute; z-index: 1; left: 35%; top: 25%; width: 31%; height: 45%; border: 5px solid #192125; border-radius: 4px; background: repeating-linear-gradient(90deg, #162126 0 5px, #4b5d5c 5px 7px); box-shadow: 0 0 0 8px #374d4e; }
.tr-placeholder__circuit { position: absolute; z-index: 1; width: 68%; height: 2px; top: 40%; left: 0; background: #a97c37; box-shadow: 0 36px #a97c37, 82px -23px #a97c37; }
.tr-placeholder__label { position: absolute; z-index: 2; right: 9px; bottom: 8px; padding: 3px 5px; color: rgb(255 255 255 / 88%); background: rgb(7 18 29 / 72%); font-size: 9px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }

/* Sidebar */
.site-sidebar { display: grid; gap: 22px; }
.sidebar-panel { position: relative; overflow: hidden; padding: 23px 22px; color: var(--white); background: linear-gradient(145deg, #0e1c29, #07121d); border: 1px solid #1b2c3a; border-radius: 8px; box-shadow: 0 4px 12px rgb(6 18 29 / 10%); }
.sidebar-panel h2 { font-size: 15px; }
.recommended-tools__list { margin-top: 14px; border-top: 1px solid rgb(255 255 255 / 12%); }
.tool-item { display: grid; grid-template-columns: 69px minmax(0, 1fr); gap: 13px; padding: 13px 0; border-bottom: 1px solid rgb(255 255 255 / 12%); }
.tool-item:last-child { padding-bottom: 0; border-bottom: 0; }
.tool-item__image { height: 69px; overflow: hidden; border-radius: 4px; background: #34424c; }
.tool-item__thumb { width: 100%; height: 100%; object-fit: cover; }
.tool-item h3 { margin: 0 0 8px; font-size: 14px; line-height: 1.3; }
.tool-item__link { display: inline-flex; padding: 5px 9px; color: var(--white); background: var(--blue); border-radius: 3px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.tool-item__link:hover { background: var(--blue-dark); }
.sidebar-panel__empty { margin: 15px 0 0; color: #b5c1ca; font-size: 13px; }
.schemes-panel { min-height: 182px; }
.schemes-panel h2, .schemes-panel p, .schemes-panel .button { position: relative; z-index: 1; }
.schemes-panel p { max-width: 270px; margin: 15px 0 19px; color: #e0e7ed; font-size: 14px; line-height: 1.42; }
.schemes-panel .button { min-height: 40px; padding-inline: 14px; font-size: 10px; }
.schemes-panel__graphic { position: absolute; right: -14px; bottom: -25px; width: 147px; height: 137px; opacity: .45; background-image: linear-gradient(90deg, transparent 48%, #047f94 49% 51%, transparent 52%), linear-gradient(0deg, transparent 48%, #047f94 49% 51%, transparent 52%); background-size: 25px 20px; transform: rotate(-5deg); }
.schemes-panel__graphic span { position: absolute; width: 36px; height: 21px; border: 1px solid #048ba5; }
.schemes-panel__graphic span:nth-child(1) { left: 20px; top: 36px; }.schemes-panel__graphic span:nth-child(2) { right: 18px; top: 61px; }.schemes-panel__graphic span:nth-child(3) { left: 66px; bottom: 15px; }
.newsletter-panel p { margin: 15px 0 18px; color: #e0e7ed; font-size: 14px; line-height: 1.45; }
.newsletter-form { display: flex; }
.newsletter-form input { min-width: 0; flex: 1; height: 44px; padding: 0 12px; color: var(--ink); border: 0; border-radius: 4px 0 0 4px; outline: 0; font-size: 12px; }
.newsletter-form button { height: 44px; padding: 0 14px; color: var(--white); background: var(--blue); border: 0; border-radius: 0 4px 4px 0; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.newsletter-form button:hover { background: var(--blue-dark); }
.newsletter-panel small { display: block; margin-top: 12px; color: #aebbc5; font-size: 10px; }

/* Footer */
.site-footer { color: #eef4f8; background: linear-gradient(115deg, #07121d, #0a1723); }
.site-footer__inner { display: grid; grid-template-columns: 1.45fr 1.2fr 1.2fr 1fr; gap: 45px; padding-top: 37px; padding-bottom: 27px; }
.site-footer .brand__image { width: 168px; max-height: 57px; }.site-footer .brand__mark { width: 39px; height: 39px; }.site-footer .brand__words strong { font-size: 21px; }.site-footer .brand__words small { font-size: 8px; }
.footer-brand > p { max-width: 255px; margin: 20px 0 14px; color: #ccd6de; font-size: 12px; line-height: 1.55; }
.footer-socials { display: flex; gap: 15px; }.footer-socials a { width: 24px; height: 24px; display: grid; place-items: center; color: #cdd7de; border: 1px solid #72808c; border-radius: 50%; }.footer-socials .tr-icon { width: 13px; height: 13px; }.footer-socials a:hover { color: var(--blue); border-color: var(--blue); }
.site-footer h2 { margin: 7px 0 15px; font-size: 12px; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }.site-footer li { margin: 4px 0; }.site-footer li a, .footer-legal p { color: #ced8df; font-size: 12px; line-height: 1.45; }.site-footer li a:hover { color: var(--blue); }
.footer-legal p { margin: 0; }
.site-footer__bottom { padding: 15px 0; border-top: 1px solid rgb(255 255 255 / 9%); color: #acb9c3; font-size: 11px; text-align: center; }
.cookie-consent { position: fixed; z-index: 1000; left: 50%; bottom: max(20px, env(safe-area-inset-bottom)); width: min(680px, calc(100vw - 40px)); display: flex; align-items: center; gap: 14px; padding: 15px 16px; color: #e8f1f7; background: rgb(7 18 29 / 97%); border: 1px solid rgb(107 153 187 / 38%); border-radius: 10px; box-shadow: 0 14px 36px rgb(0 0 0 / 28%); transform: translateX(-50%); backdrop-filter: blur(10px); }.cookie-consent[hidden] { display: none; }.cookie-consent__icon { flex: 0 0 auto; display: grid; width: 33px; height: 33px; place-items: center; color: #55b2ff; background: rgb(18 140 245 / 12%); border-radius: 8px; }.cookie-consent__icon .tr-icon { width: 18px; height: 18px; }.cookie-consent__content { min-width: 0; flex: 1 1 auto; }.cookie-consent__content strong { display: block; margin-bottom: 3px; color: var(--white); font-size: 13px; }.cookie-consent__content p { margin: 0; color: #b9c9d5; font-size: 12px; line-height: 1.45; }.cookie-consent__content a { color: #67baff; text-decoration: underline; text-underline-offset: 2px; }.cookie-consent__actions { display: flex; flex: 0 0 auto; gap: 8px; }.cookie-consent__actions button { min-height: 34px; padding: 0 12px; border: 1px solid #778a98; border-radius: 5px; font: inherit; font-size: 11px; font-weight: 800; cursor: pointer; }.cookie-consent__reject { color: #e1eaf0; background: transparent; }.cookie-consent__accept { color: var(--white); background: var(--blue); border-color: var(--blue) !important; }.cookie-consent__actions button:hover, .cookie-consent__actions button:focus-visible { transform: translateY(-1px); filter: brightness(1.08); }

/* Generic internal page templates */
.page-hero { padding: 50px 0 44px; color: var(--white); background: linear-gradient(120deg, var(--dark), #102b42); }.page-hero .eyebrow { margin-bottom: 11px; }.page-hero h1 { max-width: 820px; margin: 0; font-size: clamp(33px, 4vw, 50px); line-height: 1.14; letter-spacing: -1.4px; }.page-hero p { max-width: 700px; margin: 12px 0 0; color: #d5e0e8; }
.institutional-hero { padding: 64px 0 58px; color: var(--white); background: radial-gradient(circle at 84% -28%, #185685 0, transparent 34%), linear-gradient(120deg, #07121d, #0c263b); }.institutional-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 13px; color: #4eb1ff; font-size: 11px; font-weight: 850; letter-spacing: .8px; text-transform: uppercase; }.institutional-hero__eyebrow .tr-icon { width: 17px; height: 17px; }.institutional-hero h1 { max-width: 780px; margin: 0; font-size: clamp(38px, 4vw, 54px); line-height: 1.1; letter-spacing: -1.8px; }.institutional-hero > .tr-container > p:last-child { max-width: 670px; margin: 17px 0 0; color: #d6e3ed; font-size: 17px; line-height: 1.65; }.institutional-page { max-width: 920px; padding-top: 42px; padding-bottom: 58px; }.institutional-page__content { position: relative; padding: 38px 52px 44px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }.institutional-page__marker { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 24px; color: var(--blue); background: #edf7ff; border-radius: 8px; }.institutional-page__marker .tr-icon { width: 23px; height: 23px; }.institutional-page__body { max-width: 720px; color: #3f4d59; font-size: 16px; line-height: 1.75; }.institutional-page__body > :first-child { margin-top: 0; }.institutional-page__body h2 { margin: 1.75em 0 .5em; color: var(--ink); font-size: 25px; line-height: 1.2; letter-spacing: -.55px; }.institutional-page__body h3 { margin: 1.5em 0 .5em; color: var(--ink); font-size: 18px; line-height: 1.25; }.institutional-page__body p { margin: 0 0 1.15em; }.institutional-page__body ul { display: grid; gap: 9px; margin: 0 0 1.3em; padding: 0; list-style: none; }.institutional-page__body li { position: relative; padding-left: 25px; }.institutional-page__body li::before { content: ""; position: absolute; top: .64em; left: 0; width: 8px; height: 8px; border: 2px solid var(--blue); border-radius: 50%; }.institutional-callout { margin: 26px 0; padding: 21px 23px; color: #40505e; background: #f4f9fd; border: 1px solid #dcecf8; border-left: 4px solid var(--blue); border-radius: 6px; }.institutional-callout h3 { margin-top: 0; }.institutional-callout p:last-child { margin-bottom: 0; }.institutional-contact-note { display: flex; align-items: flex-start; gap: 15px; margin-top: 20px; padding: 21px 24px; color: #dce9f3; background: linear-gradient(135deg, #10293c, #07121d); border-radius: 8px; box-shadow: var(--shadow); }.institutional-contact-note > .tr-icon { flex: 0 0 auto; width: 25px; height: 25px; color: var(--blue); }.institutional-contact-note h2 { margin: 0 0 5px; color: var(--white); font-size: 17px; }.institutional-contact-note p { margin: 0; font-size: 13px; line-height: 1.55; }
.tr-breadcrumbs { display: flex; margin: 0 0 16px; color: var(--muted); font-size: 11px; }.tr-breadcrumbs p { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0; }.tr-breadcrumbs a { color: #526574; }.tr-breadcrumbs a:hover { color: var(--blue); }.tr-breadcrumbs .separator { color: #9aa8b3; }
.content-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 370px; align-items: start; gap: 36px; padding-top: 38px; padding-bottom: 44px; }.content-wrap--single { width: min(calc(100% - 32px), 1226px); grid-template-columns: minmax(0, 820px) 370px; }.single-content { min-width: 0; }
.archive-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }.archive-grid .featured-card h3 { font-size: 18px; }
.pagination { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 26px; }.pagination .page-numbers { min-width: 38px; min-height: 38px; display: grid; place-items: center; padding: 7px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 4px; font-size: 13px; font-weight: 700; }.pagination .current, .pagination a:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }
article.single-post { padding: 34px 38px 30px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }.single-post__topline { display: flex; align-items: center; justify-content: space-between; gap: 15px; }.single-post__category, .single-post__type { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 850; letter-spacing: .45px; text-transform: uppercase; }.single-post__category { color: var(--blue); }.single-post__type { color: #718090; }.single-post__type .tr-icon { width: 15px; height: 15px; }article.single-post h1 { max-width: 760px; margin: 14px 0 17px; font-size: clamp(32px, 3.3vw, 46px); line-height: 1.1; letter-spacing: -1.6px; }.single-post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 19px; margin-bottom: 27px; padding-bottom: 20px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 12px; }.single-post__meta > span { display: inline-flex; align-items: center; gap: 6px; }.single-post__meta .tr-icon { width: 15px; height: 15px; color: var(--blue); }.single-post__featured { margin: 0 -38px 30px; }.single-post__featured img { width: 100%; max-height: 480px; object-fit: cover; }.single-post__content { font-size: 16px; line-height: 1.78; }.single-post__content > :first-child { margin-top: 0; }.single-post__content h2, .single-post__content h3 { margin-top: 1.7em; line-height: 1.2; }.single-post__content a { color: var(--blue); text-decoration: underline; }.single-post__content img { margin: 24px auto; }.single-post__content pre { max-width: 100%; overflow: auto; padding: 16px; color: #f3f8fa; background: var(--dark); border-radius: 6px; }.single-post__footer { display: flex; margin-top: 31px; padding-top: 20px; color: #536170; border-top: 1px solid var(--line); font-size: 12px; }.single-post__footer span { display: inline-flex; align-items: center; gap: 8px; }.single-post__footer .tr-icon { width: 18px; height: 18px; color: var(--blue); }

/* Related articles and native WordPress comments */
.related-posts, .comments-area { margin-top: 25px; padding: 28px 30px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }.related-posts__heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 20px; }.related-posts__eyebrow, .comments-area__heading > div > span { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .6px; text-transform: uppercase; }.related-posts__eyebrow .tr-icon { width: 14px; height: 14px; }.related-posts h2, .comments-area h2 { margin: 5px 0 0; font-size: 22px; line-height: 1.15; letter-spacing: -.5px; }.related-posts__heading > a { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }.related-posts__heading > a .tr-icon { width: 15px; height: 15px; }.related-posts__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }.related-post { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; }.related-post__image { display: block; aspect-ratio: 1.7 / 1; overflow: hidden; background: var(--dark-2); }.related-post__thumb { width: 100%; height: 100%; object-fit: cover; }.related-post > div { padding: 12px; }.related-post > div > span { color: var(--category-color, var(--blue)); font-size: 9px; font-weight: 800; text-transform: uppercase; }.related-post h3 { margin: 6px 0 8px; font-size: 14px; line-height: 1.3; letter-spacing: -.2px; }.related-post h3 a:hover { color: var(--blue); }.related-post p { display: inline-flex; align-items: center; gap: 5px; margin: 0; color: var(--muted); font-size: 10px; }.related-post p .tr-icon { width: 13px; height: 13px; }.related-posts__empty { margin: 0; padding: 19px; color: var(--muted); background: #f8fafb; border: 1px dashed #ccd6de; border-radius: 6px; font-size: 13px; text-align: center; }
.comments-area__heading { display: flex; align-items: center; gap: 13px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }.comments-area__icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); background: #edf7ff; border-radius: 8px; }.comments-area__icon .tr-icon { width: 21px; height: 21px; }.tr-comment-list, .tr-comment .children { margin: 0; padding: 0; list-style: none; }.tr-comment { padding: 20px 0; border-bottom: 1px solid var(--line); }.tr-comment .children { margin: 20px 0 0 54px; }.tr-comment__article { min-width: 0; }.tr-comment__author { display: flex; align-items: center; gap: 11px; }.tr-comment__avatar { width: 43px; height: 43px; border-radius: 50%; }.tr-comment__name { display: block; color: var(--ink); font-size: 13px; font-style: normal; font-weight: 800; }.tr-comment__date { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }.tr-comment__content { margin: 13px 0 8px 54px; color: #43515e; font-size: 14px; line-height: 1.6; }.tr-comment__content p { margin: 0; }.tr-comment__actions { margin-left: 54px; }.tr-comment__actions a { color: var(--blue); font-size: 11px; font-weight: 800; }.tr-comment__awaiting, .comments-closed { color: var(--muted); font-size: 12px; }.comment-respond { margin-top: 25px; padding: 23px; background: #f7fafc; border: 1px solid #e0e8ef; border-radius: 8px; }.comment-reply-title { margin: 0; font-size: 18px; letter-spacing: -.35px; }.comment-reply-title small { margin-left: 7px; font-size: 11px; font-weight: 600; }.comment-reply-title small a { color: var(--blue); }.comment-notes, .logged-in-as { margin: 6px 0 17px; color: var(--muted); font-size: 11px; }.comment-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }.comment-form p { margin: 0; }.comment-form-comment { grid-column: 1 / -1; }.comment-form label { display: block; margin-bottom: 6px; color: #40505f; font-size: 12px; font-weight: 750; }.comment-form input, .comment-form textarea { width: 100%; padding: 10px 11px; color: var(--ink); background: var(--white); border: 1px solid #cfd9e2; border-radius: 5px; outline: 0; font-size: 13px; }.comment-form textarea { min-height: 130px; resize: vertical; }.comment-form input:focus, .comment-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(18 140 245 / 12%); }.form-submit { grid-column: 1 / -1; }.form-submit .submit { min-height: 42px; padding: 9px 15px; color: var(--white); background: var(--blue); border: 1px solid var(--blue); border-radius: 5px; font-size: 11px; font-weight: 800; text-transform: uppercase; }.form-submit .submit:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.not-found { max-width: 720px; margin: 0 auto; padding: 83px 0 95px; text-align: center; }.not-found__number { margin: 0; color: var(--blue); font-size: clamp(92px, 16vw, 180px); font-weight: 900; line-height: .9; letter-spacing: -8px; }.not-found h1 { margin: 20px 0 10px; font-size: 28px; }.not-found p { margin: 0 auto 23px; color: var(--muted); }.not-found .search-form { margin: 0 auto; }

@media (max-width: 1150px) {
	.site-header__inner { gap: 14px; }.menu > li > a { padding-inline: 10px; font-size: 11px; }.menu > li > a::after { right: 10px; left: 10px; }
	.home-content, .content-wrap { grid-template-columns: minmax(0, 1fr) 330px; gap: 25px; }.featured-card h3 { font-size: 15px; }.featured-card__content { padding: 12px; }.featured-card p { min-height: 72px; font-size: 12px; }.article-row { grid-template-columns: 190px minmax(0, 1fr); }
	.category-link { padding-inline: 10px; gap: 8px; }.category-link small { display: none; }.category-link strong { white-space: normal; }
}

@media (max-width: 900px) {
	.site-header__inner { min-height: 71px; }.brand__image { width: 176px; max-height: 59px; }.brand__mark { width: 41px; height: 41px; }.brand__words strong { font-size: 23px; }
	.menu-toggle { display: block; margin-left: auto; }.primary-navigation { position: absolute; top: 100%; right: 0; left: 0; display: none; margin: 0; background: var(--dark-2); border-top: 1px solid rgb(255 255 255 / 9%); box-shadow: 0 10px 15px rgb(0 0 0 / 18%); }.primary-navigation.is-open { display: block; }.menu { display: block; padding: 8px 20px 15px; }.menu > li > a { min-height: 42px; display: flex; padding: 0; font-size: 12px; }.menu > li > a::after { display: none; }.menu .sub-menu { position: static; padding: 0 0 0 15px; background: transparent; border: 0; box-shadow: none; }
	.hero { min-height: 453px; }.hero__inner { min-height: 453px; padding-top: 67px; }.hero__content { width: 60%; }.hero__visual { right: -330px; width: 790px; }.hero__shade { background: linear-gradient(90deg, #06111d 0%, rgb(6 17 29 / 97%) 48%, rgb(6 17 29 / 62%) 85%, rgb(6 17 29 / 85%)); }.hero-benefits { width: 100%; gap: 14px; }.hero-benefits p, .hero-benefits small { font-size: 10px; }.benefit-icon { font-size: 23px; }
	.category-bar { padding: 20px 0; }.category-bar__inner { grid-template-columns: repeat(3, 1fr); }.category-link { border-bottom: 1px solid var(--line); }.category-link:nth-child(3n) { border-right: 0; }.category-link:nth-last-child(-n+3) { border-bottom: 0; }.category-link small { display: block; }
	.home-content, .content-wrap, .content-wrap--single { grid-template-columns: 1fr; }.site-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }.newsletter-panel { grid-column: 1 / -1; }.featured-grid { gap: 12px; }.article-row { grid-template-columns: 180px minmax(0, 1fr); }.site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }.footer-legal { grid-column: 2 / 4; }
	.archive-grid .empty-posts--archive { margin-top: 0; }
}

@media (max-width: 620px) {
	body { font-size: 14px; }.site-header__inner { min-height: 66px; }.brand__image { width: 150px; max-height: 50px; }.brand__mark { width: 37px; height: 37px; }.brand__words strong { font-size: 21px; }.brand__words small { font-size: 8px; }.search-toggle { width: 25px; }.site-search__inner { min-height: 70px; }.search-form { flex-wrap: wrap; }.search-form .button { width: 100%; }.site-search__close { align-self: flex-start; padding-top: 14px; }
	.hero { min-height: auto; }.hero__inner { min-height: 0; padding: 48px 0 25px; }.hero__visual { top: 25px; right: -390px; width: 680px; height: 470px; opacity: .72; }.hero__shade { background: linear-gradient(90deg, #06111d 0%, rgb(6 17 29 / 94%) 61%, rgb(6 17 29 / 74%)); }.hero__content { width: 100%; }.eyebrow { font-size: 10px; }.hero h1 { max-width: 380px; font-size: 37px; letter-spacing: -1.45px; }.hero__lead { max-width: 350px; margin: 15px 0 22px; font-size: 14px; line-height: 1.6; }.hero__actions { gap: 10px; }.button { min-height: 42px; padding-inline: 13px; font-size: 10px; }.hero-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; margin-top: 42px; gap: 16px 10px; }.hero-benefits > div { gap: 8px; }.benefit-icon { font-size: 20px; }.hero-benefits p, .hero-benefits small { font-size: 10px; }
	.category-bar { padding: 16px 0; }.category-bar__inner { display: flex; overflow-x: auto; border-radius: 6px; scrollbar-width: none; }.category-bar__inner::-webkit-scrollbar { display: none; }.category-link { flex: 0 0 150px; min-height: 65px; padding: 10px; border-bottom: 0; border-right: 1px solid var(--line); }.category-link__icon { width: 24px; height: 24px; }.category-link strong { font-size: 11px; }.category-link small { display: none; }
	.home-content { gap: 26px; padding-bottom: 28px; }.section-heading { margin-bottom: 15px; }.section-heading h2, .sidebar-panel h2 { font-size: 15px; }.featured-grid { grid-template-columns: 1fr; gap: 14px; }.featured-card__media { aspect-ratio: 1.82 / 1; }.featured-card h3 { font-size: 17px; }.featured-card p { min-height: 0; }.latest-posts { margin-top: 28px; }.article-row { grid-template-columns: 112px minmax(0, 1fr); min-height: 100px; }.article-row__image { min-height: 0; }.article-row__content { padding: 10px 11px 8px; }.article-row h3 { font-size: 13px; }.article-row p { margin-top: 4px; font-size: 11px; }.article-row__meta { gap: 10px; }.article-row__category { font-size: 10px; }.reading-time { font-size: 10px; }
	.site-sidebar { grid-template-columns: 1fr; gap: 16px; }.newsletter-panel { grid-column: auto; }.sidebar-panel { padding: 20px 17px; }.tool-item { grid-template-columns: 62px minmax(0, 1fr); }.tool-item__image { height: 62px; }.site-footer__inner { grid-template-columns: 1fr 1fr; gap: 25px 18px; padding-top: 29px; }.footer-brand { grid-column: 1 / -1; }.footer-legal { grid-column: 1 / -1; }.footer-brand > p { margin: 14px 0; }.site-footer__bottom { font-size: 10px; }
	.cookie-consent { left: 50%; bottom: 14px; width: calc(100vw - 28px); align-items: flex-start; flex-wrap: wrap; gap: 10px; padding: 13px; }.cookie-consent__icon { width: 30px; height: 30px; }.cookie-consent__content { flex-basis: calc(100% - 40px); }.cookie-consent__actions { width: 100%; padding-left: 40px; }.cookie-consent__actions button { flex: 1 1 50%; }
	.page-hero { padding: 35px 0; }.institutional-hero { padding: 46px 0 42px; }.institutional-hero > .tr-container > p:last-child { font-size: 15px; }.institutional-page { padding-top: 26px; padding-bottom: 35px; }.institutional-page__content { padding: 27px 20px 31px; }.institutional-page__marker { width: 42px; height: 42px; margin-bottom: 20px; }.institutional-page__body { font-size: 15px; }.institutional-page__body h2 { font-size: 22px; }.institutional-contact-note { padding: 19px; }.content-wrap { padding-top: 25px; padding-bottom: 28px; }.archive-grid { grid-template-columns: 1fr; }article.single-post { padding: 24px 17px 26px; }.single-post__topline { align-items: flex-start; }.single-post__type { font-size: 9px; }.single-post__meta { gap: 8px 13px; margin-bottom: 22px; padding-bottom: 16px; font-size: 11px; }.single-post__featured { margin: 0 -17px 22px; }.single-post__content { font-size: 15px; }.related-posts, .comments-area { margin-top: 18px; padding: 22px 17px; }.related-posts__heading { align-items: flex-start; }.related-posts h2, .comments-area h2 { font-size: 19px; }.related-posts__grid { grid-template-columns: 1fr; }.related-post { display: grid; grid-template-columns: 104px minmax(0, 1fr); }.related-post__image { aspect-ratio: auto; min-height: 100%; }.related-post h3 { font-size: 13px; }.comments-area__heading { padding-bottom: 17px; }.comment-respond { padding: 17px; }.comment-form { grid-template-columns: 1fr; }.comment-form-comment, .form-submit { grid-column: auto; }.not-found { padding: 55px 0 65px; }
}

.comment-form-cookies-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 8px; }.comment-form .comment-form-cookies-consent input { width: auto; margin: 3px 0 0; padding: 0; }.comment-form .comment-form-cookies-consent label { margin: 0; color: var(--muted); font-size: 11px; font-weight: 500; line-height: 1.4; }
