/* ============================================================================
   NOSSO VINHO — CSS v12
   
   v11 + refinamento (Fase 1 ajustada):
   - Categoria continua no footer (padrão GP) com ícone temático
   - Selo só aparece se houver featured image
   - Zero dependência de Element PHP adicional
   - Categoria com ícone SVG (taça/estrela/livro/pino)
   - Cabeçalho do post (selo + título)
   - Ficha do vinho (box cinza com fita bordô)
   - Subtítulo variável
   - Corpo do post em Sora generoso
   - Garrafa final em 100% quadrada
   - Tags ao final (já existia)
   
   Substitui TUDO que havia no CSS Adicional antes.
   ============================================================================ */


/* ============================================================================
   1. VARIÁVEIS
   ============================================================================ */

:root {
    --nv-preto:       #0d0d0d;
    --nv-branco:      #ffffff;
    --nv-cinza:       #f4f4f2;
    --nv-cinza-esc:   #eae9e4;
    --nv-linha:       #e5e5e5;
    --nv-tinta:       #8b1e2b;
    --nv-texto:       #1a1a1a;
    --nv-texto-mid:   #555;
    --nv-texto-soft:  #888;
    --nv-container:   820px;
}


/* ============================================================================
   2. FUNDO DO SITE — branco em tudo que não for header nem footer
   ============================================================================ */

html,
body,
.site,
#page,
.wrapper,
.site-content,
.site-main,
.content-area,
.inside-article {
    background: var(--nv-branco);
    margin: 0;
    padding: 0;
}


/* ============================================================================
   3. HEADER — preto edge-to-edge
   ============================================================================ */

.site-header,
.site-header .inside-header {
    background: var(--nv-preto);
    border: none;
}

.site-header {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.site-header .inside-header {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
}

.site-header .site-branding .main-title,
.site-header .site-branding .main-title a {
    color: var(--nv-branco);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}


/* ============================================================================
   4. NAVEGAÇÃO — hamburger branco, menu fullscreen
   ============================================================================ */

.main-navigation {
    background: transparent;
    margin: 0;
    padding: 0;
    min-height: auto;
    width: auto;
    position: static;
    border: none;
}

.main-navigation .inside-navigation {
    background: transparent;
    padding: 0;
    max-width: none;
}

.main-navigation .menu-toggle,
.main-navigation .menu-toggle:hover,
.main-navigation .menu-toggle:focus,
.main-navigation.toggled .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    color: var(--nv-branco);
    font-size: 0;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.main-navigation .menu-toggle .mobile-menu {
    display: none;
    font-size: 0;
}

.main-navigation .menu-toggle svg,
.main-navigation .menu-toggle svg *,
.main-navigation .menu-toggle .gp-icon svg,
.main-navigation .menu-toggle .gp-icon svg * {
    fill: var(--nv-branco);
    stroke: var(--nv-branco);
    color: var(--nv-branco);
    width: 26px;
    height: 26px;
}

.main-navigation:not(.toggled) .main-nav {
    display: none;
}

.main-navigation.toggled .main-nav {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--nv-preto);
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
}

.main-navigation.toggled .main-nav > ul {
    display: flex;
    flex-direction: column;
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem;
    list-style: none;
    background: transparent;
}

.main-navigation.toggled .main-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    white-space: nowrap;
}

.main-navigation.toggled .main-nav > ul > li:last-child {
    border-bottom: none;
}

.main-navigation.toggled .main-nav > ul > li > a {
    display: block;
    width: 100%;
    padding: 1.25rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nv-branco);
    background: transparent;
    letter-spacing: -0.02em;
    text-transform: none;
}

.main-navigation.toggled .main-nav > ul > li > a:hover {
    color: var(--nv-tinta);
    padding-left: 10px;
}

.main-navigation.toggled .menu-toggle {
    position: fixed;
    top: 12px;
    right: 2rem;
    z-index: 10000;
}

.admin-bar .main-navigation.toggled .menu-toggle {
    top: 44px;
}


