
:root {
  --green-dark: #1a4a26; --green: #2a7d3a; --green-light: #4db866;
  --green-pale: #e8f5eb; --text: #1a2e1a; --gray: #6b7280;
  --border: #d1d5db; --white: #ffffff; --off: #f8f9fa;
  --gray-light: #e5e7eb; --gray-lighter: #f3f4f6;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: #b7e4c7; color: var(--green-dark); }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); font-size: 16px; }
a { color: inherit; }
img { max-width: 100%; }

/* NAV */
nav { height: 68px; padding: 0 64px; display: flex; align-items: center; justify-content: space-between; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.logo { text-decoration: none; display: flex; align-items: center; }
.logo svg { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--gray); text-decoration: none; font-weight: 400; transition: color .2s; }
.nav-links a:hover { color: var(--green-dark); }
.nav-cta { background: transparent !important; color: var(--green-dark) !important; padding: 10px 22px; border-radius: 6px; border: 1.5px solid var(--green-dark); font-size: 14px !important; font-weight: 500 !important; transition: background .2s, color .2s; cursor: pointer; text-decoration: none; }
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-chevron { width: 14px; height: 14px; transition: transform .2s; }
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-submenu { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 8px; min-width: 260px; box-shadow: 0 8px 32px rgba(0,0,0,.1); z-index: 200; }
.nav-dropdown.open .nav-submenu { display: block; animation: fadeDown .15s ease; }
@keyframes fadeDown { from{opacity:0;transform:translateX(-50%) translateY(-6px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }
.nav-sub-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; text-decoration: none; transition: background .15s; }
.nav-sub-item:hover { background: var(--green-pale); }
.nav-sub-live { color: var(--text); font-weight: 500; cursor: pointer; }
.nav-sub-soon { color: var(--gray); cursor: default; opacity: .7; }
.nav-sub-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
.nav-sub-tag { font-size: 10px; background: var(--green-pale); color: var(--green); padding: 2px 7px; border-radius: 10px; font-weight: 600; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link { font-size: 15px; color: var(--text); text-decoration: none; padding: 10px 0; font-weight: 400; border-bottom: 1px solid var(--border); }
.nav-mobile-calcs { display: flex; flex-direction: column; gap: 2px; padding: 4px 0 4px 12px; }
.nav-mobile-calcs a { font-size: 14px; color: var(--gray); text-decoration: none; padding: 6px 0; }
.nav-mobile-cta { margin-top: 8px; padding: 12px; background: var(--green-dark); color: var(--white) !important; text-align: center; border-radius: 8px; font-weight: 500; text-decoration: none; }

/* FOOTER */
footer { padding: 0; background: var(--white); }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 32px 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; position: relative; }
.footer-inner::before { content: ''; position: absolute; top: 0; left: 64px; right: 64px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 12px; color: var(--gray); font-weight: 300; }
.footer-disclaimer { padding: 0; }
.footer-disclaimer-inner { max-width: 1320px; margin: 0 auto; padding: 0 64px 24px; }
.footer-disclaimer p { font-size: 11px; color: var(--gray); line-height: 1.6; font-weight: 300; opacity: .7; }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 500; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: 16px; padding: 36px; max-width: 480px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; cursor: pointer; font-size: 20px; color: var(--gray); line-height: 1; padding: 4px; }
.modal-close:hover { color: var(--text); }
.modal-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); background: var(--green-pale); padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.modal-title { font-family: 'DM Serif Display', serif; font-size: 24px; line-height: 1.2; color: var(--text); margin-bottom: 10px; }
.modal-title em { font-style: italic; color: var(--green-dark); }
.modal-sub { font-size: 14px; color: var(--gray); font-weight: 300; line-height: 1.6; margin-bottom: 20px; }
.modal-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.modal-input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color .2s; background: var(--white); cursor: text; }
.modal-input:focus { border-color: var(--green); }
.modal-input.error { border-color: #dc2626; }
.modal-submit { width: 100%; padding: 15px; background: var(--green-dark); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; border: none; border-radius: 8px; cursor: pointer; position: relative; overflow: hidden; isolation: isolate; transition: transform .2s ease, box-shadow .25s ease; }
.modal-submit::before { content: ""; position: absolute; inset: 0; background: var(--green); z-index: -1; pointer-events: none; transform: translateX(-101%); transition: transform .35s ease; }
.modal-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,74,38,.3); }
.modal-submit:hover::before { transform: translateX(0); }
.modal-privacy { font-size: 12px; color: var(--gray); margin-top: 10px; text-align: center; font-weight: 300; }
.modal-accept { display: flex; align-items: flex-start; gap: 10px; margin: 12px 0 4px; cursor: pointer; }
.modal-accept input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green-dark); cursor: pointer; }
.modal-accept-label { font-size: 12px; color: var(--gray); line-height: 1.5; font-weight: 300; }
.modal-accept-label a { color: var(--green-dark); text-decoration: underline; }
.qual-paths { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.qual-path-btn { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; text-align: left; width: 100%; transition: border-color .2s, background .2s, transform .15s; }
.qual-path-btn:hover { border-color: var(--green); background: var(--green-pale); transform: translateX(3px); }
.qual-path-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qual-path-icon svg { width: 20px; height: 20px; color: var(--green-dark); }
.qual-path-text { flex: 1; }
.qual-path-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.qual-path-text span { font-size: 13px; color: var(--gray); font-weight: 300; }
.qual-path-arrow { width: 16px; height: 16px; color: var(--gray); flex-shrink: 0; }
.qual-back { font-size: 13px; color: var(--gray); cursor: pointer; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 4px; transition: color .15s; }
.qual-back:hover { color: var(--green-dark); }
.qual-options { display: flex; flex-direction: column; gap: 8px; }
.qual-opt { padding: 13px 16px; border-radius: 8px; text-align: left; border: 1.5px solid var(--border); background: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; color: var(--text); cursor: pointer; transition: border-color .15s, background .15s; }
.qual-opt:hover { border-color: var(--green); background: var(--green-pale); }
.qual-opt.active-opt { border-color: var(--green-dark); background: var(--green-pale); font-weight: 500; color: var(--green-dark); }
.qual-opt-sm { padding: 10px 12px; font-size: 13px; text-align: center; }
.qual-step { display: block; }

/* CHAT */
.chat-trigger {
  position: fixed; bottom: 32px; right: 32px; z-index: 300;
  width: 60px; height: 60px; background: #00c853;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,200,83,.5), 0 0 0 0 rgba(0,200,83,.35);
  transition: background .2s, transform .2s;
  animation: chatPulse 2.8s ease-in-out infinite;
}
.chat-trigger:hover { background: #00e676; transform: scale(1.08); animation: none; }
@keyframes chatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(0,200,83,.5), 0 0 0 0 rgba(0,200,83,.35); }
  50% { box-shadow: 0 4px 20px rgba(0,200,83,.5), 0 0 0 14px rgba(0,200,83,0); }
}
.chat-trigger svg { width: 24px; height: 24px; color: var(--white); }
.chat-bubble {
  position: fixed; bottom: 104px; right: 32px; z-index: 300;
  width: 380px; background: var(--white);
  border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 10px 56px rgba(30,77,43,.17);
  display: none; flex-direction: column; overflow: hidden;
  max-height: 520px;
}
.chat-bubble.open { display: flex; animation: popUp .22s ease; }
@keyframes popUp { from{opacity:0;transform:scale(.95) translateY(8px)} to{opacity:1;transform:scale(1) translateY(0)} }

