@charset "UTF-8";
/*
Theme Name: AGD Aureon
Theme URI: https://aprendaganhardinheiro.com.br/
Author: Canal Legal
Author URI: https://aprendaganhardinheiro.com.br/
Description: Tema original, leve e configurável para blogs, portais de conteúdo, afiliados, landing pages e WooCommerce.
Version: 1.1.0
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agd-aureon
Tags: blog, news, e-commerce, two-columns, left-sidebar, right-sidebar, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready, block-styles, wide-blocks
*/

:root {
  --accent: #6d4aff;
  --accent-2: #00b894;
  --accent-rgb: 109, 74, 255;
  --header-bg: #ffffff;
  --container: 1200px;
  --radius: 18px;
  --hero-overlay: .58;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef1f7;
  --text: #182033;
  --heading: #111827;
  --muted: #687083;
  --border: #e3e7ef;
  --shadow-sm: 0 8px 30px rgba(18, 28, 45, .06);
  --shadow-md: 0 20px 55px rgba(18, 28, 45, .12);
  --success: #00a878;
  --danger: #e74c3c;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 180ms ease;
}

html[data-theme="dark"] {
  --bg: #0c1020;
  --surface: #141a2b;
  --surface-2: #1a2236;
  --text: #dce2ee;
  --heading: #ffffff;
  --muted: #9ba6ba;
  --border: #263149;
  --header-bg: #101626;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, .22);
  --shadow-md: 0 22px 60px rgba(0, 0, 0, .35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-is-open, body.search-is-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition), opacity var(--transition), transform var(--transition); }
a:hover { color: var(--accent-2); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
  margin: 0 0 .65em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4.6rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1.25em; }