/* ============================================================================
   5. LUPA E SLIDEOUT — removidos
   ============================================================================ */

.main-navigation .navigation-search,
.navigation-search,
.nav-search-enabled .main-nav ul li.search-item,
.main-navigation li.search-item,
.search-item,
button.search-item,
.site-header .search-form,
.site-header form[role="search"],
.slideout-navigation,
.slideout-overlay,
#generate-slideout-menu {
    display: none;
    visibility: hidden;
}


/* ============================================================================
   6. ÁREA DE CONTEÚDO — centralizada em 820px
   ============================================================================ */

.site-content {
    background: var(--nv-branco);
    max-width: 100%;
    padding: 3rem 1rem;
    margin: 0;
}

.site-content > .container,
.site-content .content-area,
.site-main {
    max-width: var(--nv-container);
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}


/* ============================================================================
   7. BLOCO DE ABERTURA DA HOME
   ============================================================================ */

.nv-eyebrow,
.nv-home-title,
.nv-home-lede {
    display: block;
    width: 100%;
    max-width: var(--nv-container);
    margin-left: auto;
    margin-right: auto;
    clear: both;
    float: none;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

.nv-eyebrow {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--nv-tinta);
    font-weight: 500;
    margin: 2rem 0 1.5rem;
    line-height: 1;
    position: relative;
    padding-left: 4.5rem;
}

.nv-eyebrow::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background: var(--nv-tinta);
}

.nv-home-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--nv-preto);
    margin: 0 0 1.5rem;
}

.nv-home-lede {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--nv-texto-mid);
    letter-spacing: -0.005em;
    margin: 0 0 3rem;
    max-width: 680px;
}


/* ============================================================================
   8. POSTS — listagem (home/categoria): cards com zebra
   ============================================================================ */

.site-main,
.site-main > *,
.content-area,
.content-area > * {
    display: block;
    grid-template-columns: none;
    columns: auto;
    column-count: auto;
}

.wp-block-latest-posts,
.wp-block-latest-posts.columns-2,
.wp-block-latest-posts.columns-3,
.wp-block-latest-posts.columns-4,
.is-grid,
.blog-grid,
.generate-columns-container {
    display: block;
    grid-template-columns: 1fr;
    columns: auto;
}

/* Cards de post na listagem (home, categoria) */
body:not(.single) .site-main article,
body:not(.single) .site-main .post,
body:not(.single) .site-main .inside-article,
body:not(.single) .wp-block-post {
    display: block;
    width: 100%;
    max-width: 100%;
    float: none;
    background: var(--nv-branco);
    border: 1px solid var(--nv-linha);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body:not(.single) .site-main article:hover,
body:not(.single) .site-main .post:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* Zebra — posts pares ficam cinza (só na listagem) */
body:not(.single) .site-main article:nth-child(even),
body:not(.single) .site-main .post:nth-child(even) {
    background: var(--nv-cinza);
    border-color: var(--nv-cinza-esc);
}

.site-main article .inside-article {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

/* Esconde featured image na listagem (home/categoria) — só aparece no post */
body:not(.single) .post-image,
body:not(.single) .featured-image,
body:not(.single) .post-thumbnail,
body:not(.single) article .wp-post-image {
    display: none;
}


/* ============================================================================
   9. POST INDIVIDUAL — NOVA SEÇÃO
   Aplica apenas em body.single (post individual), não na listagem
   ============================================================================ */

/* Container do post individual — sem card, sem borda, sem zebra */
body.single .site-main article,
body.single .site-main .post,
body.single .site-main .inside-article {
    background: var(--nv-branco);
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0 0 2rem;
    box-shadow: none;
    transition: none;
}

body.single .site-main article:hover {
    transform: none;
    box-shadow: none;
}

/* Categoria com ÍCONE — substitui o tracinho no post individual */
body.single .entry-categories,
body.single .post-categories,
body.single .cat-links {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--nv-tinta);
    font-weight: 500;
    margin: 0 0 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

body.single .entry-categories a,
body.single .post-categories a,
body.single .cat-links a {
    color: var(--nv-tinta);
    text-decoration: none;
}

/* SVG genérico para categoria — será sobrescrito por regras específicas de cada categoria */
body.single .entry-categories::before,
body.single .post-categories::before,
body.single .cat-links::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ÍCONE POR CATEGORIA — usa :has() para detectar qual categoria o post tem */

/* Experiências — taça */
body.single .cat-links:has(a[href*="experiencias"])::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238b1e2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3 C8 3 8 11 12 13 C16 11 16 3 16 3 L8 3 Z M12 13 L12 20 M8 20 L16 20'/%3E%3C/svg%3E");
}

/* Recomendações — estrela */
body.single .cat-links:has(a[href*="recomendacoes"])::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238b1e2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15 9 22 9 17 14 19 21 12 17 5 21 7 14 2 9 9 9'/%3E%3C/svg%3E");
}

