/* ==========================================================================
   TOKENS DO PADRÃO DE POST/BLOG (portado do kit, cores PSDB de Glaycon Franco)
   ========================================================================== */
:root {
  --nk-max: 1600px;
  --nk-yellow: #FFCC00;
  --nk-blue: #1E50A2;
  --nk-header-h: 68px;
  --nk-font: 'Outfit', 'Montserrat', -apple-system, sans-serif;
}
/* O header do Glaycon é sticky (ocupa o fluxo): sem margin-top dupla. */
.nk-page-header, .nk-list-header, .nk-article-header { margin-top: 0 !important; }

/* Icones Lucide inline */
.nk-ico { display: inline-block; vertical-align: -0.15em; flex-shrink: 0; }

/* ==========================================================================
   BADGES / BARRA AZUL DE BREADCRUMB / INTRO / GRID COM SIDEBAR
   ========================================================================== */
.nk-badge {
  display: inline-block; padding: 4px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; line-height: 1;
}
.nk-badge--red { background: #e74c5e; }
.nk-badge--blue { background: #1E50A2; }
.nk-badge--green { background: #00843D; }
.nk-badge--yellow { background: #D4A800; color: #111; }

.nk-page-header {
  background: #1E50A2; color: #fff; padding: 16px 0;
  border-bottom: 3px solid var(--nk-yellow); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.nk-page-header__inner {
  max-width: var(--nk-max); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: flex-start; min-height: 28px;
}
.nk-breadcrumb {
  display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 400;
  font-style: italic; text-transform: none; letter-spacing: 0.01em;
  color: var(--nk-yellow); margin: 0; flex-wrap: wrap; line-height: 1.4;
}
.nk-breadcrumb a { color: var(--nk-yellow); text-decoration: none; font-weight: 400; font-style: italic; transition: opacity 0.2s, text-decoration 0.2s; }
.nk-breadcrumb a:hover { opacity: 0.85; text-decoration: underline; }
.nk-breadcrumb span { color: var(--nk-yellow); font-weight: 400; font-style: italic; }
.nk-breadcrumb .nk-breadcrumb-sep { color: rgba(255, 204, 0, 0.7); font-style: normal; font-weight: 300; margin: 0 1px; }

.nk-page-intro { margin-bottom: 24px; }
.nk-page-intro h1 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 900; color: #1E50A2; margin: 0 0 8px; line-height: 1.25; }
.nk-page-intro p { font-size: 15px; color: #475569; line-height: 1.55; margin: 0; }

.nk-layout-wrap { max-width: var(--nk-max); margin: 0 auto; padding: 30px 20px 60px; }
.nk-layout-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 36px; align-items: start; }
.nk-main-col { min-width: 0; }

.nk-sidebar-aside { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--nk-header-h) + 20px); }
.nk-sidebar-widget { background: #ffffff; padding: 22px; border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 4px 16px rgba(30, 80, 162, 0.05); color: #1e293b; }
.nk-sidebar-widget-title { font-size: 16px; font-weight: 800; color: #1E50A2; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid #FFCC00; display: flex; align-items: center; gap: 8px; }
.nk-sidebar-list { display: flex; flex-direction: column; gap: 14px; }
.nk-sidebar-item { display: flex; gap: 12px; text-decoration: none; color: inherit; align-items: center; transition: transform 0.15s ease; }
.nk-sidebar-item:hover { transform: translateX(3px); }
.nk-sidebar-item img { width: 92px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: #e2e8f0; }
.nk-sidebar-item h5 { font-size: 13px; font-weight: 700; color: #1E50A2; margin: 0 0 4px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nk-sidebar-item span { font-size: 11.5px; color: #64748b; display: flex; align-items: center; gap: 4px; }

.nk-sidebar-cats { display: flex; flex-direction: column; gap: 7px; }
.nk-sidebar-cat-chip { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: #f8fafc; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700; color: #334155; border: 1px solid #e2e8f0; transition: all 0.18s ease; }
.nk-sidebar-cat-chip:hover, .nk-sidebar-cat-chip.is-active { background: #1E50A2; color: #fff; border-color: #1E50A2; transform: translateX(3px); }
.nk-cat-badge-count { font-size: 11px; font-weight: 800; background: #e2e8f0; color: #1E50A2; padding: 2px 7px; border-radius: 12px; }
.nk-sidebar-cat-chip:hover .nk-cat-badge-count, .nk-sidebar-cat-chip.is-active .nk-cat-badge-count { background: #FFCC00; color: #111; }

.nk-sidebar-social { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.nk-ss-btn { display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; border-radius: 12px; color: #fff; text-decoration: none; transition: transform 0.15s ease, filter 0.15s ease; }
.nk-ss-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.nk-ss-btn svg { width: 20px; height: 20px; }
.nk-ss-btn__txt { font-weight: 900; font-size: 17px; line-height: 1; }
.nk-ss-btn--yt { background: #FF0000; }
.nk-ss-btn--ig { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.nk-ss-btn--fb { background: #1877F2; }

.nk-sidebar-cta { background: linear-gradient(135deg, #1E50A2 0%, #0A1931 100%); color: #fff; border: none; }
.nk-sidebar-cta h4 { font-size: 17px; font-weight: 800; color: #FFCC00; margin: 0 0 8px; }
.nk-sidebar-cta p { font-size: 13px; color: #e2e8f0; line-height: 1.45; margin-bottom: 16px; }
.nk-sidebar-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; background: #FFCC00; color: #111; font-weight: 800; font-size: 13px; padding: 11px 16px; border-radius: 30px; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.18); transition: transform 0.15s ease, background 0.15s ease; }
.nk-sidebar-cta a:hover { transform: translateY(-2px); background: #ffe066; }

.nk-sidebar-gabinete { background: linear-gradient(135deg, #1E50A2 0%, #0A1931 100%); border: none; color: #fff; }
.nk-sg-header { display: flex; align-items: center; gap: 8px; color: #FFCC00; }
.nk-sg-header h4 { font-size: 16px; font-weight: 800; margin: 0; color: #FFCC00; }
.nk-sg-mandato { display: block; font-size: 12px; color: #cdd9ef; margin: 4px 0 14px; }
.nk-sg-list { display: flex; flex-direction: column; gap: 0; margin: 0; }
.nk-sg-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); font-size: 12.5px; }
.nk-sg-row:last-child { border-bottom: none; }
.nk-sg-row dt { color: #a9c0e6; font-weight: 700; flex-shrink: 0; }
.nk-sg-row dd { margin: 0; text-align: right; color: #fff; word-break: break-word; }
.nk-sg-row dd a { color: #fff; text-decoration: none; }
.nk-sg-row dd a:hover { text-decoration: underline; }
.nk-sg-btn { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; background: #FFCC00; color: #111; font-weight: 800; font-size: 13px; padding: 11px 16px; border-radius: 30px; text-decoration: none; transition: transform 0.15s ease, background 0.15s ease; }
.nk-sg-btn:hover { transform: translateY(-2px); background: #ffe066; }

@media (max-width: 1024px) {
  .nk-layout-with-sidebar { grid-template-columns: 1fr; gap: 36px; }
  .nk-sidebar-aside { position: static; }
}

/* ==========================================================================
   ARTIGO / POST — template de materia
   ========================================================================== */
.nk-article-page { background: #f8fafc; color: #1e293b; }

.nk-article-badges { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }

.nk-article-meta-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.nk-article-meta-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Conteudo do artigo (corpo em markdown) */
.nk-article-content { background: #fff; padding: 36px 40px; border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 4px 16px rgba(30, 80, 162, 0.04); }
.nk-article-content > p:first-of-type,
.nk-article-lead { font-size: 17px; line-height: 1.65; color: #334155; font-weight: 500; }
.nk-article-content h2 { font-size: 24px; font-weight: 800; color: #1E50A2; margin: 32px 0 16px; font-family: var(--nk-font); scroll-margin-top: 96px; }
.nk-article-content h3 { font-size: 19px; font-weight: 700; color: #1E50A2; margin: 28px 0 12px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; scroll-margin-top: 96px; }
.nk-article-content p { font-size: 15.5px; line-height: 1.7; color: #334155; margin-bottom: 18px; }
.nk-article-content a { color: #1E50A2; font-weight: 600; }
.nk-article-content ul, .nk-article-content ol { margin: 0 0 18px; padding-left: 22px; }
.nk-article-content li { font-size: 15.5px; line-height: 1.7; color: #334155; margin-bottom: 8px; list-style: disc; }
.nk-article-content ol li { list-style: decimal; }
.nk-article-content img { border-radius: 12px; margin: 8px 0 20px; }
.nk-article-content table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; font-size: 14.5px; }
.nk-article-content th, .nk-article-content td { border: 1px solid #e2e8f0; padding: 10px 14px; text-align: left; }
.nk-article-content th { background: #f1f5f9; color: #1E50A2; font-weight: 800; }

/* ==========================================================================
   RESUMO DO ARTIGO / TABLE OF CONTENTS (TOC) COM FUNDO AZUL
   ========================================================================== */
.nk-toc { background: #1E50A2; color: #ffffff; border-radius: 14px; border: 1px solid rgba(255, 204, 0, 0.4); border-left: 5px solid #FFCC00; box-shadow: 0 8px 24px rgba(30, 80, 162, 0.16); margin: 28px 0 32px; padding: 18px 22px; width: 100%; box-sizing: border-box; transition: all 0.3s ease; }
.nk-toc__header { display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; user-select: none; }
.nk-toc__title-wrap { display: flex; align-items: center; gap: 10px; color: #FFCC00; }
.nk-toc__title-wrap .nk-ico { color: #FFCC00; flex-shrink: 0; }
.nk-toc__title { font-size: 15.5px; font-weight: 800; color: #FFCC00; letter-spacing: 0.03em; text-transform: uppercase; }
.nk-toc__toggle { background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.28); color: #ffffff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; transition: all 0.2s ease; }
.nk-toc__toggle:hover { background: #FFCC00; color: #1E50A2; border-color: #FFCC00; }
.nk-toc__chevron { transition: transform 0.25s ease; }
.nk-toc.is-collapsed .nk-toc__chevron { transform: rotate(-90deg); }
.nk-toc__body { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.18); transition: max-height 0.3s ease, opacity 0.2s ease; }
.nk-toc.is-collapsed .nk-toc__body { display: none; }
.nk-toc__list { list-style: none !important; padding-left: 0 !important; margin: 0 !important; display: flex; flex-direction: column; gap: 9px; }
.nk-toc__item { font-size: 14.5px; line-height: 1.45; color: #f1f5f9; list-style: none !important; margin-bottom: 0 !important; display: flex; align-items: flex-start; }
.nk-toc__item a { color: #ffffff !important; text-decoration: none !important; font-weight: 600; transition: color 0.2s ease, transform 0.2s ease; display: inline-block; }
.nk-toc__item a:hover { color: #FFCC00 !important; text-decoration: underline !important; transform: translateX(3px); }
.nk-toc__item--h3 { padding-left: 22px; font-size: 13.5px; opacity: 0.94; }
.nk-toc__num { color: #FFCC00; font-weight: 800; margin-right: 8px; flex-shrink: 0; }

.nk-article-content blockquote { background: #1E50A2; color: #ffffff; border-left: 5px solid #FFCC00; padding: 18px 24px; margin: 24px 0; font-style: normal; border-radius: 12px; box-shadow: 0 6px 20px rgba(30, 80, 162, 0.15); }
.nk-article-content blockquote p { color: #ffffff !important; font-size: 16px; line-height: 1.68; margin-bottom: 8px; }
.nk-article-content blockquote p:last-child { margin-bottom: 0; }
.nk-article-content blockquote strong { color: #FFCC00 !important; font-weight: 800; }
.nk-article-content blockquote a { color: #FFCC00 !important; font-weight: 800; text-decoration: underline; transition: opacity 0.2s ease; }
.nk-article-content blockquote a:hover { opacity: 0.85; }
.nk-article-content blockquote em { color: #f1f5f9; }

/* Palavras Relacionadas / Tags */
.nk-related-tags { margin: 36px 0 20px; padding: 18px 0 0; border-top: 1px solid #e2e8f0; background: transparent; }
.nk-related-tags__title { font-size: 14.5px; font-weight: 800; color: #1E50A2; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.03em; }
.nk-related-tags__list { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.nk-tag-balloon { display: inline-flex; align-items: center; background: transparent; color: #1E50A2 !important; font-size: 14.5px; font-weight: 800; padding: 0; text-decoration: none !important; border: none; transition: color 0.2s ease; }
.nk-tag-balloon:hover { color: #00843D !important; text-decoration: underline !important; }

.nk-timestamp-tag { background: #f1f5f9; color: #1E50A2; font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 6px; border: 1px solid #cbd5e1; }
.nk-article-note-box { background: #fffbe6; border-left: 4px solid #FFCC00; padding: 20px 24px; border-radius: 8px; margin: 36px 0 20px; font-size: 14.5px; color: #78350f; line-height: 1.6; }
.nk-article-note-box strong { color: #92400e; }

@media (max-width: 1024px) { .nk-article-content { padding: 24px 20px; } }

/* ==========================================================================
   CAPA NO TOPO DO POST
   ========================================================================== */
.nk-article-cover { margin: 0 0 22px; border-radius: 0; overflow: hidden; box-shadow: 0 10px 30px rgba(30, 80, 162, 0.14); background: #cbd5e1; border-radius: 14px; }
.nk-article-cover img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 8; object-fit: cover; }
.nk-article-credit { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #64748b; background: #f1f5f9; padding: 8px 14px; font-style: normal; }
.nk-article-credit .nk-ico { color: #94a3b8; flex-shrink: 0; }
.nk-byline-link { color: inherit; text-decoration: none; }
.nk-byline-link:hover strong { color: #1E50A2; }

/* ==========================================================================
   AÇÕES DO ARTIGO: RESUMIR COM IA + COMPARTILHAR
   ========================================================================== */
.nk-actions { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid #e2e8f0; }
.nk-ai, .nk-share-box { display: flex; flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap; }
.nk-ai__label, .nk-share-label { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-size: 12px; font-weight: 800; color: #1E50A2; text-transform: uppercase; letter-spacing: 0.06em; }
.nk-ai__label .nk-ico, .nk-share-label .nk-ico { color: #1E50A2; }
.nk-ai__items { display: flex; flex-wrap: wrap; gap: 8px; }
.nk-ai-item { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; text-decoration: none; background: #fff; border: 1px solid #cbd5e1; color: #1E50A2; transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease; }
.nk-ai-item svg { width: 20px; height: 20px; }
.nk-ai-item:hover { transform: translateY(-3px); background: #FFCC00; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28); }
.nk-ai-item::after { content: attr(data-tip); position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%) translateY(4px); background: #0a1424; color: #fff; font-size: 11.5px; font-weight: 700; white-space: nowrap; padding: 6px 10px; border-radius: 7px; opacity: 0; pointer-events: none; z-index: 6; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35); transition: opacity 0.16s ease, transform 0.16s ease; }
.nk-ai-item::before { content: ""; position: absolute; bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: #0a1424; opacity: 0; z-index: 6; transition: opacity 0.16s ease; }
.nk-ai-item:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.nk-ai-item:hover::before { opacity: 1; }

.nk-share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.nk-share-btn { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(30, 80, 162, 0.2); background: #fff; color: #1E50A2; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; transition: all 0.18s ease; padding: 0; }
.nk-share-btn:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22); }
.nk-sh--wa:hover { background: #25D366; border-color: #25D366; }
.nk-sh--fb:hover { background: #1877F2; border-color: #1877F2; }
.nk-sh--x:hover { background: #000; border-color: #000; }
.nk-sh--tg:hover { background: #229ED9; border-color: #229ED9; }
.nk-sh--in:hover { background: #0A66C2; border-color: #0A66C2; }
.nk-sh--mail:hover, .nk-sh--copy:hover, .nk-sh--embed:hover { background: #1E50A2; border-color: #1E50A2; }
.nk-share-btn.is-ok { background: #00843D; border-color: #00843D; color: #fff; }
.nk-sh--embed.is-active { background: #0a1424; border-color: #0a1424; color: #fff; }

.nk-share-btn--label { width: auto; height: 40px; padding: 0 14px; gap: 8px; border-radius: 8px; border: none; color: #fff; font-size: 13px; font-weight: 800; }
.nk-share-btn--label span { line-height: 1; }
.nk-share-btn--label:hover { color: #fff; filter: brightness(1.08); }
.nk-share-btn--label.nk-sh--wa { background: #25D366; }
.nk-share-btn--label.nk-sh--fb { background: #1877F2; }
.nk-share-btn--label.nk-sh--x { background: #000; }
.nk-share-btn--label.nk-sh--tg { background: #229ED9; }
.nk-share-btn--label.nk-sh--in { background: #0A66C2; }
.nk-share-btn--label.nk-sh--mail { background: #334155; }

.nk-embed-box { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 18px 20px; margin: -8px 0 26px; }
.nk-embed-head { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
.nk-embed-head strong { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: #1E50A2; }
.nk-embed-head span { font-size: 12.5px; color: #64748b; }
.nk-embed-code { width: 100%; font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 12.5px; line-height: 1.5; color: #1e293b; background: #fff; border: 1px solid #cbd5e1; border-radius: 8px; padding: 12px; resize: vertical; margin-bottom: 12px; }
.nk-embed-copy { font-size: 13px; padding: 9px 16px; background: #1E50A2; color: #fff; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================================
   COMPARTILHAR NO FIM + NAVEGAÇÃO ENTRE POSTS
   ========================================================================== */
.nk-share-end { margin: 40px 0 0; padding-top: 26px; border-top: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.nk-share-end__label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: #1e293b; }
.nk-share-end__label .nk-ico { color: #1E50A2; }
.nk-share-end__btns { display: flex; flex-wrap: wrap; gap: 8px; }
@media (max-width: 560px) { .nk-share-end { justify-content: flex-start; } }

.nk-postnav { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0 0; }
.nk-postnav__item { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px; border: 1px solid #e2e8f0; border-radius: 14px; background: #fff; text-decoration: none; transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease; }
.nk-postnav__item:hover { border-color: #1E50A2; box-shadow: 0 10px 24px rgba(30, 80, 162, 0.1); transform: translateY(-2px); }
.nk-postnav__item--next { text-align: right; align-items: flex-end; }
.nk-postnav__label { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: #00843D; }
.nk-postnav__title { font-size: 15.5px; font-weight: 800; color: #1e293b; line-height: 1.3; }
.nk-postnav__item:hover .nk-postnav__title { color: #1E50A2; }
.nk-flip { display: inline-flex; transform: scaleX(-1); }
@media (max-width: 600px) { .nk-postnav { grid-template-columns: 1fr; } .nk-postnav__item--next { text-align: left; align-items: flex-start; } }

/* ==========================================================================
   CAIXA DE BIO DO AUTOR
   ========================================================================== */
.nk-author-box { display: grid; grid-template-columns: 160px 1fr; gap: 28px; align-items: center; background: linear-gradient(135deg, #f8fafc 0%, #eef4fb 100%); border: 1px solid #d8e3f0; border-left: 6px solid #1E50A2; border-radius: 18px; padding: 30px; margin-top: 36px; box-shadow: 0 12px 30px rgba(30, 80, 162, 0.10); }
.nk-author-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; object-position: center 20%; box-shadow: 0 5px 14px rgba(15, 23, 42, 0.14); justify-self: center; }
.nk-author-eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: #1E50A2; }
.nk-author-name { font-size: 24px; font-weight: 800; color: #1E50A2; margin: 4px 0 2px; line-height: 1.1; }
.nk-author-role { font-size: 13px; font-weight: 700; color: #64748b; margin: 0 0 12px; }
.nk-author-destaque { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: #1E50A2; text-decoration: none; margin-bottom: 10px; }
.nk-author-bio { font-size: 14.5px; line-height: 1.6; color: #475569; margin: 0 0 16px; }
.nk-author-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.nk-author-social { display: flex; gap: 8px; }
.nk-author-social a { width: 34px; height: 34px; border-radius: 50%; background: #1E50A2; color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: all 0.18s ease; }
.nk-author-social a:hover { background: #FFCC00; color: #1E50A2; transform: translateY(-2px); }
.nk-author-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; color: #1E50A2; text-decoration: none; }
.nk-author-more:hover { gap: 9px; }
@media (max-width: 560px) { .nk-author-box { grid-template-columns: 1fr; gap: 22px; padding: 24px 20px; text-align: left; } .nk-author-photo { width: 140px; height: 140px; justify-self: center; } }

/* ==========================================================================
   POSTS RELACIONADOS
   ========================================================================== */
.nk-related { margin-top: 40px; padding-top: 30px; border-top: 1px solid #e2e8f0; }
.nk-related__title { font-size: 23px; font-weight: 900; color: #1e293b; margin: 0 0 22px; letter-spacing: -0.01em; }
.nk-related__title span { color: #00843D; }
.nk-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .nk-related__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .nk-related__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   LISTAGEM /blog e /categorias — grade de materias
   ========================================================================== */
.nk-list-page { background: #f4f7fc; }
.nk-cat-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.nk-cat-chip { display: inline-block; padding: 7px 16px; border-radius: 999px; background: #fff; border: 1px solid rgba(30, 80, 162, 0.2); color: #1E50A2; font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.nk-cat-chip:hover, .nk-cat-chip[aria-current="page"] { background: #1E50A2; color: #fff; border-color: #1E50A2; }

.nk-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .nk-post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .nk-post-grid { grid-template-columns: 1fr; } }

.nk-post-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid rgba(30, 80, 162, 0.12); box-shadow: 0 6px 18px rgba(30, 80, 162, 0.05); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: all 0.25s ease; }
.nk-post-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(30, 80, 162, 0.12); border-color: rgba(30, 80, 162, 0.3); }
.nk-post-card__img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #cbd5e1; }
.nk-post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.nk-post-card:hover .nk-post-card__img img { transform: scale(1.05); }
.nk-post-card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.nk-post-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.nk-post-card__title { font-size: 17px; font-weight: 800; color: #111827; line-height: 1.3; margin: 0 0 10px; }
.nk-post-card:hover .nk-post-card__title { color: #1E50A2; }
.nk-post-card__excerpt { font-size: 13.5px; line-height: 1.55; color: #64748b; margin: 0 0 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nk-post-card__meta { font-size: 11.5px; font-weight: 600; color: #94a3b8; display: flex; align-items: center; gap: 8px; }

.nk-empty { text-align: center; color: #64748b; padding: 60px 0; font-size: 16px; }

/* ==========================================================================
   CAPA FULL-WIDTH DO POST (imagem + gradiente azul + título e rótulos por cima)
   ========================================================================== */
.nk-cover-hero {
  position: relative; width: 100%; min-height: 520px;
  display: flex; align-items: flex-end; overflow: hidden;
  background: #0A1931; isolation: isolate;
}
.nk-cover-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%; z-index: 1;
}
.nk-cover-hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(10,25,49,.94) 0%, rgba(10,25,49,.82) 22%, rgba(30,80,162,.45) 55%, rgba(30,80,162,0) 100%);
}
.nk-cover-hero__inner {
  position: relative; z-index: 3; max-width: var(--nk-max); margin: 0 auto; width: 100%;
  padding: 48px 20px 34px;
}
.nk-cover-hero__badge { display: inline-block; margin-bottom: 14px; }
.nk-cover-hero__title {
  color: #fff; font-family: var(--nk-font);
  font-size: clamp(26px, 4.2vw, 44px); font-weight: 900; line-height: 1.14;
  margin: 0 0 16px; max-width: 900px; text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.nk-cover-hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px;
  color: #e8eefb; font-size: 13.5px; font-weight: 600; text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.nk-cover-hero__meta strong { color: #FFCC00; font-weight: 800; }
.nk-cover-hero__meta .nk-ico { color: #FFCC00; }
.nk-cover-hero__sep { color: rgba(255,204,0,.7); }
.nk-cover-hero__credit {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 12px;
  font-size: 11px; color: rgba(255,255,255,.78); text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.nk-cover-hero__credit .nk-ico { color: rgba(255,255,255,.7); }
@media (max-width: 640px) {
  .nk-cover-hero { min-height: 420px; }
  .nk-cover-hero__inner { padding: 32px 16px 26px; }
  .nk-cover-hero__meta { font-size: 12.5px; }
}
/* Ações no topo do corpo, sem a linha superior flutuante */
.nk-article-actions-wrap .nk-actions { margin-top: 0; padding-top: 0; border-top: none; }
