/* ════════════════════════════════════════════════════════════════
   ENHANCEMENTS.CSS — deferitappusa.com
   Components: Quick Verdict, How We Tested, Comparison Tables,
   Reading Progress Bar, Sticky TOC, Related Articles
   Load AFTER: style.css, theme-cloud-mint.css, legal.css, responsive.css
   ════════════════════════════════════════════════════════════════ */


/* ┌─────────────────────────────────────────────────────────────┐
   │  A1. QUICK VERDICT / TL;DR BOX                              │
   └─────────────────────────────────────────────────────────────┘ */
.quick-verdict {
  background: linear-gradient(135deg, #F5FDFB 0%, #EAF8F3 100%);
  border: 2px solid #00C896;
  border-radius: 14px;
  padding: 26px 30px;
  margin: 0 auto 32px;
  max-width: 820px;
  box-shadow: 0 4px 16px rgba(0, 200, 150, 0.12);
  position: relative;
  overflow: hidden;
}
.quick-verdict::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(0, 200, 150, 0.08);
  border-radius: 50%;
}
.quick-verdict-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00A87E;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-verdict-label::before {
  content: "⚡";
  font-size: 1.1rem;
}
.quick-verdict h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800;
  color: #0D3D28 !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}
.quick-verdict h2::before { display: none !important; }
.qv-score {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 18px;
  border: 1px solid #C5E8DC;
}
.qv-score-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #1E7A5A;
  line-height: 1;
}
.qv-score-max {
  font-size: 1rem;
  color: #2D6B52;
}
.qv-score-stars {
  font-size: 1rem;
  color: #FFB800;
  letter-spacing: 1px;
  margin-left: 6px;
}
.qv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 16px;
}
.qv-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #0D3D28;
}
.qv-item-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1px;
}
.qv-item-icon.good {
  background: #00C896;
  color: #fff;
}
.qv-item-icon.bad {
  background: #FF6B35;
  color: #fff;
}
.qv-item-icon.info {
  background: #1E7A5A;
  color: #fff;
}
.qv-item-label {
  font-weight: 700;
  color: #1E7A5A;
}
.qv-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #C5E8DC;
  font-size: 0.82rem;
  color: #2D6B52;
}
.qv-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
@media (max-width: 640px) {
  .quick-verdict { padding: 22px 20px; margin: 0 14px 24px; }
  .qv-row { grid-template-columns: 1fr; gap: 10px; }
  .quick-verdict h2 { font-size: 1.2rem !important; }
  .qv-score-num { font-size: 1.7rem; }
}


/* ┌─────────────────────────────────────────────────────────────┐
   │  A2. READING PROGRESS BAR                                   │
   └─────────────────────────────────────────────────────────────┘ */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #00C896 0%, #1E7A5A 100%);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 1px 4px rgba(0, 200, 150, 0.3);
}


/* ┌─────────────────────────────────────────────────────────────┐
   │  A3. READING TIME META PILL                                 │
   └─────────────────────────────────────────────────────────────┘ */
.reading-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #C5E8DC;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: #2D6B52;
  font-weight: 600;
  margin-bottom: 14px;
}
.reading-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}


/* ┌─────────────────────────────────────────────────────────────┐
   │  A4. STICKY TABLE OF CONTENTS (TOC)                         │
   └─────────────────────────────────────────────────────────────┘ */