ul, ol { padding-left: 1.3em; }
blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.5rem 1.4rem 1.8rem;
  border-left: 5px solid var(--accent);
  background: var(--surface-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.08em;
}
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
pre { max-width: 100%; overflow: auto; padding: 1.25rem; background: #0d1321; color: #e7edf7; border-radius: 14px; }
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
th, td { border: 1px solid var(--border); padding: .8rem; text-align: left; }
th { background: var(--surface-2); color: var(--heading); }
hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }
::selection { background: rgba(var(--accent-rgb), .22); color: var(--heading); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow-container { width: min(calc(100% - 40px), 930px); margin-inline: auto; }
.site-main { min-height: 55vh; }
.card-surface { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto !important; clip-path: none; display: block; height: auto; left: 8px; top: 8px; width: auto;
  padding: 12px 18px; z-index: 100000; background: var(--surface); color: var(--heading); border-radius: 8px; box-shadow: var(--shadow-md);
}
.skip-link { position: fixed !important; }

.button, .wp-element-button, .wp-block-button__link {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .78rem 1.25rem; border: 1px solid transparent; border-radius: 999px;
  font-weight: 750; line-height: 1.1; text-decoration: none; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.button:hover, .wp-element-button:hover, .wp-block-button__link:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--accent), #825dff); color: #fff; box-shadow: 0 12px 26px rgba(var(--accent-rgb), .25); }
.button-primary:hover { color: #fff; box-shadow: 0 16px 34px rgba(var(--accent-rgb), .34); }
.button-secondary { background: var(--surface); color: var(--heading); border-color: var(--border); }
.button-light { background: #fff; color: #161d2f; box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.button-light:hover { color: var(--accent); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { color: #fff; background: rgba(255,255,255,.16); }
.icon-button {
  display: inline-flex; width: 42px; height: 42px; padding: 0; align-items: center; justify-content: center;
  background: transparent; color: var(--heading); border: 1px solid var(--border); border-radius: 50%; transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.icon-button:hover { background: var(--surface-2); color: var(--accent); border-color: rgba(var(--accent-rgb), .3); transform: translateY(-1px); }
.icon { flex: 0 0 auto; }

/* Announcement */
.announcement-bar { position: relative; z-index: 1000; background: linear-gradient(100deg, #10182b, var(--accent) 55%, #00a77d); color: #fff; }
.announcement-inner { min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 1.25rem; padding-block: 7px; }
.announcement-inner p { margin: 0; font-size: .9rem; font-weight: 650; text-align: center; }
.announcement-cta { display: inline-flex; align-items: center; gap: .4rem; padding: .48rem .85rem; border-radius: 999px; background: rgba(255,255,255,.15); color: #fff; font-size: .82rem; font-weight: 800; white-space: nowrap; }
.announcement-cta:hover { color: #fff; background: rgba(255,255,255,.24); }
.countdown { display: flex; align-items: center; gap: .35rem; }
.countdown > span { min-width: 42px; padding: .23rem .35rem; border-radius: 8px; background: rgba(5, 10, 20, .55); text-align: center; line-height: 1; }
.countdown strong { display: block; font-size: .85rem; color: #fff; }
.countdown small { display: block; margin-top: 2px; color: rgba(255,255,255,.72); font-size: .58rem; text-transform: uppercase; }
.announcement-bottom { position: fixed; inset: auto 0 0; z-index: 9999; box-shadow: 0 -10px 30px rgba(0,0,0,.18); }

/* Header */
.site-header { position: relative; z-index: 900; background: var(--header-bg); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition), background var(--transition); }
.has-sticky-header .site-header { position: sticky; top: 0; }
.admin-bar.has-sticky-header .site-header { top: 32px; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(18, 28, 45, .08); }
.header-inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; }
.site-branding { min-width: 180px; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: auto; max-height: 56px; }
.text-logo { display: inline-flex; align-items: center; gap: .7rem; color: var(--heading); }
.logo-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-size: 1.2rem; font-weight: 900; box-shadow: 0 10px 24px rgba(var(--accent-rgb), .25); }
.text-logo strong { display: block; font-size: 1.18rem; line-height: 1.1; }
.text-logo small { display: block; margin-top: 3px; max-width: 220px; color: var(--muted); font-size: .65rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.primary-navigation { justify-self: center; }
.primary-menu, .secondary-menu, .footer-menu, .bio-menu { list-style: none; margin: 0; padding: 0; }
.primary-menu { display: flex; align-items: center; gap: .25rem; }
.primary-menu > li { position: relative; }
.primary-menu > li > a { display: flex; align-items: center; min-height: 44px; padding: .6rem .78rem; color: var(--heading); font-size: .9rem; font-weight: 700; border-radius: 10px; }
.primary-menu > li > a:hover, .primary-menu > .current-menu-item > a, .primary-menu > .current-menu-ancestor > a { color: var(--accent); background: rgba(var(--accent-rgb), .07); }
.primary-menu .sub-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px; list-style: none; margin: 0; padding: .6rem; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
.primary-menu li:hover > .sub-menu, .primary-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu .sub-menu a { display: block; padding: .65rem .75rem; color: var(--text); font-size: .88rem; font-weight: 650; border-radius: 8px; }
.primary-menu .sub-menu a:hover { color: var(--accent); background: var(--surface-2); }
.primary-menu .sub-menu .sub-menu { top: 0; left: calc(100% + 8px); }
.submenu-toggle { display: none; }
.header-actions { display: flex; align-items: center; gap: .45rem; }
.menu-toggle { display: none; }
.menu-icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-close { display: inline-flex; }
.theme-icon-sun { display: none; }
html[data-theme="dark"] .theme-icon-sun { display: inline-flex; }
html[data-theme="dark"] .theme-icon-moon { display: none; }
.cart-button { position: relative; }
.cart-count { position: absolute; top: -5px; right: -5px; min-width: 19px; height: 19px; padding: 0 4px; display: grid; place-items: center; border-radius: 999px; background: var(--accent); color: #fff; font-size: .63rem; font-weight: 800; }
.secondary-navigation { border-top: 1px solid var(--border); background: var(--surface); }
.secondary-navigation .container { overflow-x: auto; scrollbar-width: none; }
.secondary-navigation .container::-webkit-scrollbar { display: none; }
.secondary-menu { min-height: 40px; display: flex; align-items: center; justify-content: center; gap: 1.4rem; white-space: nowrap; }
.secondary-menu a { color: var(--muted); font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .055em; }
.secondary-menu a:hover { color: var(--accent); }

/* Search overlay */
.search-panel { position: fixed; inset: 0; z-index: 99999; display: grid; place-items: center; padding: 24px; background: rgba(8, 12, 24, .76); backdrop-filter: blur(12px); opacity: 0; visibility: hidden; transition: opacity 220ms ease, visibility 220ms ease; }
.search-panel.is-open { opacity: 1; visibility: visible; }
.search-panel-inner { position: relative; width: min(760px, 100%); padding: clamp(2rem, 6vw, 4.5rem); background: var(--surface); border: 1px solid var(--border); border-radius: 28px; box-shadow: var(--shadow-md); transform: translateY(18px); transition: transform 220ms ease; }
.search-panel.is-open .search-panel-inner { transform: translateY(0); }
.search-close { position: absolute; top: 18px; right: 18px; }
.search-kicker { margin: 0 0 1.2rem; color: var(--heading); font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -.025em; }
.search-form { display: flex; align-items: stretch; gap: .65rem; }
.search-field { min-width: 0; flex: 1; min-height: 52px; padding: .8rem 1rem; background: var(--bg); color: var(--text); border: 1px solid var(--border); border-radius: 13px; outline: none; }
.search-field:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12); }
.search-submit { min-height: 52px; display: inline-flex; align-items: center; gap: .45rem; padding: .7rem 1.1rem; background: var(--accent); color: #fff; border: 0; border-radius: 13px; font-weight: 750; }
.search-submit:hover { background: var(--accent-2); }

/* Advertising */
.ad-zone { text-align: center; }
.ad-zone .widget { margin: 0; padding: 0; background: transparent; border: 0; box-shadow: none; }
.ad-zone .widget-title { display: none; }
.ad-zone-header { padding-block: 20px; }
.ad-zone-home { margin: 2.2rem 0; }
.ad-zone-post { margin: 2rem 0; padding: 1rem; background: var(--surface-2); border-radius: 14px; }

/* Hero */
.home-hero { position: relative; overflow: hidden; min-height: 610px; display: flex; align-items: center; background: linear-gradient(120deg, #111a32 0%, #1c2450 48%, #123c3c 100%); color: #fff; isolation: isolate; }
.home-hero.has-image { background-size: cover; background-position: center; }
.home-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(105deg, rgba(9,13,29,.93), rgba(18,25,53,var(--hero-overlay)) 60%, rgba(0,50,47,.62)); }
.hero-background { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-background span { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .45; }
.hero-background span:nth-child(1) { width: 380px; height: 380px; top: -190px; right: 12%; background: radial-gradient(circle, rgba(109,74,255,.65), transparent 68%); }
.hero-background span:nth-child(2) { width: 330px; height: 330px; bottom: -170px; left: 5%; background: radial-gradient(circle, rgba(0,184,148,.55), transparent 68%); }
.hero-background span:nth-child(3) { width: 1px; height: 100%; left: 50%; background: linear-gradient(transparent, rgba(255,255,255,.12), transparent); }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: clamp(3rem, 8vw, 7rem); padding-block: 90px; }
.hero-copy { max-width: 700px; }
.hero-kicker, .section-kicker, .newsletter-kicker { display: inline-block; margin-bottom: .9rem; color: #67e8c7; font-size: .74rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero-copy h1 { max-width: 760px; margin-bottom: 1.25rem; color: #fff; font-size: clamp(2.6rem, 5vw, 5.25rem); }
.hero-copy > p { max-width: 650px; margin-bottom: 1.8rem; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: 1.8rem; color: rgba(255,255,255,.7); font-size: .8rem; font-weight: 650; }
.hero-trust span:first-child { color: #f6c744; }
.hero-visual { position: relative; min-height: 410px; display: grid; place-items: center; perspective: 1000px; }
.hero-visual::before { content: ""; position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(109,74,255,.28), transparent 62%); filter: blur(2px); }
.visual-card { position: absolute; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.07)); backdrop-filter: blur(18px); box-shadow: 0 35px 80px rgba(0,0,0,.3); }
.visual-card-main { width: min(420px, 88%); min-height: 290px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; border-radius: 28px; transform: rotateY(-9deg) rotateX(4deg); }
.visual-card-main::before { content: ""; position: absolute; inset: 18px 18px auto auto; width: 105px; height: 105px; border-radius: 24px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); opacity: .85; }
.visual-label { color: #67e8c7; font-size: .68rem; font-weight: 850; letter-spacing: .14em; }
.visual-card-main strong { position: relative; max-width: 310px; margin-top: .7rem; color: #fff; font-size: 1.65rem; line-height: 1.2; }
.visual-lines { display: grid; gap: 8px; margin-top: 1.4rem; }
.visual-lines i { display: block; height: 7px; border-radius: 999px; background: rgba(255,255,255,.18); }
.visual-lines i:nth-child(1) { width: 88%; }
.visual-lines i:nth-child(2) { width: 72%; }
.visual-lines i:nth-child(3) { width: 55%; }
.visual-card-small { right: -2%; bottom: 15%; width: 185px; padding: 1rem 1.1rem; border-radius: 18px; transform: rotate(4deg); }
.visual-card-small strong, .visual-card-small small { display: block; color: #fff; }
.visual-card-small strong { margin: .5rem 0 .1rem; }
.visual-card-small small { color: rgba(255,255,255,.65); }
.pulse-dot { display: block; width: 12px; height: 12px; border-radius: 50%; background: #62f1c3; box-shadow: 0 0 0 7px rgba(98,241,195,.13); }

/* Home */
.home-main { padding-bottom: 4.5rem; }
.home-page-content { margin-top: 3rem; }
.home-page-content .card-surface { padding: clamp(1.5rem, 4vw, 3rem); }
.featured-section { padding-top: clamp(3.2rem, 7vw, 6rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.section-heading .section-kicker { margin-bottom: .35rem; color: var(--accent); }
.section-heading h2 { margin: 0; }
.section-heading > a { display: inline-flex; align-items: center; gap: .4rem; flex: 0 0 auto; color: var(--muted); font-size: .85rem; font-weight: 750; }
.section-heading > a:hover { color: var(--accent); }
.featured-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(330px, .8fr); gap: 1.3rem; }
.featured-main, .featured-compact, .post-card { overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.featured-main:hover, .featured-compact:hover, .post-card:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb), .24); box-shadow: var(--shadow-md); }
.featured-media { display: block; aspect-ratio: 16 / 8.3; overflow: hidden; background: var(--surface-2); }
.featured-media img, .post-card-media img, .compact-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 480ms ease; }
.featured-main:hover .featured-media img, .post-card:hover .post-card-media img, .featured-compact:hover .compact-media img { transform: scale(1.045); }
.featured-content { padding: clamp(1.25rem, 3vw, 2rem); }
.featured-content h2 { margin: .55rem 0 .8rem; font-size: clamp(1.5rem, 2.8vw, 2.35rem); }
.featured-content h2 a, .post-card-title a, .featured-compact h3 a { color: var(--heading); }
.featured-content h2 a:hover, .post-card-title a:hover, .featured-compact h3 a:hover { color: var(--accent); }
.featured-content p { margin: 1rem 0 0; color: var(--muted); }
.featured-list { display: grid; gap: 1rem; }
.featured-compact { display: grid; grid-template-columns: 132px minmax(0, 1fr); align-items: center; min-height: 112px; padding: .65rem; }
.compact-media { height: 100%; min-height: 92px; overflow: hidden; border-radius: 12px; background: var(--surface-2); }
.featured-compact > div { min-width: 0; padding: .25rem .55rem .25rem .85rem; }
.featured-compact .category-badge { padding: .2rem .45rem; font-size: .58rem; }
.featured-compact h3 { margin: .42rem 0 .35rem; font-size: 1rem; line-height: 1.25; }
.featured-compact time { color: var(--muted); font-size: .72rem; }
.category-badge { display: inline-flex; align-items: center; width: max-content; padding: .28rem .6rem; border-radius: 999px; background: rgba(var(--accent-rgb), .1); color: var(--accent); font-size: .68rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.category-badge:hover { background: var(--accent); color: #fff; }
.newsletter-box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr minmax(300px, .85fr); align-items: center; gap: 2rem; margin: clamp(3rem, 7vw, 5.5rem) 0; padding: clamp(2rem, 5vw, 4rem); border-radius: calc(var(--radius) + 8px); background: linear-gradient(120deg, #171f3d, var(--accent) 60%, #079b7c); color: #fff; box-shadow: 0 28px 65px rgba(var(--accent-rgb), .25); }
.newsletter-box::after { content: ""; position: absolute; width: 260px; height: 260px; right: -100px; top: -120px; border-radius: 50%; border: 45px solid rgba(255,255,255,.08); }
.newsletter-copy, .newsletter-form, .newsletter-box > .button { position: relative; z-index: 1; }
.newsletter-kicker { color: #7ef0cf; }
.newsletter-copy h2 { margin-bottom: .65rem; color: #fff; }
.newsletter-copy p { margin: 0; color: rgba(255,255,255,.72); }
.newsletter-form { display: flex; gap: .65rem; padding: .45rem; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; backdrop-filter: blur(10px); }
.newsletter-form input { min-width: 0; flex: 1; min-height: 48px; padding: .7rem .85rem; background: #fff; color: #141a2b; border: 0; border-radius: 11px; outline: none; }
.newsletter-form button { min-height: 48px; display: inline-flex; align-items: center; gap: .4rem; padding: .7rem 1rem; background: #0d1528; color: #fff; border: 0; border-radius: 11px; font-weight: 800; white-space: nowrap; }
.newsletter-box > .button { justify-self: start; }
.home-content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 315px; align-items: start; gap: 2rem; }
.home-sections { min-width: 0; }
.content-section { margin-bottom: 3.8rem; }
.posts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.post-card { min-width: 0; }
.post-card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.post-placeholder { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, rgba(var(--accent-rgb), .18), rgba(0,184,148,.16)); }
.post-placeholder span { display: grid; place-items: center; width: 78px; height: 78px; border-radius: 24px; background: var(--surface); color: var(--accent); font-size: 2.2rem; font-weight: 900; box-shadow: var(--shadow-sm); }
.post-card-body { padding: 1.2rem; }
.post-card-title { margin: .65rem 0 .7rem; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.post-card-excerpt { color: var(--muted); font-size: .92rem; }
.post-card-excerpt p { margin-bottom: .8rem; }
.read-more { display: inline-flex; align-items: center; gap: .42rem; color: var(--heading); font-size: .82rem; font-weight: 800; }
.read-more:hover { color: var(--accent); }
.entry-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; color: var(--muted); font-size: .74rem; }
.entry-meta span { display: inline-flex; align-items: center; gap: .28rem; }
.entry-meta a { color: inherit; }
.entry-meta a:hover { color: var(--accent); }

/* Sidebar and widgets */
.widget-area { display: grid; gap: 1.25rem; position: sticky; top: 112px; }
.admin-bar .widget-area { top: 144px; }
.widget { padding: 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.widget-title { position: relative; margin-bottom: 1.1rem; padding-bottom: .8rem; font-size: 1.05rem; }
.widget-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 44px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: .56rem 0; border-bottom: 1px solid var(--border); }
.widget li:last-child { border-bottom: 0; }
.widget li a { color: var(--text); font-size: .88rem; font-weight: 650; }
.widget li a:hover { color: var(--accent); }
.widget .search-form { display: grid; }
.widget .search-submit { justify-content: center; }
.tagcloud { display: flex; flex-wrap: wrap; gap: .45rem; }
.tagcloud a { padding: .35rem .55rem; background: var(--surface-2); color: var(--muted); border-radius: 8px; font-size: .72rem !important; }
.tagcloud a:hover { background: var(--accent); color: #fff; }
.wp-block-latest-posts__post-title { line-height: 1.35; }

/* Archive */
.page-hero { background: linear-gradient(135deg, #151e3b, #2a235a 60%, #0b5a4b); color: #fff; }
.compact-hero { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.compact-hero h1 { max-width: 920px; margin: .35rem 0 .65rem; color: #fff; font-size: clamp(2.15rem, 5vw, 4rem); }
.compact-hero p, .compact-hero .archive-description { max-width: 760px; margin: 0; color: rgba(255,255,255,.72); }
.compact-hero .section-kicker { margin-bottom: 0; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 315px; align-items: start; gap: 2rem; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.content-column { min-width: 0; }
.posts-archive { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-list .posts-archive, .cards-list .home-sections .posts-grid { grid-template-columns: 1fr; }
.cards-list .post-card { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr); }
.cards-list .post-card-media { height: 100%; aspect-ratio: auto; min-height: 230px; }
.layout-left .content-layout, .layout-left .home-content-layout { grid-template-columns: 315px minmax(0, 1fr); }
.layout-left .widget-area { grid-column: 1; grid-row: 1; }
.layout-left .content-column, .layout-left .home-sections { grid-column: 2; }
.layout-none .content-layout, .layout-none .home-content-layout { grid-template-columns: minmax(0, 1fr); }
.layout-none .posts-archive { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.navigation.pagination { margin-top: 2rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: .45rem; }
.page-numbers { min-width: 42px; height: 42px; display: inline-grid; place-items: center; padding: 0 .75rem; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); color: var(--text); font-weight: 700; }
.page-numbers.current, .page-numbers:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.no-results { padding: clamp(2rem, 6vw, 4rem); text-align: center; }
.no-results-icon { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 1rem; border-radius: 24px; background: rgba(var(--accent-rgb), .1); color: var(--accent); }
.no-results h1 { font-size: 2rem; }
.no-results p { color: var(--muted); }
.no-results .search-form { max-width: 560px; margin: 1.5rem auto 0; }

/* Breadcrumbs */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin-bottom: 1.1rem; color: var(--muted); font-size: .74rem; }
.breadcrumbs a { display: inline-flex; align-items: center; gap: .3rem; color: inherit; }
.breadcrumbs a:hover { color: var(--accent); }
.compact-hero .breadcrumbs { color: rgba(255,255,255,.68); }

/* Single */
.single-layout { grid-template-columns: minmax(0, 1fr) 315px; }
.single-article { padding: clamp(1.35rem, 4vw, 3.5rem); background: var(--surface); border: 1px solid var(--border); border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow-sm); }
.single-article .entry-header { margin-bottom: 1.7rem; }
.entry-title { margin: .65rem 0 1rem; font-size: clamp(2.15rem, 4.7vw, 4.2rem); }
.single-featured-image { overflow: hidden; margin: 1.7rem 0 2rem; border-radius: var(--radius); background: var(--surface-2); }
.single-featured-image img { width: 100%; }
.single-featured-image figcaption { padding: .65rem 1rem; color: var(--muted); font-size: .75rem; text-align: center; }
.entry-content { font-size: 1.04rem; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin-top: 2.3em; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.entry-content h3 { margin-top: 1.8em; }
.entry-content p, .entry-content li { color: var(--text); }
.entry-content a:not(.wp-element-button):not(.button) { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content .alignwide { max-width: 1100px; margin-left: 50%; transform: translateX(-50%); width: min(1100px, calc(100vw - 60px)); }
.entry-content .alignfull { max-width: none; margin-left: 50%; transform: translateX(-50%); width: 100vw; }
.entry-content iframe { max-width: 100%; }
.entry-content .wp-block-image img { border-radius: 12px; }
.entry-content .wp-block-cover { border-radius: var(--radius); overflow: hidden; }
.post-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.post-tags a { padding: .4rem .65rem; background: var(--surface-2); color: var(--muted); border-radius: 8px; font-size: .75rem; font-weight: 650; }
.post-tags a:hover { background: var(--accent); color: #fff; }
.share-box { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 2rem 0; padding: 1rem 1.2rem; background: var(--surface-2); border-radius: 14px; }
.share-box strong { color: var(--heading); }
.share-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.share-links a, .share-links button { min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: .35rem; padding: 0 .7rem; border: 0; border-radius: 10px; color: #fff; }
.share-facebook { background: #1877f2; }
.share-whatsapp { background: #20b859; }
.share-linkedin { background: #0a66c2; }
.share-copy { background: #35405a; }
.share-links a:hover, .share-links button:hover { color: #fff; opacity: .86; }
.share-copy span { font-size: .75rem; font-weight: 700; }
.author-box { display: grid; grid-template-columns: 100px minmax(0, 1fr); align-items: center; gap: 1.25rem; margin: 2rem 0; padding: 1.4rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-2); }
.author-avatar img { border-radius: 28px; }
.author-box .section-kicker { margin-bottom: .25rem; color: var(--accent); }
.author-box h2 { margin-bottom: .4rem; font-size: 1.35rem; }
.author-box p { margin-bottom: .5rem; color: var(--muted); font-size: .9rem; }
.author-box a { display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; font-weight: 800; }
.post-navigation-custom { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.post-navigation-custom > div { min-width: 0; padding: 1rem; border: 1px solid var(--border); border-radius: 13px; }
.post-navigation-custom > div:last-child { text-align: right; }
.post-navigation-custom small { display: block; margin-bottom: .3rem; color: var(--muted); font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.post-navigation-custom a { color: var(--heading); font-size: .88rem; font-weight: 750; }
.post-navigation-custom a:hover { color: var(--accent); }
.related-posts { margin-top: 3rem; }
.related-posts .post-card-excerpt, .related-posts .read-more { display: none; }
.related-posts .post-card-title { font-size: 1rem; }
.related-posts .post-card-body { padding: .9rem; }
.related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.related-grid .entry-meta span:first-child { display: none; }

/* Pages */
.page-layout { padding-block: clamp(2rem, 6vw, 5rem); }
.page-article { padding: clamp(1.5rem, 5vw, 4rem); }
.page-article .entry-title { font-size: clamp(2rem, 4.5vw, 3.8rem); }
.landing-title-section { position: relative; overflow: hidden; padding: clamp(5rem, 12vw, 10rem) 0; background: linear-gradient(135deg, #121a33, #31245e, #086b5a); color: #fff; text-align: center; }
.landing-title-section.has-background { background-size: cover; background-position: center; }
.landing-title-section::before { content: ""; position: absolute; inset: 0; background: rgba(8, 12, 28, .7); }
.landing-title-section .container { position: relative; z-index: 1; }
.landing-title-section h1 { color: #fff; }
.landing-title-section p { margin: 0 auto; max-width: 760px; color: rgba(255,255,255,.75); font-size: 1.15rem; }
.landing-content > *:not(.alignfull) { width: min(calc(100% - 40px), 920px); margin-left: auto; margin-right: auto; }
.landing-content { padding-bottom: 5rem; }
.landing-content > *:first-child { margin-top: 4rem; }
.blank-template { background: #fff; }
.blank-page-main { min-height: 100vh; }
.blank-page-main .entry-content { font-size: inherit; }
.bio-page { min-height: 75vh; padding: clamp(3rem, 8vw, 7rem) 20px; background: radial-gradient(circle at 20% 10%, rgba(var(--accent-rgb), .22), transparent 30%), radial-gradient(circle at 90% 75%, rgba(0,184,148,.2), transparent 32%), var(--bg); }
.bio-shell { width: min(100%, 680px); margin-inline: auto; }
.bio-card { padding: clamp(1.5rem, 5vw, 3.5rem); background: var(--surface); border: 1px solid var(--border); border-radius: 30px; box-shadow: var(--shadow-md); text-align: center; }
.bio-avatar { width: 118px; height: 118px; margin: 0 auto 1rem; padding: 5px; border-radius: 34px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.bio-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 29px; }
.bio-card h1 { margin-bottom: .5rem; font-size: clamp(2rem, 6vw, 3.1rem); }
.bio-description { max-width: 500px; margin: 0 auto 1.5rem; color: var(--muted); }
.bio-content { font-size: .95rem; }
.bio-links { margin-top: 1.3rem; }
.bio-menu { display: grid; gap: .75rem; }
.bio-menu a { display: flex; align-items: center; justify-content: center; min-height: 54px; padding: .8rem 1rem; border: 1px solid var(--border); border-radius: 14px; background: var(--surface-2); color: var(--heading); font-weight: 800; }
.bio-menu a:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-sm); }
.bio-card .social-links { justify-content: center; margin-top: 1.5rem; }

/* Comments */
.comments-area { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.comments-title { font-size: 1.5rem; }
.comment-list { list-style: none; padding: 0; }
.comment-list .children { list-style: none; }
.comment-body { position: relative; margin-bottom: 1rem; padding: 1rem; border: 1px solid var(--border); border-radius: 13px; }
.comment-author { display: flex; align-items: center; gap: .65rem; }
.comment-author img { border-radius: 50%; }
.comment-metadata { margin: .3rem 0 .7rem 65px; font-size: .72rem; }
.comment-content { padding-left: 65px; }
.reply { padding-left: 65px; }
.comment-reply-link { font-size: .75rem; font-weight: 800; }
.comment-form label { display: block; margin-bottom: .3rem; color: var(--heading); font-weight: 700; }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; padding: .8rem .9rem; background: var(--bg); color: var(--text); border: 1px solid var(--border); border-radius: 11px; }
.form-submit .submit { min-height: 48px; padding: .75rem 1.2rem; border: 0; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 800; }

/* Footer */
.site-footer { margin-top: 0; background: #0c1222; color: #aeb8ca; }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.2rem; padding-block: clamp(3rem, 7vw, 5rem); }
.footer-brand .custom-logo { filter: brightness(0) invert(1); }
.footer-title { color: #fff; font-size: 1.5rem; font-weight: 850; }
.footer-brand p { max-width: 340px; margin-top: 1rem; color: #8995aa; font-size: .88rem; }
.social-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.social-links a { width: 40px; height: 40px; display: inline-grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.07); color: #fff; }
.social-links a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.site-footer .widget { padding: 0; background: transparent; border: 0; box-shadow: none; }
.site-footer .widget-title { color: #fff; }
.site-footer .widget li { border-color: rgba(255,255,255,.08); }
.site-footer .widget li a { color: #9ea9bb; }
.site-footer .widget li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-bottom p { margin: 0; font-size: .76rem; }
.footer-menu { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-menu a { color: #9ea9bb; font-size: .75rem; }
.footer-menu a:hover { color: #fff; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 8000; background: var(--accent); border-color: var(--accent); color: #fff; opacity: 0; visibility: hidden; transform: translateY(10px) rotate(180deg); box-shadow: 0 12px 30px rgba(var(--accent-rgb), .3); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) rotate(180deg); }
.announcement-bottom ~ .back-to-top, body:has(.announcement-bottom) .back-to-top { bottom: 78px; }

/* 404 */
.error-main { display: grid; place-items: center; padding: clamp(3rem, 10vw, 8rem) 0; }
.error-404 { max-width: 760px; margin-inline: auto; padding: clamp(2rem, 7vw, 5rem); text-align: center; }
.error-number { display: block; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: clamp(5rem, 18vw, 11rem); font-weight: 950; line-height: .8; letter-spacing: -.08em; }
.error-404 h1 { margin-top: 1rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.error-404 p { color: var(--muted); }
.error-404 .search-form { margin: 1.5rem 0; }

/* WooCommerce */
.commerce-shell { padding-block: clamp(2.5rem, 6vw, 5rem); }
.woocommerce .woocommerce-breadcrumb { color: var(--muted); }
.woocommerce .woocommerce-breadcrumb a { color: var(--accent); }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; padding: 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.woocommerce ul.products li.product a img { border-radius: 12px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--heading); font-size: 1rem; }
.woocommerce ul.products li.product .price { color: var(--accent); font-weight: 800; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit { background: var(--accent); color: #fff; border-radius: 999px; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover { background: var(--accent-2); color: #fff; }
.woocommerce div.product { padding: clamp(1.25rem, 4vw, 3rem); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.woocommerce div.product .product_title { color: var(--heading); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--accent); }
.woocommerce table.shop_table { border-color: var(--border); border-radius: 12px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single { min-height: 46px; padding: .65rem .75rem; background: var(--bg); color: var(--text); border: 1px solid var(--border); border-radius: 10px; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--accent); background: var(--surface); color: var(--text); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--accent); }

/* Accessibility and WordPress */
.sticky { position: relative; }
.sticky::before { content: "Destaque"; position: absolute; top: 12px; left: 12px; z-index: 2; padding: .3rem .55rem; border-radius: 999px; background: var(--accent-2); color: #fff; font-size: .62rem; font-weight: 850; text-transform: uppercase; }
.bypostauthor { outline: 1px solid rgba(var(--accent-rgb), .2); }
.alignleft { float: left; margin: .5rem 1.5rem 1rem 0; }
.alignright { float: right; margin: .5rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--muted); font-size: .75rem; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }

/* Responsive */
@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto auto 1fr auto; gap: .8rem; }
  .menu-toggle { display: inline-flex; grid-column: 2; }
  .primary-navigation { position: fixed; inset: 0 auto 0 0; z-index: 950; width: min(390px, 88vw); padding: 108px 20px 30px; background: var(--surface); border-right: 1px solid var(--border); box-shadow: var(--shadow-md); transform: translateX(-102%); transition: transform 230ms ease; overflow-y: auto; }
  .admin-bar .primary-navigation { padding-top: 140px; }
  .primary-navigation.is-open { transform: translateX(0); }
  .primary-menu { display: grid; align-items: stretch; gap: .25rem; }
  .primary-menu > li > a { min-height: 48px; padding: .7rem .8rem; }
  .primary-menu .sub-menu { position: static; min-width: 0; display: none; margin: 0 0 .4rem .8rem; padding: .25rem 0 .25rem .65rem; background: transparent; border: 0; border-left: 2px solid var(--border); border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .primary-menu .submenu-open > .sub-menu { display: block; }
  .submenu-toggle { position: absolute; top: 6px; right: 2px; width: 38px; height: 38px; display: grid; place-items: center; padding: 0; background: var(--surface-2); color: var(--muted); border: 0; border-radius: 9px; }
  .submenu-toggle[aria-expanded="true"] { transform: rotate(180deg); }
  .menu-is-open::after { content: ""; position: fixed; inset: 0; z-index: 920; background: rgba(5,8,17,.62); backdrop-filter: blur(3px); }
  .site-header { z-index: 980; }
  .header-actions { grid-column: 4; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); gap: 2.5rem; }
  .home-content-layout, .content-layout, .single-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 1.5rem; }
  .layout-left .content-layout, .layout-left .home-content-layout { grid-template-columns: 290px minmax(0, 1fr); }
  .footer-main { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  .announcement-inner { justify-content: space-between; }
  .announcement-inner p { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 350px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter-box { grid-template-columns: 1fr; text-align: center; }
  .newsletter-box > .button { justify-self: center; }
  .home-content-layout, .content-layout, .single-layout, .layout-left .content-layout, .layout-left .home-content-layout { grid-template-columns: 1fr; }
  .layout-left .widget-area, .layout-left .content-column, .layout-left .home-sections { grid-column: auto; grid-row: auto; }
  .widget-area { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .layout-none .posts-archive { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 782px) {
  .admin-bar.has-sticky-header .site-header { top: 46px; }
  .admin-bar .widget-area { top: auto; }
}

@media (max-width: 680px) {
  .container, .narrow-container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 70px; grid-template-columns: auto auto 1fr auto; }
  .site-branding { min-width: 0; }
  .custom-logo { max-width: 160px; max-height: 46px; }
  .text-logo small { display: none; }
  .logo-mark { width: 38px; height: 38px; }
  .text-logo strong { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .header-actions { gap: .25rem; }
  .header-actions .icon-button, .menu-toggle { width: 38px; height: 38px; }
  .cart-button { display: none; }
  .secondary-navigation { display: none; }
  .announcement-inner { gap: .55rem; }
  .countdown > span { min-width: 34px; padding-inline: .25rem; }
  .announcement-cta { font-size: .72rem; }
  .home-hero { min-height: auto; }
  .hero-inner { padding-block: 70px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: .55rem; font-size: .7rem; }
  .hero-visual { min-height: 300px; }
  .visual-card-main { min-height: 235px; padding: 1.3rem; }
  .visual-card-main strong { font-size: 1.3rem; }
  .visual-card-main::before { width: 78px; height: 78px; }
  .visual-card-small { right: 0; width: 160px; }
  .featured-list { grid-template-columns: 1fr; }
  .featured-compact { grid-template-columns: 110px minmax(0, 1fr); }
  .posts-grid, .posts-archive, .layout-none .posts-archive, .related-grid { grid-template-columns: 1fr; }
  .cards-list .post-card { display: block; }
  .cards-list .post-card-media { min-height: 0; aspect-ratio: 16 / 9; }
  .newsletter-box { margin-block: 3rem; padding: 1.5rem; }
  .newsletter-form { display: grid; }
  .section-heading { align-items: flex-start; }
  .section-heading > a { font-size: 0; }
  .section-heading > a .icon { width: 23px; height: 23px; }
  .widget-area { grid-template-columns: 1fr; }
  .single-article, .page-article { padding: 1.15rem; border-radius: 14px; }
  .entry-title { font-size: clamp(2rem, 10vw, 3rem); }
  .entry-content { font-size: 1rem; }
  .entry-content .alignwide { width: calc(100vw - 28px); }
  .share-box { align-items: flex-start; flex-direction: column; }
  .author-box { grid-template-columns: 70px minmax(0, 1fr); align-items: start; padding: 1rem; }
  .post-navigation-custom { grid-template-columns: 1fr; }
  .post-navigation-custom > div:last-child { text-align: left; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { padding-block: 1.2rem; flex-direction: column; align-items: flex-start; }
  .search-panel-inner { padding: 3.5rem 1.1rem 1.2rem; border-radius: 20px; }
  .search-form { display: grid; }
  .error-404 .search-form { display: grid; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .comment-content, .reply { padding-left: 0; }
  .comment-metadata { margin-left: 0; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 430px) {
  .theme-toggle { display: none; }
  .search-submit span { display: none; }
  .newsletter-form button { justify-content: center; }
  .countdown > span:nth-child(1) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