/* Cultura do Vinho — livro */
body.single .cat-links:has(a[href*="cultura"])::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238b1e2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3 L20 3 L20 18 L12 21 L4 18 Z'/%3E%3Cline x1='12' y1='3' x2='12' y2='21'/%3E%3C/svg%3E");
}

/* Regiões — pino */
body.single .cat-links:has(a[href*="regioes"])::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238b1e2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 C7 2 4 5 4 10 C4 15 12 22 12 22 C12 22 20 15 20 10 C20 5 17 2 12 2 Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

/* Cabeçalho do post: selo (se existir) + título lado a lado
   Se não houver featured image, título ocupa toda a largura naturalmente */
body.single .entry-header {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 0;
    border: none;
}

/* Selo (featured image) — 120x120 quadrado com cantos arredondados */
body.single .post-image,
body.single .featured-image,
body.single .post-thumbnail,
body.single .entry-header .wp-post-image {
    display: block;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

body.single .post-image img,
body.single .featured-image img,
body.single .post-thumbnail img,
body.single .entry-header .wp-post-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Se a featured image não existir, esconde container vazio — título ocupa largura total */
body.single .post-image:empty,
body.single .featured-image:empty,
body.single .post-thumbnail:empty {
    display: none;
}

body.single .entry-header .entry-header-text {
    flex: 1;
    min-width: 0;
}

body.single .entry-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--nv-preto);
    margin: 0 0 0.6rem;
}

body.single .entry-meta {
    font-size: 0.85rem;
    color: var(--nv-texto-soft);
    margin: 0;
}

body.single .entry-meta a {
    color: var(--nv-tinta);
    text-decoration: none;
    font-weight: 500;
}


/* FICHA DO VINHO — box cinza com fita bordô */
.nv-ficha {
    background: var(--nv-cinza);
    border-radius: 8px;
    padding: 1.75rem 1.75rem 1.75rem 2rem;
    margin: 0 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.nv-ficha::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--nv-tinta);
}

.nv-ficha-header {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--nv-texto-soft);
    font-weight: 500;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--nv-cinza-esc);
}

.nv-ficha-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--nv-cinza-esc);
    align-items: baseline;
}

.nv-ficha-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nv-ficha-label {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--nv-texto-soft);
    font-weight: 500;
}

.nv-ficha-value {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: var(--nv-preto);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.nv-ficha-carater {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: var(--nv-tinta);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.01em;
}


/* CORPO DO POST — texto em Sora generoso, sem float */
body.single .entry-content {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--nv-texto);
    letter-spacing: -0.005em;
}

body.single .entry-content p {
    margin: 0 0 1.5rem;
}

/* Subtítulo variável (H2 dentro do post) */
body.single .entry-content h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--nv-preto);
    margin: 2.5rem 0 1.5rem;
}

body.single .entry-content h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--nv-preto);
    margin: 2rem 0 1rem;
}