.article-toc {
  background: #fff;
  border: 1px solid #C5E8DC;
  border-radius: 12px;
  margin: 0 auto 32px;
  max-width: 820px;
  overflow: hidden;
  transition: all 0.3s;
}
.article-toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  cursor: pointer;
  background: #F5FDFB;
  border-bottom: 1px solid transparent;
  user-select: none;
  transition: background 0.15s;
}
.article-toc-header:hover {
  background: #EAF8F3;
}
.article-toc.open .article-toc-header {
  border-bottom-color: #C5E8DC;
}
.article-toc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1E7A5A;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-toc-toggle {
  font-size: 1.3rem;
  color: #1E7A5A;
  font-weight: 700;
  transition: transform 0.3s;
}
.article-toc.open .article-toc-toggle {
  transform: rotate(45deg);
}
.article-toc-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}
.article-toc.open .article-toc-list {
  max-height: 800px;
}
.article-toc-list ol {
  list-style: none;
  padding: 18px 22px 20px;
  margin: 0;
  counter-reset: toc;
}
.article-toc-list li {
  counter-increment: toc;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.article-toc-list li::before {
  content: counter(toc) ".";
  position: absolute;
  left: 0;
  color: #00C896;
  font-weight: 800;
  font-size: 0.82rem;
}
.article-toc-list a {
  color: #0D3D28;
  font-size: 0.92rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
  border-left: 2px solid transparent;
  padding-left: 8px;
  margin-left: -10px;
}
.article-toc-list a:hover {
  color: #1E7A5A;
}
.article-toc-list a.toc-active {
  color: #1E7A5A;
  font-weight: 700;
  border-left-color: #00C896;
}


/* ┌─────────────────────────────────────────────────────────────┐
   │  B5. "HOW WE TESTED" METHODOLOGY BOX                        │
   └─────────────────────────────────────────────────────────────┘ */
.how-tested {
  background: linear-gradient(135deg, #1E7A5A 0%, #2E9970 100%);
  border-radius: 14px;
  padding: 26px 30px;
  margin: 32px auto;
  max-width: 820px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.how-tested::before {
  content: "🔬";
  position: absolute;
  top: -20px; right: -20px;
  font-size: 7rem;
  opacity: 0.08;
}
.how-tested-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00C896;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.how-tested h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.3rem !important;
  color: #fff !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.how-tested h2::before { display: none !important; }
.how-tested-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.how-tested-points li {
  list-style: none !important;
  padding-left: 28px !important;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  margin: 0 !important;
}
.how-tested-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 20px; height: 20px;
  background: #00C896;
  color: #0D3D28;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.78rem;
  top: 1px;
}
.how-tested-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.how-tested-byline img {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid #00C896;
  object-fit: cover;
  flex-shrink: 0;
}
.how-tested-byline-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}
.how-tested-byline-text a {
  color: #00C896 !important;
  font-weight: 700;
  text-decoration: none;
}
.how-tested-byline-text a:hover {
  color: #fff !important;
  text-decoration: underline;
}
.how-tested-byline-name {
  font-weight: 800;
  color: #fff;
}
@media (max-width: 640px) {
  .how-tested { padding: 22px 20px; margin: 24px 14px; }
  .how-tested-points { grid-template-columns: 1fr; gap: 10px; }
  .how-tested h2 { font-size: 1.15rem !important; }
}


/* ┌─────────────────────────────────────────────────────────────┐
   │  B1. COMPARISON TABLE                                       │
   └─────────────────────────────────────────────────────────────┘ */
.cmp-table-wrap {
  max-width: 980px;
  margin: 32px auto;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(30, 122, 90, 0.08);
  border: 1px solid #C5E8DC;
  font-size: 0.92rem;
  min-width: 600px;
}
.cmp-table thead {
  background: linear-gradient(135deg, #1E7A5A 0%, #2E9970 100%);
}
.cmp-table thead th {
  padding: 16px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 800;
  text-align: left;
  border: none;
  letter-spacing: 0.02em;
}
.cmp-table thead th:first-child {
  background: rgba(255,255,255,0.08);
}
.cmp-table thead th.recommended {
  background: rgba(0, 200, 150, 0.25);
  position: relative;
}
.cmp-table thead th.recommended::after {
  content: "⭐ TOP PICK";
  position: absolute;
  top: -10px; right: 10px;
  background: #FF6B35;
  color: #fff;
  font-size: 0.66rem;
  padding: 3px 9px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.cmp-table tbody tr {
  transition: background 0.15s;
}
.cmp-table tbody tr:nth-child(even) {
  background: #F5FDFB;
}
.cmp-table tbody tr:hover {
  background: #EAF8F3;
}
.cmp-table tbody tr.cmp-section-divider td {
  background: #1E7A5A;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 10px 18px;
}
.cmp-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #EAF8F3;
  color: #0D3D28;
  vertical-align: top;
  line-height: 1.5;
}
.cmp-table td:first-child {
  font-weight: 700;
  color: #1E7A5A;
  background: #F5FDFB;
  border-right: 1px solid #C5E8DC;
}
.cmp-table tbody tr:last-child td {
  border-bottom: none;
}
.cmp-cell-good {
  color: #00A87E;
  font-weight: 700;
}
.cmp-cell-bad {
  color: #B45309;
  font-weight: 600;
}
.cmp-cell-neutral {
  color: #2D6B52;
}
.cmp-badge-good, .cmp-badge-bad, .cmp-badge-meh {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  letter-spacing: 0.04em;
}
.cmp-badge-good { background: #DCFCE7; color: #16A34A; }
.cmp-badge-bad { background: #FEE2E2; color: #DC2626; }
.cmp-badge-meh { background: #FEF3C7; color: #B45309; }


/* ┌─────────────────────────────────────────────────────────────┐
   │  C1. RELATED ARTICLES                                       │
   └─────────────────────────────────────────────────────────────┘ */
.related-articles {
  background: #F5FDFB;
  border-top: 1px solid #C5E8DC;
  border-bottom: 1px solid #C5E8DC;
  padding: 48px 20px;
  margin: 32px 0;
}
.related-articles-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.related-articles-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00A87E;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.related-articles h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 800;
  color: #0D3D28 !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
}
.related-articles h2::before { display: none !important; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  background: #fff;
  border: 1px solid #C5E8DC;
  border-radius: 12px;
  padding: 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s;
  cursor: pointer;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 122, 90, 0.12);
  border-color: #00C896;
}
.related-card-type {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1E7A5A;
  background: #EAF8F3;
  padding: 4px 10px;
  border-radius: 10px;
  width: fit-content;
}
.related-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0D3D28;
  line-height: 1.35;
  margin: 0;
}
.related-card-excerpt {
  font-size: 0.86rem;
  color: #2D6B52;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.related-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #1E7A5A;
  font-weight: 700;
  padding-top: 10px;
  border-top: 1px solid #EAF8F3;
}
.related-card-meta::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.2s;
}
.related-card:hover .related-card-meta::after {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .related-grid { grid-template-columns: 1fr; }
  .related-articles { padding: 36px 16px; }
  .related-articles h2 { font-size: 1.25rem !important; }
}


/* ┌─────────────────────────────────────────────────────────────┐
   │  BACK TO TOP BUTTON (bottom-right floating)                 │
   └─────────────────────────────────────────────────────────────┘ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00C896 0%, #1E7A5A 100%);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30, 122, 90, 0.35),
              0 2px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.3s ease,
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease,
              visibility 0.3s;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.45),
              0 4px 10px rgba(0, 0, 0, 0.12);
}
.back-to-top:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 0.1s;
}
.back-to-top:focus-visible {
  box-shadow: 0 4px 16px rgba(30, 122, 90, 0.35),
              0 0 0 3px rgba(0, 200, 150, 0.4);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Tooltip on hover (desktop only) */
.back-to-top::before {
  content: "Back to top";
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #0D3D28;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  pointer-events: none;
}
.back-to-top::after {
  content: "";
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0D3D28;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  pointer-events: none;
}
.back-to-top:hover::before,
.back-to-top:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Mobile: smaller + clear the floating apply button if present */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;     /* clear floating apply button on mobile */
    right: 14px;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg {
    width: 19px;
    height: 19px;
  }
  /* Hide tooltip on mobile (touch — no hover) */
  .back-to-top::before,
  .back-to-top::after {
    display: none;
  }
}