.chat-head { background: var(--green-dark); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; }
.chat-head-l { display: flex; align-items: center; gap: 12px; }
.chat-avatar-wrap {
  position: relative; width: 38px; height: 38px; flex-shrink: 0;
}
.chat-avatar-img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; object-position: top; display: block;
}
.chat-online-dot {
  position: absolute; bottom: 0; right: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: #00c853; border: 2px solid var(--green-dark);
}
.chat-avatar {
  width: 38px; height: 38px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; color: var(--white); font-family: 'DM Serif Display', serif;
}
.chat-name { font-size: 15px; font-weight: 500; color: var(--white); }
.chat-status { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 300; }
.chat-x { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.4); font-size: 24px; line-height: 1; padding: 0; transition: color .2s; }
.chat-x:hover { color: var(--white); }

.chat-msgs { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; min-height: 240px; max-height: 320px; }
.msg { max-width: 87%; padding: 11px 15px; border-radius: 14px; font-size: 14px; line-height: 1.6; }
.msg.bot { background: var(--gray-lighter); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.user { background: var(--green-dark); color: var(--white); border-bottom-right-radius: 4px; align-self: flex-end; }
.msg.typing { background: var(--gray-lighter); color: var(--gray); font-style: italic; align-self: flex-start; }

.chat-suggs { padding: 0 18px 12px; display: flex; flex-wrap: wrap; gap: 7px; }
.sugg {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  color: var(--green-dark); background: var(--green-pale);
  border: none; border-radius: 20px; padding: 6px 13px;
  cursor: pointer; transition: background .15s;
}
.sugg:hover { background: #bbf7d0; }

.chat-input-row { padding: 14px 18px; border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: center; }
.chat-input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 10px 15px; font-size: 14px;
  font-family: 'DM Sans', sans-serif; color: var(--text);
  outline: none; transition: border-color .2s;
}
.chat-input:focus { border-color: var(--green-light); }
.chat-send {
  width: 40px; height: 40px; background: var(--green-dark);
  border: none; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
  color: #ffffff;
}
.chat-send:hover { background: var(--green); }
.chat-send svg { width: 18px; height: 18px; }

/* ARTICLE LAYOUT */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 112px 64px 64px; display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: start; }
.article-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.article-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); background: var(--green-pale); padding: 4px 12px; border-radius: 20px; }
.article-read-time { font-size: 13px; color: var(--gray); font-weight: 300; }
.article-title { font-family: "DM Serif Display", serif; font-size: clamp(28px,3.5vw,44px); line-height: 1.15; color: var(--text); margin-bottom: 20px; }
.article-subtitle { font-size: 18px; color: var(--gray); font-weight: 300; line-height: 1.6; margin-bottom: 28px; border-left: 3px solid var(--green-light); padding-left: 20px; }
.article-hero-img { position: relative; border-radius: 14px; overflow: hidden; margin: 24px 0 32px; height: 340px; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,74,38,.88) 0%,rgba(26,74,38,.5) 55%,rgba(77,184,102,.18) 100%); }
.article-body { font-size: 17px; line-height: 1.75; }
.article-body h2 { font-family: "DM Serif Display", serif; font-size: 26px; color: var(--text); margin: 48px 0 16px; line-height: 1.2; }
.article-body h3 { font-size: 18px; font-weight: 600; color: var(--text); margin: 32px 0 12px; }
.article-body p { margin-bottom: 20px; color: #374151; line-height: 1.75; }
.article-body ul, .article-body ol { margin: 16px 0 24px 24px; }
.article-body li { margin-bottom: 8px; color: #374151; line-height: 1.7; }
.article-body strong { font-weight: 600; color: var(--text); }
.article-body a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.highlight-box { background: var(--green-pale); border-left: 4px solid var(--green); border-radius: 0 10px 10px 0; padding: 20px 24px; margin: 28px 0; }
.highlight-box p { margin: 0; color: var(--text); }
.warning-box { background: #fff9f0; border-left: 4px solid #f59e0b; border-radius: 0 10px 10px 0; padding: 20px 24px; margin: 28px 0; }
.warning-box p { margin: 0; color: #78350f; }
.compare-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.compare-table th { padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.compare-table th:first-child { background: var(--off); color: var(--gray); }
.compare-table th.th-green { background: var(--green-dark); color: var(--white); }
.compare-table th.th-red { background: #fef2f2; color: #b91c1c; }
.compare-table td { padding: 14px 20px; border-top: 1px solid var(--border); vertical-align: top; }
.compare-table tr:nth-child(even) td { background: var(--off); }
.compare-table td:first-child { font-weight: 500; color: var(--text); }
.td-win { color: var(--green-dark); font-weight: 600; }
.td-lose { color: #b91c1c; }
.number-example { background: var(--green-dark); border-radius: 12px; padding: 28px 32px; margin: 32px 0; color: var(--white); }
.number-example-title { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; }
.number-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 16px; }
.number-col-label { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.number-col-val { font-family: "DM Serif Display", serif; font-size: 28px; line-height: 1; }
.number-col-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }
.number-eco { border-top: 1px solid rgba(255,255,255,.15); padding-top: 16px; margin-top: 4px; display: flex; align-items: baseline; gap: 12px; }
.number-eco-label { font-size: 13px; color: rgba(255,255,255,.7); }
.number-eco-val { font-family: "DM Serif Display", serif; font-size: 36px; color: var(--green-light); }
.article-cta-inline { background: var(--off); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; margin: 36px 0; display: flex; align-items: center; gap: 20px; }
.article-cta-inline-text h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.article-cta-inline-text p { font-size: 14px; color: var(--gray); margin: 0; font-weight: 300; }




.article-author-box { display: flex; align-items: center; gap: 16px; padding: 24px; background: var(--off); border: 1px solid var(--border); border-radius: 12px; margin-top: 48px; }
.article-author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--green-dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; flex-shrink: 0; }
.article-author-info strong { display: block; font-size: 15px; font-weight: 600; }
.article-author-info span { font-size: 13px; color: var(--gray); font-weight: 300; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 0; padding-top: 32px; border-top: 1px solid var(--border); }
.article-tag-item { font-size: 12px; color: var(--gray); background: var(--off); padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border); }
.sidebar { position: sticky; top: 88px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 20px; }
.sidebar-card-cta { background: var(--green-dark); border: none; }
.sidebar-title { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.sidebar-title-white { color: rgba(255,255,255,.6); }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-item a { font-size: 14px; color: var(--gray); text-decoration: none; padding: 6px 10px; border-radius: 6px; display: block; transition: background .15s, color .15s; font-weight: 300; }
.toc-item a:hover { background: var(--green-pale); color: var(--green-dark); }
.sidebar-cta-title { font-family: "DM Serif Display", serif; font-size: 20px; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.sidebar-cta-sub { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 20px; font-weight: 300; line-height: 1.5; }
.sidebar-cta-btn { display: block; width: 100%; padding: 13px; text-align: center; background: var(--green-light); color: var(--white); border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 500; position: relative; overflow: hidden; isolation: isolate; transition: transform .2s ease, box-shadow .25s ease; }
.sidebar-cta-btn::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: #3da852; transform: translateX(-101%); transition: transform .35s ease; }
.sidebar-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,184,102,.4); }
.sidebar-cta-btn:hover::before { transform: translateX(0); }
.related-list { display: flex; flex-direction: column; gap: 14px; }
.related-item { text-decoration: none; display: block; }
.related-item-title { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.4; margin-bottom: 3px; transition: color .15s; }
.related-item:hover .related-item-title { color: var(--green-dark); }
.related-item-meta { font-size: 12px; color: var(--gray); font-weight: 300; }

/* RESPONSIVE */
@media (max-width: 1100px) { .page-wrap { padding: 92px 32px 48px; } }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-wrap { grid-template-columns: 1fr; gap: 48px; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .number-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .page-wrap { padding: 80px 20px 36px; }
  .article-cta-inline { flex-direction: column; align-items: flex-start; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-inner { padding: 24px 20px; }
  .footer-inner::before { left: 20px; right: 20px; }
  .footer-disclaimer-inner { padding: 0 20px 20px; }
}

/* ── BOTÃO CTA FIX ── */
.article-cta-btn {
  flex-shrink: 0; padding: 12px 24px; border-radius: 8px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  white-space: nowrap; cursor: pointer;
  background: var(--green-dark); color: var(--white) !important;
  border: none; display: inline-block;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.article-cta-btn:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,74,38,.3); }

/* ── PRÓXIMOS CONTEÚDOS ── */
.next-articles {
  margin-top: 56px; padding-top: 40px;
  border-top: 2px solid var(--border);
}
.next-articles-title {
  font-family: "DM Serif Display", serif;
  font-size: 22px; color: var(--text); margin-bottom: 24px;
}
.next-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.next-card {
  text-decoration: none; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); display: block;
  transition: box-shadow .2s, transform .2s;
}
.next-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.next-card-img { position: relative; height: 130px; overflow: hidden; }
.next-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.next-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 40%,rgba(26,74,38,.45) 100%); }
.next-card-body { padding: 14px 16px; background: var(--white); }
.next-card-tag { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }
.next-card-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.35; margin-top: 4px; }
.next-card-meta { font-size: 12px; color: var(--gray); margin-top: 6px; font-weight: 300; }
@media(max-width:640px){ .next-grid{grid-template-columns:1fr} }

.article-cta-inline .article-cta-btn,
.article-cta-inline .article-cta-btn:visited {
  color: var(--white) !important;
  text-decoration: none !important;
  background: var(--green-dark);
}
.article-cta-inline .article-cta-btn:hover {
  color: var(--white) !important;
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26,74,38,.3);
  text-decoration: none !important;
}