/* Links dentro do corpo */
body.single .entry-content a {
    color: var(--nv-tinta);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

body.single .entry-content a:hover {
    border-bottom-color: var(--nv-tinta);
}

/* Imagens dentro do conteúdo — sem restrição de proporção, altura máxima */
body.single .entry-content img,
body.single .entry-content .wp-block-image img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 2rem auto;
    border-radius: 4px;
}

/* IMAGEM ESPECIAL: garrafa final em 100% quadrada */
body.single .entry-content img.nv-bottle,
body.single .entry-content figure.nv-bottle img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-height: none;
    margin: 2.5rem 0 2rem;
    border-radius: 4px;
}


/* TAGS no final do post */
body.single .entry-footer,
body.single .post-tags {
    margin: 2.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--nv-linha);
    font-size: 0.875rem;
}

body.single .entry-footer .tags-links,
body.single .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

body.single .entry-footer .tags-links a,
body.single .post-tags a {
    display: inline-block;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nv-texto-mid);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--nv-linha);
    border-radius: 999px;
    background: var(--nv-branco);
    transition: all 0.2s ease;
}

body.single .entry-footer .tags-links a:hover,
body.single .post-tags a:hover {
    color: var(--nv-branco);
    background: var(--nv-preto);
    border-color: var(--nv-preto);
}


/* ============================================================================
   10. FOOTER — cinza zebra
   ============================================================================ */

.site-info,
.inside-site-info,
footer.site-info,
#footer-widgets,
.footer-widgets,
.footer-widgets-container {
    display: none;
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
}

.nv-footer {
    display: block;
    background: var(--nv-cinza);
    border-top: none;
    padding: 4rem 1rem 2.5rem;
    margin-top: 4rem;
    width: 100%;
}

.nv-footer-inner {
    max-width: var(--nv-container);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.nv-footer-block {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--nv-cinza-esc);
}

.nv-footer-block:last-of-type {
    border-bottom: 1px solid var(--nv-cinza-esc);
    padding-bottom: 2.5rem;
}

.nv-footer-eyebrow {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--nv-tinta);
    font-weight: 500;
    margin: 0 0 1rem;
    line-height: 1;
    position: relative;
    padding-left: 2.5rem;
}

.nv-footer-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background: var(--nv-tinta);
}

.nv-footer-manifesto {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--nv-texto);
    letter-spacing: -0.01em;
    margin: 0;
    max-width: 520px;
}

.nv-footer-label {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nv-texto-soft);
    font-weight: 500;
    margin: 0 0 1.25rem;
    line-height: 1;
}

.nv-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.nv-footer-nav li {
    margin: 0;
}

.nv-footer-nav a {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nv-preto);
    text-decoration: none;
    letter-spacing: -0.015em;
    transition: color 0.2s;
    border-bottom: none;
}

.nv-footer-nav a:hover {
    color: var(--nv-tinta);
}

.nv-footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.nv-footer-tags a,
.nv-footer-tags .nv-tag {
    display: inline-block;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nv-texto-mid);
    text-decoration: none;
    font-weight: 500;
    padding: 0.55rem 0.9rem;
    margin: 0;
    border: 1px solid var(--nv-linha);
    border-radius: 999px;
    background: var(--nv-branco);
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.nv-footer-tags a:hover,
.nv-footer-tags .nv-tag:hover {
    color: var(--nv-branco);
    background: var(--nv-preto);
    border-color: var(--nv-preto);
}

.nv-footer-bottom {
    padding-top: 2rem;
    border-top: none;
    margin-top: 0;
}

.nv-footer-bottom p {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.8rem;
    color: var(--nv-texto-soft);
    margin: 0;
    letter-spacing: 0.02em;
}


/* ============================================================================
   11. RESPONSIVO — tablet e mobile
   ============================================================================ */