/* Even tighter on small phones */
@media (max-width: 480px) {
  .back-to-top {
    bottom: 76px;
    right: 12px;
    width: 42px;
    height: 42px;
  }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 0.15s, visibility 0.15s;
    transform: none !important;
  }
  .back-to-top.visible { transform: none !important; }
}


/* ┌─────────────────────────────────────────────────────────────┐
   │  Smooth scroll for TOC anchors                              │
   └─────────────────────────────────────────────────────────────┘ */
html {
  scroll-padding-top: 16px;
}

  .apply-trust-signals { gap: 10px 16px; font-size: 0.8rem; }
}


/* ═══════════════════════════════════════════════════════════════
   APPLY CTA BOX — Lead Generation Button Block
   ═══════════════════════════════════════════════════════════════ */
.apply-cta-box {
  background: linear-gradient(135deg, #1E7A5A 0%, #00C896 100%);
  border-radius: 18px;
  padding: 38px 32px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 18px 44px rgba(30, 122, 90, 0.22);
  position: relative;
  overflow: hidden;
}
.apply-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.apply-cta-box h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.25;
  position: relative;
}
.apply-cta-box p {
  font-size: 1.02rem;
  margin: 0 0 22px;
  opacity: 0.96;
  color: #fff;
  position: relative;
}
.apply-cta-btn {
  display: inline-block;
  background: #FF6B35;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 17px 38px;
  border-radius: 12px;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.42);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
  cursor: pointer;
  border: none;
}
.apply-cta-btn:hover, .apply-cta-btn:focus {
  background: #FF8052;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 107, 53, 0.52);
  text-decoration: none;
}
.apply-cta-btn:active { transform: translateY(0); }
.apply-trust-signals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 20px;
  font-size: 0.86rem;
  opacity: 0.94;
  position: relative;
}
.apply-trust-signals span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 600px) {
  .apply-cta-box { padding: 30px 22px 24px; }
  .apply-cta-box h3 { font-size: 1.3rem; }
  .apply-cta-btn { font-size: 1.05rem; padding: 14px 28px; width: 100%; box-sizing: border-box; }
  .apply-trust-signals { gap: 10px 16px; font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════════════════════════
   MID-ARTICLE CTA — Compact inline CTA placed in content
   ═══════════════════════════════════════════════════════════════ */
.mid-article-cta {
  background: #fff;
  border: 2px solid #1E7A5A;
  border-left: 6px solid #FF6B35;
  border-radius: 14px;
  padding: 24px 26px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 6px 18px rgba(30, 122, 90, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.mid-article-cta:hover {
  box-shadow: 0 10px 28px rgba(30, 122, 90, 0.14);
  transform: translateY(-1px);
}
.mid-article-cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1E7A5A, #00C896);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
}
.mid-article-cta-content {
  flex-grow: 1;
  min-width: 0;
}
.mid-article-cta-label {
  display: inline-block;
  background: #E8F8F2;
  color: #1E7A5A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 6px;
}
.mid-article-cta h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: #0D3D28;
  line-height: 1.3;
}
.mid-article-cta p {
  font-size: 0.94rem;
  margin: 0;
  color: #5B7269;
  line-height: 1.5;
}
.mid-article-cta-btn {
  flex-shrink: 0;
  background: #FF6B35;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.96rem;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.32);
  transition: all 0.18s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
}
.mid-article-cta-btn:hover, .mid-article-cta-btn:focus {
  background: #FF8052;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 107, 53, 0.42);
  text-decoration: none;
}
@media (max-width: 720px) {
  .mid-article-cta {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
    gap: 16px;
  }
  .mid-article-cta-icon { margin: 0 auto; }
  .mid-article-cta-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
  }
  .mid-article-cta h4 { font-size: 1.08rem; }
  .mid-article-cta p { font-size: 0.88rem; }
}
