/* Manual Pet SSM — compiled theme CSS. Tokens: "Pet Vitality System". Header model: spreable-ssm / sulamerica-sunset. */
:root {
  --mp-primary: #008282;
  --mp-primary-strong: #006767;
  --mp-primary-tint: rgba(0, 130, 130, 0.1);
  --mp-accent: #fc9910;
  --mp-accent-strong: #f39200;
  --mp-accent-tint: rgba(252, 153, 16, 0.12);
  --mp-bg: #f7f9fb;
  --mp-surface: #ffffff;
  --mp-surface-2: #f2f4f6;
  --mp-ink: #191c1e;
  --mp-ink-soft: #334155;
  --mp-muted: #6d7979;
  --mp-outline: #e2e8f0;
  --mp-wrap: 1280px;
  --mp-radius-card: 16px;
  --mp-radius-pill: 9999px;
  --mp-shadow-1: 0 4px 20px rgba(0, 0, 0, 0.05);
  --mp-shadow-2: 0 10px 30px rgba(0, 0, 0, 0.08);
  --mp-header-h: 72px;
  --mp-ease: cubic-bezier(0.23, 1, 0.32, 1);
  --mp-font-head: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --mp-font-body: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body.manualpet-ssm,
body {
  background: var(--mp-bg);
  color: var(--mp-ink);
  font-family: var(--mp-font-body);
  margin: 0;
}
body { padding-top: var(--mp-header-h); }
.mp-no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.mp-main h1, .mp-main h2, .mp-main h3, .mp-hero-title, .mp-section-title, .mp-nl-title { font-family: var(--mp-font-head); margin: 0; }
.mp-ico { width: 1em; height: 1em; fill: currentColor; }
svg[viewBox="0 0 24 24"] path { fill: currentColor; }
.mp-shell { width: 100%; max-width: var(--mp-wrap); margin-inline: auto; padding-inline: 40px; }

/* Buttons / chips / links */
.mp-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mp-font-head); font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: var(--mp-radius-pill); border: 0; cursor: pointer; transition: transform .2s var(--mp-ease), box-shadow .2s var(--mp-ease), background .2s var(--mp-ease); }
.mp-btn .mp-ico { width: 18px; height: 18px; }
.mp-btn-primary { background: var(--mp-primary); color: #fff; }
.mp-btn-primary:hover { background: var(--mp-primary-strong); transform: translateY(-1px); }
.mp-btn-accent { background: var(--mp-accent); color: #fff; }
.mp-btn-accent:hover { background: var(--mp-accent-strong); transform: translateY(-1px); }
.mp-btn-light { background: #fff; color: var(--mp-ink); box-shadow: var(--mp-shadow-1); }
.mp-btn-light:hover { transform: translateY(-1px); box-shadow: var(--mp-shadow-2); }
.mp-chip { display: inline-flex; align-items: center; height: 26px; padding: 0 12px; font-family: var(--mp-font-head); font-weight: 600; font-size: 12px; letter-spacing: .04em; border-radius: var(--mp-radius-pill); text-transform: uppercase; }
.mp-chip-accent { background: var(--mp-accent); color: #fff; }
.mp-chip-primary { background: var(--mp-primary); color: #fff; }
.mp-link-more { display: inline-flex; align-items: center; gap: 6px; color: var(--mp-primary); font-family: var(--mp-font-head); font-weight: 600; font-size: 14px; }
.mp-link-more .mp-ico { width: 16px; height: 16px; }
.mp-link-more:hover { color: var(--mp-primary-strong); }

/* ---------- Header shell (fixed, model: spreable-ssm/sulamerica-sunset) ---------- */
.mp-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(247, 249, 251, .88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--mp-outline); transition: background .25s var(--mp-ease), box-shadow .25s var(--mp-ease); }
.mp-header.is-scrolled { background: rgba(247, 249, 251, .97); box-shadow: var(--mp-shadow-1); }
body.admin-bar .mp-header { top: 32px; }
.mp-header-inner { display: flex; align-items: center; gap: 24px; min-height: var(--mp-header-h); }
.mp-brand { font-family: var(--mp-font-head); font-weight: 800; font-size: 24px; letter-spacing: -.01em; }
.mp-brand-manual { color: var(--mp-primary); }
.mp-brand-pet { color: var(--mp-accent); }
.mp-header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }

.mp-menu-desktop .mp-menu { display: flex; align-items: center; gap: 26px; margin: 0 12px 0 0; padding: 0; list-style: none; }
.mp-menu-desktop .mp-menu a { font-family: var(--mp-font-head); font-weight: 600; font-size: 15px; color: var(--mp-ink-soft); padding: 6px 0; position: relative; }
.mp-menu-desktop .mp-menu a:hover, .mp-menu-desktop .mp-menu .current-menu-item > a { color: var(--mp-primary); }
.mp-menu-desktop .mp-menu .current-menu-item > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--mp-primary); border-radius: 2px; }

.mp-search { display: flex; align-items: center; gap: 8px; background: var(--mp-surface); border: 1px solid var(--mp-outline); border-radius: var(--mp-radius-pill); padding: 8px 16px; min-width: 220px; color: var(--mp-muted); transition: border-color .2s var(--mp-ease), box-shadow .2s var(--mp-ease); }
.mp-search:focus-within { border-color: var(--mp-primary); box-shadow: 0 0 0 4px var(--mp-primary-tint); }
.mp-search .mp-ico { width: 18px; height: 18px; }
.mp-search input { border: 0; outline: 0; background: transparent; width: 100%; font-family: var(--mp-font-body); font-size: 15px; color: var(--mp-ink); }

.mp-mobile-toggle { display: none; flex-direction: column; gap: 4px; width: 42px; height: 42px; align-items: center; justify-content: center; background: var(--mp-surface); border: 1px solid var(--mp-outline); border-radius: 12px; cursor: pointer; }
.mp-mobile-toggle span { width: 18px; height: 2px; background: var(--mp-ink); border-radius: 2px; transition: transform .2s var(--mp-ease), opacity .2s var(--mp-ease); }
.mp-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mp-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mp-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile slide-in panel */
.mp-mobile-panel[hidden] { display: none; }
.mp-mobile-panel { position: fixed; inset: 0; z-index: 60; display: grid; background: rgba(15, 20, 19, .5); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .25s var(--mp-ease); }
.mp-mobile-panel[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.mp-mobile-panel__dialog { margin-left: auto; width: min(380px, 100% - 1.2rem); height: 100%; background: var(--mp-surface); box-shadow: var(--mp-shadow-2); padding: 20px 24px 28px; transform: translateX(12px); transition: transform .25s var(--mp-ease); overflow-y: auto; }
.mp-mobile-panel[aria-hidden="false"] .mp-mobile-panel__dialog { transform: translateX(0); }
.mp-mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mp-mobile-close { width: 40px; height: 40px; border: 1px solid var(--mp-outline); border-radius: 12px; background: var(--mp-surface); font-size: 22px; line-height: 1; color: var(--mp-ink); cursor: pointer; }
.mp-mobile-nav .mp-mobile-menu { list-style: none; margin: 8px 0; padding: 0; display: flex; flex-direction: column; }
.mp-mobile-nav .mp-mobile-menu a { display: block; font-family: var(--mp-font-head); font-weight: 600; font-size: 17px; color: var(--mp-ink-soft); padding: 12px 0; border-bottom: 1px solid var(--mp-surface-2); }
.mp-mobile-nav .mp-mobile-menu .current-menu-item > a { color: var(--mp-primary); }
.mp-search-mobile { margin: 16px 0; min-width: 0; }
.mp-mobile-cta { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.mp-hero { position: relative; margin-top: 24px; border-radius: var(--mp-radius-card); overflow: hidden; min-height: 440px; display: flex; align-items: flex-end; box-shadow: var(--mp-shadow-1); }
.mp-hero-media { position: absolute; inset: 0; background: linear-gradient(135deg, #0b3b3b 0%, #0f6b64 45%, #4a9d63 100%); }
.mp-hero-media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 80% 20%, rgba(255,255,255,.12), transparent 55%), linear-gradient(to top, rgba(3,20,20,.72) 0%, rgba(3,20,20,.15) 55%, transparent 100%); }
.mp-hero-overlay { position: relative; padding: 48px 56px; max-width: 620px; color: #fff; }
.mp-hero-overlay .mp-chip { margin-bottom: 18px; }
.mp-hero-title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.mp-hero-lead { margin: 16px 0 26px; font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.9); max-width: 460px; }

/* ---------- Categories ---------- */
.mp-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.mp-cat-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: var(--mp-surface); border: 1px solid var(--mp-outline); border-radius: var(--mp-radius-card); padding: 28px 16px; box-shadow: var(--mp-shadow-1); transition: transform .2s var(--mp-ease), box-shadow .2s var(--mp-ease); }
.mp-cat-card:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow-2); }
.mp-cat-ico { display: grid; place-items: center; width: 56px; height: 56px; border-radius: var(--mp-radius-pill); }
.mp-cat-ico svg { width: 26px; height: 26px; }
.mp-ico-teal { background: var(--mp-primary-tint); color: var(--mp-primary); }
.mp-ico-orange { background: var(--mp-accent-tint); color: var(--mp-accent-strong); }
.mp-ico-slate { background: #eef1f4; color: var(--mp-ink-soft); }
.mp-cat-label { font-family: var(--mp-font-head); font-weight: 600; font-size: 16px; }
.mp-cat-card:nth-child(2) .mp-cat-label { color: var(--mp-accent-strong); }
.mp-cat-card:nth-child(3) .mp-cat-label { color: var(--mp-primary); }

/* ---------- Latest ---------- */
.mp-latest { margin-top: 72px; }
.mp-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.mp-section-title { font-size: 30px; font-weight: 700; position: relative; padding-bottom: 10px; }
.mp-section-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 4px; background: var(--mp-accent); border-radius: 3px; }
.mp-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mp-post-card { background: var(--mp-surface); border: 1px solid var(--mp-outline); border-radius: var(--mp-radius-card); overflow: hidden; box-shadow: var(--mp-shadow-1); transition: transform .2s var(--mp-ease), box-shadow .2s var(--mp-ease); }
.mp-post-card:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow-2); }
.mp-post-thumb { position: relative; display: block; aspect-ratio: 16 / 9; padding: 14px; overflow: hidden; }
.mp-post-thumb .mp-chip { position: absolute; top: 14px; left: 14px; z-index: 1; }
.mp-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mp-thumb-a { background: linear-gradient(135deg, #8fd3e8, #cfe9f2); }
.mp-thumb-b { background: linear-gradient(135deg, #b7a58f, #e6ddd0); }
.mp-thumb-c { background: linear-gradient(135deg, #7fae6f, #cfe3b8); }
.mp-post-body { padding: 22px 24px 24px; }
.mp-post-date { color: var(--mp-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 10px; }
.mp-post-title { font-size: 21px; font-weight: 700; line-height: 1.25; margin: 0 0 12px; }
.mp-post-title a { color: inherit; }
.mp-post-title a:hover { color: var(--mp-primary); }
.mp-post-excerpt { color: var(--mp-ink-soft); font-size: 15px; margin: 0 0 20px; }
.mp-post-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--mp-surface-2); padding-top: 16px; }
.mp-byline { color: #aab4b4; font-size: 13px; }

/* ---------- Newsletter ---------- */
.mp-newsletter { margin-top: 72px; scroll-margin-top: calc(var(--mp-header-h) + 16px); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; background: linear-gradient(135deg, var(--mp-primary-strong), var(--mp-primary) 60%, #0a5a54); border-radius: 28px; padding: 44px 48px; color: #fff; box-shadow: var(--mp-shadow-2); }
.mp-nl-title { font-size: clamp(24px, 3vw, 32px); font-weight: 800; }
.mp-nl-lead { margin-top: 10px; color: rgba(255,255,255,.86); max-width: 440px; }
.mp-nl-form { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: var(--mp-radius-pill); padding: 8px 8px 8px 20px; min-width: min(420px, 100%); }
.mp-nl-form input { border: 0; outline: 0; background: transparent; font-family: var(--mp-font-body); font-size: 15px; flex: 1; color: var(--mp-ink); min-width: 120px; }

/* ---------- Footer ---------- */
.mp-footer { margin-top: 80px; background: var(--mp-surface-2); border-top: 1px solid var(--mp-outline); padding-top: 56px; }
.mp-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.mp-footer-about { color: var(--mp-muted); font-size: 15px; margin: 16px 0 0; max-width: 320px; }
.mp-footer-col h3 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--mp-ink-soft); margin: 0 0 16px; font-family: var(--mp-font-head); }
.mp-footer-col a { display: block; color: var(--mp-muted); font-size: 15px; padding: 6px 0; }
.mp-footer-col a:hover { color: var(--mp-primary); }
.mp-footer-bar { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--mp-outline); padding-top: 20px; padding-bottom: 28px; margin-top: 8px; color: var(--mp-muted); font-size: 14px; }
.mp-to-top { color: var(--mp-ink-soft); font-family: var(--mp-font-head); font-weight: 600; }
.mp-to-top:hover { color: var(--mp-primary); }

/* ---------- Internal pages (inherit shell) ---------- */
.mp-archive { padding-top: 40px; }
.mp-archive-head { margin-bottom: 28px; }
.mp-article { padding-top: 32px; padding-bottom: 24px; }
.mp-article-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.mp-article-hero img { border-radius: var(--mp-radius-card); margin-bottom: 24px; }
.mp-article :where(p, li) { color: var(--mp-ink-soft); font-size: 18px; line-height: 1.7; }
.mp-article :where(h2, h3) { font-family: var(--mp-font-head); margin-top: 1.6em; }

/* ---------- Responsive (model: 1140 / 960 / 782 / 480) ---------- */
@media (max-width: 1140px) {
  .mp-menu-desktop .mp-menu { gap: 18px; }
  .mp-menu-desktop .mp-menu a { font-size: 14px; }
}
/* Categorias: 4 numa linha (como o Stitch) no desktop/tablet; 2 só no celular. */
@media (max-width: 600px) {
  .mp-categories { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .mp-shell { padding-inline: 24px; }
  .mp-menu-desktop, .mp-header-actions .mp-search, .mp-header-cta { display: none; }
  .mp-mobile-toggle { display: flex; }
  .mp-card-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .mp-hero-overlay { padding: 32px 28px; }
  .mp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 782px) {
  body.admin-bar .mp-header { top: 46px; }
  .mp-hero { min-height: 380px; }
  .mp-hero-title { font-size: clamp(26px, 8vw, 40px); }
  .mp-newsletter { padding: 32px 24px; }
  .mp-footer-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .mp-shell { padding-inline: 16px; }
  .mp-nl-form { flex-direction: column; align-items: stretch; border-radius: 20px; padding: 12px; }
  .mp-nl-form .mp-btn { justify-content: center; }
  .mp-footer-grid { grid-template-columns: 1fr; }
  .mp-mobile-panel__dialog { width: calc(100% - .9rem); }
}

/* ================= Internal: Archive (categoria) ================= */
.mp-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--mp-muted); padding-top: 28px; }
.mp-breadcrumb a { color: var(--mp-primary); font-weight: 600; }
.mp-crumb-current { color: var(--mp-ink-soft); font-weight: 600; }
.mp-archive-head { margin: 14px 0 32px; }
.mp-archive-title { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; letter-spacing: -0.02em; }
.mp-archive-desc { margin-top: 12px; max-width: 640px; color: var(--mp-ink-soft); font-size: 18px; }
.mp-archive-top { display: grid; grid-template-columns: 1.9fr 1fr; gap: 28px; align-items: start; margin-bottom: 40px; }
.mp-feature-card { background: var(--mp-surface); border: 1px solid var(--mp-outline); border-radius: var(--mp-radius-card); overflow: hidden; box-shadow: var(--mp-shadow-1); }
.mp-feature-media { position: relative; display: block; aspect-ratio: 16/9; }
.mp-feature-media .mp-chip { position: absolute; top: 16px; left: 16px; z-index: 1; }
.mp-feature-body { padding: 26px 28px 30px; }
.mp-feature-cat { color: var(--mp-accent-strong); font-family: var(--mp-font-head); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.mp-feature-title { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; line-height: 1.2; margin: 10px 0 12px; }
.mp-feature-title a:hover { color: var(--mp-primary); }
.mp-feature-excerpt { color: var(--mp-ink-soft); font-size: 16px; margin: 0 0 18px; }
.mp-archive-side { display: flex; flex-direction: column; gap: 24px; }
.mp-side-filters { background: var(--mp-primary); color: #fff; border-radius: var(--mp-radius-card); padding: 24px; }
.mp-side-title { font-size: 20px; font-weight: 700; margin: 0 0 16px; }
.mp-side-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.mp-side-chip { background: rgba(255,255,255,0.16); color: #fff; border-radius: var(--mp-radius-pill); padding: 8px 14px; font-family: var(--mp-font-head); font-weight: 600; font-size: 13px; }
.mp-side-chip:hover { background: rgba(255,255,255,0.28); }
.mp-side-emergency { background: linear-gradient(135deg, var(--mp-accent), var(--mp-accent-strong)); color: #fff; border-radius: var(--mp-radius-card); padding: 24px; box-shadow: var(--mp-shadow-1); }
.mp-side-emergency-title { font-size: 20px; font-weight: 800; margin: 0 0 8px; }
.mp-side-emergency p { margin: 0 0 18px; color: rgba(255,255,255,0.92); font-size: 15px; }
.mp-post-meta { color: var(--mp-muted); font-size: 13px; }
.mp-pagination { display: flex; justify-content: center; gap: 8px; margin: 8px 0 8px; }
.mp-pagination .page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--mp-outline); border-radius: 12px; background: var(--mp-surface); font-family: var(--mp-font-head); font-weight: 600; color: var(--mp-ink-soft); }
.mp-pagination .page-numbers.current { background: var(--mp-primary); border-color: var(--mp-primary); color: #fff; }
.mp-pagination a.page-numbers:hover { border-color: var(--mp-primary); color: var(--mp-primary); }
.mp-archive-empty { color: var(--mp-ink-soft); font-size: 18px; padding: 24px 0 60px; }

/* ================= Internal: Single (artigo) ================= */
.mp-single { padding-top: 40px; }
.mp-single-head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.mp-single-cat { margin-bottom: 18px; }
.mp-single-title { font-size: clamp(30px, 4.6vw, 48px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.mp-single-meta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin-top: 18px; color: var(--mp-muted); font-size: 14px; }
.mp-single-author { color: var(--mp-ink); font-weight: 700; font-family: var(--mp-font-head); }
.mp-dot { color: var(--mp-outline); }
.mp-single-hero { margin: 0 0 40px; }
.mp-single-hero img { width: 100%; border-radius: var(--mp-radius-card); box-shadow: var(--mp-shadow-1); }
.mp-single-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 48px; align-items: start; }
.mp-single-content { font-size: 18px; line-height: 1.75; color: var(--mp-ink-soft); }
.mp-single-content > :where(p, ul, ol) { margin: 0 0 1.3em; }
.mp-single-content :where(h2, h3) { font-family: var(--mp-font-head); color: var(--mp-ink); margin: 1.7em 0 0.6em; line-height: 1.2; }
.mp-single-content h2 { font-size: 26px; font-weight: 700; }
.mp-single-content h3 { font-size: 21px; font-weight: 700; }
.mp-single-content img { border-radius: var(--mp-radius-card); }
.mp-single-content blockquote { margin: 1.6em 0; padding: 6px 0 6px 22px; border-left: 4px solid var(--mp-primary); color: var(--mp-ink); font-style: italic; }
.mp-single-content :where(.wp-block-quote, .is-style-callout) { background: var(--mp-surface-2); border-left: 4px solid var(--mp-accent); border-radius: 12px; padding: 18px 22px; font-style: normal; }
.mp-single-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--mp-outline); }
.mp-single-tags a { background: var(--mp-primary-tint); color: var(--mp-primary); border-radius: var(--mp-radius-pill); padding: 6px 14px; font-family: var(--mp-font-head); font-weight: 600; font-size: 13px; }
.mp-single-side { display: flex; flex-direction: column; gap: 28px; position: sticky; top: calc(var(--mp-header-h) + 24px); }
.mp-side-newsletter { background: linear-gradient(135deg, var(--mp-primary-strong), var(--mp-primary)); color: #fff; border-radius: var(--mp-radius-card); padding: 26px; box-shadow: var(--mp-shadow-1); }
.mp-side-newsletter h2 { font-size: 21px; font-weight: 800; margin: 0 0 8px; }
.mp-side-newsletter p { color: rgba(255,255,255,0.9); font-size: 14px; margin: 0 0 18px; }
.mp-side-nl-form { display: flex; flex-direction: column; gap: 10px; }
.mp-side-nl-form input { border: 0; border-radius: 12px; padding: 12px 14px; font-family: var(--mp-font-body); font-size: 14px; }
.mp-side-nl-form .mp-btn { justify-content: center; }
.mp-side-popular { background: var(--mp-surface); border: 1px solid var(--mp-outline); border-radius: var(--mp-radius-card); padding: 24px; box-shadow: var(--mp-shadow-1); }
.mp-popular-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.mp-popular-list li { display: flex; gap: 14px; align-items: flex-start; }
.mp-popular-num { font-family: var(--mp-font-head); font-weight: 800; font-size: 22px; color: var(--mp-outline); line-height: 1; }
.mp-popular-list a { display: flex; flex-direction: column; gap: 2px; }
.mp-popular-list strong { font-family: var(--mp-font-head); font-size: 15px; font-weight: 600; color: var(--mp-ink); line-height: 1.3; }
.mp-popular-list a:hover strong { color: var(--mp-primary); }
.mp-popular-list em { font-style: normal; font-size: 11px; letter-spacing: 0.06em; color: var(--mp-muted); }
.mp-related { margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--mp-outline); }

@media (max-width: 960px) {
  .mp-archive-top { grid-template-columns: 1fr; }
  .mp-single-grid { grid-template-columns: 1fr; gap: 32px; }
  .mp-single-side { position: static; }
}

/* ================= Clickable cards (stretched-link) ================= */
.mp-post-card, .mp-feature-card { position: relative; }
/* a área toda do card navega para o link primário (título); demais links ficam acima */
.mp-post-card .mp-stretch::after,
.mp-feature-card .mp-stretch::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.mp-post-card a:not(.mp-stretch),
.mp-post-card .mp-chip,
.mp-feature-card a:not(.mp-stretch),
.mp-feature-card .mp-chip { position: relative; z-index: 2; }
.mp-post-card, .mp-feature-card, .mp-cat-card { cursor: pointer; }

/* ================= Newsletter form states ================= */
.mp-nl-action { display: flex; flex-direction: column; gap: 8px; min-width: min(420px, 100%); }
.mp-nl-fine { margin: 0; font-size: 12px; color: rgba(255, 255, 255, 0.7); }
.mp-nl-status { margin: 0; font-size: 13px; font-weight: 600; min-height: 1em; }
.mp-nl-status.is-ok { color: #d7fbef; }
.mp-nl-status.is-error { color: #ffd7d2; }
.mp-side-newsletter .mp-nl-fine { color: rgba(255, 255, 255, 0.72); margin-top: 4px; }
.mp-side-newsletter .mp-nl-status { margin-top: 6px; }

/* ================= Logo do editor (globals) ================= */
.mp-brand--logo { display: inline-flex; align-items: center; line-height: 0; }
.mp-brand-img { height: 40px; width: auto; max-width: 220px; display: block; }
.mp-mobile-head .mp-brand-img { height: 34px; }
@media (max-width: 782px) { .mp-brand-img { height: 34px; } }