@media (max-width: 1024px) {
    .site-header .inside-header {
        padding: 0.6rem 1.25rem;
    }

    .site-header .site-branding .main-title,
    .site-header .site-branding .main-title a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .site-content {
        padding: 2rem 1rem;
    }

    body:not(.single) .site-main article,
    body:not(.single) .site-main .post {
        padding: 1.75rem 1.5rem;
        border-radius: 12px;
    }

    body:not(.single) .entry-title {
        font-size: 1.5rem;
    }

    .nv-eyebrow,
    .nv-home-title,
    .nv-home-lede {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nv-eyebrow {
        padding-left: 3rem;
    }

    .nv-eyebrow::before {
        left: 1rem;
    }

    .nv-home-lede {
        font-size: 1.1rem;
    }

    /* Post individual no mobile: selo acima do título */
    body.single .entry-header {
        flex-direction: column;
        gap: 1rem;
    }

    body.single .post-image,
    body.single .featured-image,
    body.single .post-thumbnail {
        width: 100px;
        height: 100px;
    }

    body.single .post-image img,
    body.single .featured-image img,
    body.single .post-thumbnail img {
        width: 100px;
        height: 100px;
    }

    body.single .entry-title {
        font-size: 1.75rem;
    }

    .nv-ficha-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .admin-bar .main-navigation.toggled .menu-toggle {
        top: 62px;
    }

    .nv-footer {
        padding: 3rem 1rem 2rem;
        margin-top: 3rem;
    }

    .nv-footer-inner {
        gap: 2rem;
        padding: 0;
    }

    .nv-footer-block {
        padding-bottom: 2rem;
    }

    .nv-footer-manifesto {
        font-size: 1rem;
    }

    .nv-footer-nav {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nv-footer-nav a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .site-header .inside-header {
        padding: 0.5rem 1rem;
    }

    .site-header .site-branding .main-title,
    .site-header .site-branding .main-title a {
        font-size: 1.05rem;
    }

    .site-content {
        padding: 1.5rem 0.75rem;
    }

    body:not(.single) .site-main article,
    body:not(.single) .site-main .post {
        padding: 1.5rem 1.25rem;
    }

    body:not(.single) .entry-title {
        font-size: 1.35rem;
    }

    .main-navigation .menu-toggle svg {
        width: 22px;
        height: 22px;
    }

    .main-navigation.toggled .main-nav > ul > li > a {
        font-size: 1.5rem;
    }

    .nv-eyebrow,
    .nv-home-title,
    .nv-home-lede {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .nv-eyebrow,
    .nv-footer-eyebrow {
        font-size: 0.65rem;
    }

    .nv-eyebrow {
        padding-left: 2.5rem;
    }

    .nv-footer-eyebrow {
        padding-left: 2rem;
    }

    .nv-eyebrow::before {
        left: 0.75rem;
        width: 1.5rem;
    }

    .nv-footer-eyebrow::before {
        width: 1.5rem;
    }

    body.single .entry-title {
        font-size: 1.5rem;
    }

    body.single .entry-content {
        font-size: 1rem;
    }

    .nv-footer {
        padding: 2.5rem 0.75rem 1.5rem;
    }

    .nv-footer-label {
        font-size: 0.65rem;
    }
}


/* ============================================================================
   12. LIMPEZA — resíduos de templates antigos
   ============================================================================ */

.page-title,
.archive-header,
.page-header-image,
.wp-block-archive-title,
.wp-block-query-title,
body.home .page-title,
.site-main > .navigation.pagination:first-child,
.site-main > nav.pagination:first-child {
    display: none;
}

.site-logo:empty,
.custom-logo-link:empty,
.site-branding .site-logo:empty,
.site-branding-wrapper .site-logo:empty,
.widget-area:empty,
.sidebar:empty,
body.home > .site > aside {
    display: none;
    border: none;
    width: 0;
    padding: 0;
    margin: 0;
}

img[src=""],
img:not([src]),
.site-branding img[alt="Craft"],
.site-branding img[alt="CRAFT"],
[class*="craft"],
[class*="Craft"],
[class*="CRAFT"] {
    display: none;
}

.sidebar,
aside.sidebar,
.widget-area,
body > div,
.site,
#page,
.wrapper {
    border-left: none;
    border-right: none;
}