/* Shared visual refresh for individual blog article pages */
.blog-post {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--nav-offset, 84px) + 14px);
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 2vw, 1.5rem);
}

.blog-post::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(72, 161, 50, 0.08) 0, rgba(72, 161, 50, 0.08) 12px, transparent 12px),
    radial-gradient(circle at 78% 22%, rgba(72, 161, 50, 0.06) 0, rgba(72, 161, 50, 0.06) 8px, transparent 8px),
    radial-gradient(circle at 22% 74%, rgba(72, 161, 50, 0.08) 0, rgba(72, 161, 50, 0.08) 10px, transparent 10px),
    radial-gradient(circle at 84% 72%, rgba(72, 161, 50, 0.05) 0, rgba(72, 161, 50, 0.05) 9px, transparent 9px);
  background-size: 220px 220px, 260px 260px, 240px 240px, 280px 280px;
  opacity: 0.52;
}

[data-theme="dark"] .blog-post::before {
  opacity: 0.34;
}

.blog-post > * {
  position: relative;
  z-index: 1;
}

.blog-post-header,
.blog-post-content,
.blog-social-share,
.blog-post-cta {
  border: 1px solid rgba(72, 161, 50, 0.12);
  box-shadow: 0 14px 34px rgba(10, 18, 38, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

[data-theme="dark"] .blog-post-header,
[data-theme="dark"] .blog-post-content,
[data-theme="dark"] .blog-social-share,
[data-theme="dark"] .blog-post-cta {
  border-color: rgba(138, 228, 107, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.blog-post-header:hover,
.blog-post-content:hover,
.blog-social-share:hover,
.blog-post-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(10, 18, 38, 0.12);
}

[data-theme="dark"] .blog-post-header:hover,
[data-theme="dark"] .blog-post-content:hover,
[data-theme="dark"] .blog-social-share:hover,
[data-theme="dark"] .blog-post-cta:hover {
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.34);
}

.blog-post-header {
  max-width: 980px;
  margin: 0 auto 1.35rem;
  padding: clamp(2rem, 4vw, 2.85rem);
}

.blog-post-content {
  max-width: 980px;
  margin: 0 auto 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.65rem);
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8));
}

[data-theme="dark"] .blog-post-content {
  background: linear-gradient(135deg, rgba(28, 34, 46, 0.92), rgba(21, 27, 38, 0.82));
}

.blog-post-section {
  margin-bottom: 2.2rem;
}

.blog-post-section:last-child {
  margin-bottom: 0;
}

.blog-social-share,
.blog-post-cta {
  max-width: 980px;
}

.blog-post-meta {
  flex-wrap: wrap;
}

.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(72, 161, 50, 0.08);
  color: #55636f;
  box-shadow: inset 0 0 0 1px rgba(72, 161, 50, 0.12);
}

[data-theme="dark"] .blog-post-meta span {
  background: rgba(138, 228, 107, 0.08);
  color: #d5e0ea;
  box-shadow: inset 0 0 0 1px rgba(138, 228, 107, 0.16);
}

.blog-post-meta i {
  color: var(--secondary);
}

[data-theme="dark"] .blog-post-meta i {
  color: var(--secondary-light);
}

.blog-post-subtitle,
.blog-post-section p,
.blog-post-section li,
.blog-post-cta p {
  color: #5b6975;
}

[data-theme="dark"] .blog-post-subtitle,
[data-theme="dark"] .blog-post-section p,
[data-theme="dark"] .blog-post-section li,
[data-theme="dark"] .blog-post-cta p {
  color: #c2ced8;
}

.blog-post-section strong {
  color: #1e2933;
}

[data-theme="dark"] .blog-post-section strong {
  color: #f5fbff;
}

.blog-post-section ul li {
  position: relative;
  padding: 1rem 1rem 1rem 2.7rem;
  border-radius: 1rem;
  background: rgba(72, 161, 50, 0.05);
  box-shadow: inset 0 0 0 1px rgba(72, 161, 50, 0.08);
}

[data-theme="dark"] .blog-post-section ul li {
  background: rgba(138, 228, 107, 0.06);
  box-shadow: inset 0 0 0 1px rgba(138, 228, 107, 0.1);
}

.blog-post-section ul li::before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  top: 1rem;
  left: 0.86rem;
  width: 0.88rem;
  text-align: center;
  color: var(--secondary);
}

[data-theme="dark"] .blog-post-section ul li::before {
  color: var(--secondary-light);
}

.blog-post-cta h3::before,
.blog-social-share h4::before {
  display: inline-block;
  margin-right: 0.6rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary);
}

.blog-post-cta h3::before {
  content: "\f135";
}

.blog-social-share h4::before {
  content: "\f1e0";
}

[data-theme="dark"] .blog-post-cta h3::before,
[data-theme="dark"] .blog-social-share h4::before {
  color: var(--secondary-light);
}

.share-button {
  border: 1px solid rgba(72, 161, 50, 0.12);
  box-shadow: 0 10px 22px rgba(10, 18, 38, 0.08);
}

[data-theme="dark"] .share-button {
  border-color: rgba(138, 228, 107, 0.14);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.share-button[aria-label*="Facebook"] i {
  color: #1877f2;
}

.share-button[aria-label*="LinkedIn"] i {
  color: #0a66c2;
}

.share-button[aria-label*="Copy"] i {
  color: #48a132;
}

.share-button[aria-label*="X"] i,
.share-button[aria-label*="Twitter"] i {
  color: #111827;
}

[data-theme="dark"] .share-button[aria-label*="X"] i,
[data-theme="dark"] .share-button[aria-label*="Twitter"] i {
  color: #f8fafc;
}

.share-button[aria-label*="Facebook"]:hover {
  border-color: rgba(24, 119, 242, 0.28);
  box-shadow: 0 14px 26px rgba(24, 119, 242, 0.14);
}

.share-button[aria-label*="LinkedIn"]:hover {
  border-color: rgba(10, 102, 194, 0.28);
  box-shadow: 0 14px 26px rgba(10, 102, 194, 0.14);
}

.share-button[aria-label*="Copy"]:hover {
  border-color: rgba(72, 161, 50, 0.28);
  box-shadow: 0 14px 26px rgba(72, 161, 50, 0.14);
}

.share-button[aria-label*="X"]:hover,
.share-button[aria-label*="Twitter"]:hover {
  border-color: rgba(17, 24, 39, 0.22);
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.12);
}

.share-button.is-copied {
  border-color: rgba(72, 161, 50, 0.34);
  box-shadow: 0 16px 28px rgba(72, 161, 50, 0.16);
}

@media (max-width: 768px) {
  .blog-post {
    padding-top: calc(var(--nav-offset, 84px) + 18px);
  }

  .blog-post-header,
  .blog-post-content,
  .blog-social-share,
  .blog-post-cta {
    transform: none !important;
  }

  .blog-post-section ul li {
    padding: 0.95rem 0.95rem 0.95rem 2.52rem;
  }

  .blog-post-section ul li::before {
    left: 0.8rem;
    top: 0.95rem;
  }

  .blog-post-meta {
    justify-content: center;
  }

  .blog-post-header,
  .blog-post-content,
  .blog-social-share,
  .blog-post-cta {
    border-radius: 1.35rem;
  }
}

/* Safe shared editorial upgrades for article pages */
.blog-post-header {
  max-width: 920px;
  margin: 0 auto 1.15rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1.9rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.82)
  );
  text-align: center;
}

[data-theme="dark"] .blog-post-header {
  background: linear-gradient(
    145deg,
    rgba(28, 34, 46, 0.94),
    rgba(21, 27, 38, 0.84)
  );
}

.blog-post-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.blog-post-subtitle {
  max-width: 43rem;
  margin: 0 auto 1.75rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.8rem;
  margin: 0;
}

.blog-post-meta > * {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.blog-post-meta .meta-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  text-align: left;
  line-height: 1.1;
}

.blog-post-meta .meta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f7d87;
}

[data-theme="dark"] .blog-post-meta .meta-label {
  color: #a9b9c7;
}

.blog-post-meta .meta-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: #20313d;
}

[data-theme="dark"] .blog-post-meta .meta-value {
  color: #f2f7fb;
}

.blog-post-content,
.blog-social-share,
.blog-post-cta,
.blog-related-articles {
  max-width: 920px;
}

.blog-post-content {
  display: grid;
  gap: 1.9rem;
}

.blog-post-section {
  margin-bottom: 0;
}

.blog-post-section h2 {
  position: relative;
  margin: 0 0 1.15rem;
  padding-left: 1rem;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.2;
  color: var(--black);
}

[data-theme="dark"] .blog-post-section h2 {
  color: var(--white);
}

.blog-post-section h2::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
}

.blog-post-section h3 {
  margin: 1.5rem 0 0.85rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: #1b2831;
}

[data-theme="dark"] .blog-post-section h3 {
  color: #f5fbff;
}

.blog-post-section p,
.blog-post-section ul,
.blog-post-section ol {
  max-width: 70ch;
  margin-bottom: 1rem;
}

.blog-post-section p:last-child {
  margin-bottom: 0;
}

.blog-post-section a {
  color: var(--secondary);
  text-decoration-color: rgba(72, 161, 50, 0.3);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
}

[data-theme="dark"] .blog-post-section a {
  color: var(--secondary-light);
  text-decoration-color: rgba(138, 228, 107, 0.35);
}

.blog-post-section ol {
  padding-left: 0;
  list-style: none;
  counter-reset: article-checklist;
}

.blog-post-section ol li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1rem;
  background: rgba(72, 161, 50, 0.05);
  box-shadow: inset 0 0 0 1px rgba(72, 161, 50, 0.08);
  counter-increment: article-checklist;
}

.blog-post-section ol li::before {
  content: counter(article-checklist);
  position: absolute;
  left: 0.95rem;
  top: 0.9rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
}

[data-theme="dark"] .blog-post-section ol li {
  background: rgba(138, 228, 107, 0.06);
  box-shadow: inset 0 0 0 1px rgba(138, 228, 107, 0.1);
}

[data-theme="dark"] .blog-post-section ol li::before {
  background: var(--secondary-light);
  color: #0d1b10;
}

.blog-post-toc,
.blog-callout,
.blog-sources-note {
  max-width: 70ch;
  border-radius: 1.25rem;
}

.blog-post-toc {
  padding: 1.1rem 1.2rem 1rem;
  background: rgba(72, 161, 50, 0.06);
  box-shadow: inset 0 0 0 1px rgba(72, 161, 50, 0.1);
}

[data-theme="dark"] .blog-post-toc {
  background: rgba(138, 228, 107, 0.06);
  box-shadow: inset 0 0 0 1px rgba(138, 228, 107, 0.12);
}

.blog-post-toc-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
  font-size: 1rem;
  font-weight: 800;
  color: #1d2c33;
}

[data-theme="dark"] .blog-post-toc-title {
  color: #f3f8fd;
}

.blog-post-toc-title i {
  color: var(--secondary);
}

[data-theme="dark"] .blog-post-toc-title i {
  color: var(--secondary-light);
}

.blog-post-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.blog-post-toc li {
  margin: 0;
}

.blog-post-toc a {
  color: #42515d;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.45;
}

[data-theme="dark"] .blog-post-toc a {
  color: #d5e1ea;
}

.blog-post-toc a:hover,
.blog-post-toc a:focus-visible {
  color: var(--secondary);
}

[data-theme="dark"] .blog-post-toc a:hover,
[data-theme="dark"] .blog-post-toc a:focus-visible {
  color: var(--secondary-light);
}

.future-online-earnings-page .blog-post-toc {
  max-width: 62rem;
  padding: 1.25rem 1.2rem 1.15rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 246, 0.96));
  border: 1px solid rgba(72, 161, 50, 0.12);
  box-shadow:
    0 22px 48px rgba(34, 55, 36, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .future-online-earnings-page .blog-post-toc {
  background:
    linear-gradient(135deg, rgba(20, 31, 27, 0.92), rgba(24, 39, 31, 0.96));
  border-color: rgba(138, 228, 107, 0.18);
  box-shadow:
    0 20px 44px rgba(4, 12, 8, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.future-online-earnings-page .blog-post-toc-header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.future-online-earnings-page .blog-post-toc-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.future-online-earnings-page .blog-post-toc-title {
  margin: 0;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
}

.future-online-earnings-page .blog-post-toc-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: rgba(72, 161, 50, 0.1);
  color: #416139;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

[data-theme="dark"] .future-online-earnings-page .blog-post-toc-count {
  background: rgba(138, 228, 107, 0.12);
  color: #d7f4c8;
}

.future-online-earnings-page .blog-post-toc-intro {
  margin: 0;
  max-width: 42rem;
  color: #62717c;
  font-size: 0.92rem;
  line-height: 1.5;
}

[data-theme="dark"] .future-online-earnings-page .blog-post-toc-intro {
  color: #b8c7d2;
}

.future-online-earnings-page .blog-post-toc ul {
  counter-reset: toc-item;
  max-width: 54rem;
  grid-template-columns: 1fr;
  gap: 0.68rem;
}

.future-online-earnings-page .blog-post-toc li {
  margin: 0;
}

.future-online-earnings-page .blog-post-toc a {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 100%;
  padding: 0.82rem 0.92rem 0.82rem 3.05rem;
  border-radius: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 250, 243, 0.94));
  border: 1px solid rgba(72, 161, 50, 0.1);
  color: #40505c;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.36;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.future-online-earnings-page .blog-post-toc a::before {
  counter-increment: toc-item;
  content: counter(toc-item, decimal-leading-zero);
  position: absolute;
  top: 0.74rem;
  left: 0.78rem;
  width: 1.68rem;
  height: 1.68rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(72, 161, 50, 0.12);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.future-online-earnings-page .blog-post-toc a::after {
  content: "\2197";
  margin-left: auto;
  padding-left: 0.55rem;
  color: rgba(72, 161, 50, 0.62);
  font-size: 0.9rem;
  line-height: 1.2;
}

.future-online-earnings-page .blog-post-toc a:hover,
.future-online-earnings-page .blog-post-toc a:focus-visible {
  color: #23353f;
  border-color: rgba(72, 161, 50, 0.22);
  box-shadow: 0 10px 18px rgba(54, 88, 42, 0.07);
  transform: translateY(-1px);
}

[data-theme="dark"] .future-online-earnings-page .blog-post-toc a {
  background:
    linear-gradient(180deg, rgba(31, 46, 37, 0.94), rgba(26, 40, 33, 0.98));
  border-color: rgba(138, 228, 107, 0.12);
  color: #dfeaf2;
}

[data-theme="dark"] .future-online-earnings-page .blog-post-toc a::before {
  background: rgba(138, 228, 107, 0.14);
  color: var(--secondary-light);
}

[data-theme="dark"] .future-online-earnings-page .blog-post-toc a::after {
  color: rgba(138, 228, 107, 0.72);
}

[data-theme="dark"] .future-online-earnings-page .blog-post-toc a:hover,
[data-theme="dark"] .future-online-earnings-page .blog-post-toc a:focus-visible {
  color: #f5fbff;
  border-color: rgba(138, 228, 107, 0.24);
  box-shadow: 0 16px 28px rgba(4, 12, 8, 0.24);
}

.blog-callout {
  padding: 1.2rem 1.25rem;
  border-left: 4px solid transparent;
}

.blog-callout__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-weight: 800;
  color: #1a2a33;
}

[data-theme="dark"] .blog-callout__title {
  color: #f3f8fd;
}

.blog-callout__title i {
  color: currentColor;
}

.blog-callout p:last-child,
.blog-callout ul:last-child,
.blog-callout ol:last-child {
  margin-bottom: 0;
}

.blog-callout--takeaway {
  background: rgba(72, 161, 50, 0.08);
  border-left-color: var(--secondary);
}

[data-theme="dark"] .blog-callout--takeaway {
  background: rgba(138, 228, 107, 0.08);
  border-left-color: var(--secondary-light);
}

.blog-callout--warning {
  background: rgba(236, 120, 52, 0.08);
  border-left-color: #ec7834;
}

[data-theme="dark"] .blog-callout--warning {
  background: rgba(255, 164, 77, 0.08);
  border-left-color: #f5a04d;
}

.blog-callout--warning ul li {
  background: rgba(236, 120, 52, 0.06);
  box-shadow: inset 0 0 0 1px rgba(236, 120, 52, 0.1);
}

.blog-callout--warning ul li::before {
  content: "\f071";
  color: #d95d18;
}

[data-theme="dark"] .blog-callout--warning ul li {
  background: rgba(245, 160, 77, 0.07);
  box-shadow: inset 0 0 0 1px rgba(245, 160, 77, 0.12);
}

[data-theme="dark"] .blog-callout--warning ul li::before {
  color: #ffc388;
}

.blog-callout--checklist {
  background: rgba(72, 161, 50, 0.04);
  border-left-color: var(--primary);
}

[data-theme="dark"] .blog-callout--checklist {
  background: rgba(138, 228, 107, 0.05);
  border-left-color: var(--secondary-light);
}

.blog-callout--verdict {
  background: linear-gradient(
    145deg,
    rgba(72, 161, 50, 0.12),
    rgba(72, 161, 50, 0.06)
  );
  border-left-color: var(--secondary);
}

[data-theme="dark"] .blog-callout--verdict {
  background: linear-gradient(
    145deg,
    rgba(138, 228, 107, 0.12),
    rgba(138, 228, 107, 0.06)
  );
  border-left-color: var(--secondary-light);
}

.blog-sources-note {
  padding: 1rem 1.15rem;
  background: rgba(17, 24, 39, 0.03);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06);
}

[data-theme="dark"] .blog-sources-note {
  background: rgba(248, 250, 252, 0.04);
  box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.08);
}

.blog-sources-note p {
  margin: 0;
  font-size: 0.95rem;
  color: #61707c;
}

[data-theme="dark"] .blog-sources-note p {
  color: #bec9d4;
}

.blog-related-articles {
  margin: 1.5rem auto 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 1.75rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.82)
  );
  border: 1px solid rgba(72, 161, 50, 0.12);
  box-shadow: 0 14px 34px rgba(10, 18, 38, 0.08);
}

[data-theme="dark"] .blog-related-articles {
  background: linear-gradient(
    145deg,
    rgba(28, 34, 46, 0.92),
    rgba(21, 27, 38, 0.82)
  );
  border-color: rgba(138, 228, 107, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.blog-related-articles h2 {
  margin: 0 0 1.35rem;
  text-align: center;
  font-size: clamp(1.55rem, 2vw, 2rem);
  color: var(--black);
}

[data-theme="dark"] .blog-related-articles h2 {
  color: var(--white);
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(72, 161, 50, 0.1);
  box-shadow: 0 12px 24px rgba(10, 18, 38, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

[data-theme="dark"] .blog-related-card {
  background: rgba(26, 33, 45, 0.88);
  border-color: rgba(138, 228, 107, 0.14);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.blog-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(10, 18, 38, 0.12);
}

[data-theme="dark"] .blog-related-card:hover {
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.28);
}

.blog-related-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-related-copy {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem 1.1rem 1.2rem;
}

.blog-related-copy h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.3;
  color: #18303a;
}

[data-theme="dark"] .blog-related-copy h3 {
  color: #f5fbff;
}

.blog-related-copy p {
  margin: 0;
  color: #60707d;
  font-size: 0.96rem;
  line-height: 1.6;
}

[data-theme="dark"] .blog-related-copy p {
  color: #c0ccd7;
}

.blog-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
}

[data-theme="dark"] .blog-related-link {
  color: var(--secondary-light);
}

.blog-related-link:hover,
.blog-related-link:focus-visible {
  gap: 0.7rem;
}

@media (max-width: 992px) {
  .blog-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-post-header {
    padding: 1.65rem 1.3rem 1.4rem;
  }

  .blog-post-title {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .blog-post-subtitle {
    margin-bottom: 1.35rem;
  }

  .blog-post-meta {
    gap: 0.6rem;
  }

  .blog-post-meta > * {
    flex: 1 1 calc(50% - 0.6rem);
    justify-content: center;
  }

  .blog-post-meta .meta-copy {
    align-items: center;
    text-align: center;
  }

  .blog-post-section h2 {
    padding-left: 0.85rem;
  }

  .blog-post-section ul li,
  .blog-post-section ol li {
    padding: 0.95rem 0.95rem 0.95rem 2.85rem;
  }

  .blog-post-section ol li::before {
    left: 0.85rem;
    top: 0.85rem;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .blog-post {
    padding-inline: 0.85rem;
  }

  .blog-post-meta > * {
    flex: 1 1 100%;
  }

  .blog-post-toc,
  .blog-callout,
  .blog-sources-note {
    padding-inline: 0.95rem;
  }

  .blog-related-articles {
    padding: 1.25rem 1rem;
  }
}

/* Page-scoped correction pass for future-of-online-earnings */
.future-online-earnings-page .blog-post-header {
  max-width: 980px;
  padding: clamp(1.75rem, 3.6vw, 2.45rem);
}

.future-online-earnings-page .blog-post-title {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 0.5rem;
  font-size: clamp(2.18rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.future-online-earnings-page .blog-post-title-support {
  max-width: 700px;
  margin: 0 auto 1.35rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.16rem, 1.95vw, 1.72rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #586779;
  text-wrap: balance;
}

[data-theme="dark"] .future-online-earnings-page .blog-post-title-support {
  color: #ccd7e1;
}

.future-online-earnings-page .blog-post-subtitle {
  max-width: 50rem;
  margin: 0 auto 1.45rem;
  font-size: clamp(1.02rem, 1.72vw, 1.16rem);
  line-height: 1.58;
  color: #667586;
}

[data-theme="dark"] .future-online-earnings-page .blog-post-subtitle {
  color: #c2ced8;
}

.future-online-earnings-page .blog-post-meta {
  gap: 0.65rem;
}

.future-online-earnings-page .blog-post-meta > * {
  gap: 0.42rem;
  padding: 0.42rem 0.78rem;
  border-radius: 1.7rem;
}

.future-online-earnings-page .blog-post-meta i {
  width: 1.15rem;
  min-width: 1.15rem;
  font-size: 1.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.future-online-earnings-page .blog-post-meta .meta-copy {
  gap: 0.02rem;
}

.future-online-earnings-page .blog-post-meta .meta-label {
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}

.future-online-earnings-page .blog-post-meta .meta-value {
  font-size: 0.82rem;
  font-weight: 700;
}

.future-online-earnings-page .blog-post-cta {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.6rem;
  background: linear-gradient(
    145deg,
    rgba(231, 245, 224, 0.96),
    rgba(247, 252, 244, 0.9)
  );
}

[data-theme="dark"] .future-online-earnings-page .blog-post-cta {
  background: linear-gradient(
    145deg,
    rgba(34, 52, 38, 0.94),
    rgba(20, 28, 24, 0.9)
  );
}

.future-online-earnings-page .blog-post-cta h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.2;
}

.future-online-earnings-page .blog-post-cta h3::before {
  content: none;
  display: none;
}

.future-online-earnings-page .blog-post-cta p {
  max-width: 40rem;
  margin: 0 auto 1.2rem;
}

.future-online-earnings-page .blog-post-cta .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.1rem;
  padding: 0.92rem 1.55rem 0.92rem 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 161, 50, 0.22);
  background: linear-gradient(
    135deg,
    rgba(90, 173, 61, 0.98),
    rgba(72, 161, 50, 0.98)
  );
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow:
    0 14px 28px rgba(72, 161, 50, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.future-online-earnings-page .blog-post-cta .btn::after {
  content: "\2192";
  font-size: 1.05rem;
  line-height: 1;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.future-online-earnings-page .blog-post-cta .btn:hover,
.future-online-earnings-page .blog-post-cta .btn:focus-visible {
  color: #ffffff;
  border-color: rgba(54, 122, 37, 0.34);
  background: linear-gradient(
    135deg,
    rgba(84, 165, 57, 1),
    rgba(65, 146, 45, 1)
  );
  box-shadow:
    0 18px 32px rgba(72, 161, 50, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.future-online-earnings-page .blog-post-cta .btn:hover::after,
.future-online-earnings-page .blog-post-cta .btn:focus-visible::after {
  transform: translateX(3px);
}

[data-theme="dark"] .future-online-earnings-page .blog-post-cta .btn {
  border-color: rgba(138, 228, 107, 0.26);
  background: linear-gradient(
    135deg,
    rgba(94, 186, 61, 0.98),
    rgba(74, 164, 47, 0.98)
  );
  color: #ffffff;
  box-shadow:
    0 16px 30px rgba(4, 12, 8, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .future-online-earnings-page .blog-post-cta .btn:hover,
[data-theme="dark"] .future-online-earnings-page .blog-post-cta .btn:focus-visible {
  border-color: rgba(173, 244, 144, 0.34);
  background: linear-gradient(
    135deg,
    rgba(104, 197, 68, 1),
    rgba(82, 174, 52, 1)
  );
  box-shadow:
    0 20px 34px rgba(4, 12, 8, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.future-online-earnings-page .blog-article-slider {
  margin: 4rem auto 0;
  max-width: 1480px;
  padding: 2.2rem 0.85rem 2.45rem;
  background: linear-gradient(
    135deg,
    rgba(245, 247, 250, 0.82),
    rgba(195, 207, 226, 0.82)
  );
  border-radius: 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

[data-theme="dark"] .future-online-earnings-page .blog-article-slider {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 0.84),
    rgba(20, 20, 20, 0.84)
  );
}

.future-online-earnings-page .blog-article-slider h2 {
  width: min(92%, 1240px);
  max-width: 1240px;
  margin: 0 auto 1.45rem;
  padding-left: 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  color: var(--black);
  position: relative;
}

[data-theme="dark"] .future-online-earnings-page .blog-article-slider h2 {
  color: var(--white);
}

.future-online-earnings-page .blog-article-slider h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}

.future-online-earnings-page .slider-container {
  --carousel-gap: calc(100% * 6 / 118);
  --carousel-side-width: calc((100% - (4 * var(--carousel-gap))) * 17 / 94);
  --carousel-center-width: calc((100% - (4 * var(--carousel-gap))) * 26 / 94);
  --carousel-side-surface: linear-gradient(
    180deg,
    rgba(255, 247, 244, 0.98),
    rgba(246, 236, 232, 0.98)
  );
  --carousel-side-heading: #22323d;
  --carousel-side-body: #445261;
  --carousel-side-readmore-color: #5b9449;
  --carousel-side-readmore-border: rgba(101, 164, 75, 0.18);
  --carousel-side-readmore-bg: linear-gradient(
    135deg,
    rgba(250, 252, 247, 0.96),
    rgba(237, 245, 231, 0.96)
  );
  --carousel-side-readmore-shadow:
    0 7px 14px rgba(10, 18, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  --carousel-side-readmore-icon-bg: rgba(72, 161, 50, 0.12);
  width: min(92%, 1280px);
  overflow: hidden;
  position: relative;
}

[data-theme="dark"] .future-online-earnings-page .slider-container {
  --carousel-side-surface: linear-gradient(
    180deg,
    rgba(38, 43, 51, 0.98),
    rgba(29, 33, 40, 0.98)
  );
  --carousel-side-heading: #f3f8fc;
  --carousel-side-body: #d6e0e8;
  --carousel-side-readmore-color: #d9f4cc;
  --carousel-side-readmore-border: rgba(138, 228, 107, 0.2);
  --carousel-side-readmore-bg: linear-gradient(
    135deg,
    rgba(66, 95, 58, 0.84),
    rgba(52, 77, 45, 0.88)
  );
  --carousel-side-readmore-shadow:
    0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --carousel-side-readmore-icon-bg: rgba(138, 228, 107, 0.14);
}

.future-online-earnings-page .slider-wrapper {
  display: flex;
  align-items: stretch;
  gap: var(--carousel-gap);
  padding: 0;
  transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

.future-online-earnings-page .slide {
  width: var(--carousel-side-width);
  min-width: var(--carousel-side-width);
  max-width: var(--carousel-side-width);
  height: 314px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
  border-radius: 1.1rem;
  background: var(--carousel-side-surface);
  box-shadow: 0 10px 20px rgba(10, 18, 38, 0.1);
  transform: none;
  opacity: 0.92;
  transition:
    width 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

[data-theme="dark"] .future-online-earnings-page .slide {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.future-online-earnings-page .slide.active {
  width: var(--carousel-center-width);
  min-width: var(--carousel-center-width);
  max-width: var(--carousel-center-width);
  height: 348px;
  opacity: 1;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

[data-theme="dark"] .future-online-earnings-page .slide.active {
  background: linear-gradient(
    135deg,
    rgba(61, 120, 43, 0.96),
    rgba(87, 146, 64, 0.94)
  );
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.future-online-earnings-page .slide.prev,
.future-online-earnings-page .slide.next {
  opacity: 1;
  z-index: 1;
}

.future-online-earnings-page .slide.active .slide-content h3,
.future-online-earnings-page .slide.active .slide-content p,
.future-online-earnings-page .slide.active .read-more {
  color: var(--white);
}

.future-online-earnings-page .slide.active .read-more {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.future-online-earnings-page .slide.active .read-more i {
  background: rgba(255, 255, 255, 0.16);
}

.future-online-earnings-page .slide.active .read-more:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.12)
  );
  opacity: 1;
}

.future-online-earnings-page .slide img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  object-position: center;
}

.future-online-earnings-page .slide.active img {
  height: 156px;
}

.future-online-earnings-page .slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.9rem 0.9rem 0.92rem;
}

.future-online-earnings-page .slide-content h3 {
  margin-bottom: 0.55rem;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

.future-online-earnings-page .slide-content p {
  margin-bottom: 0.7rem;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.42;
  color: var(--gray-dark);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.future-online-earnings-page .slide:not(.active) .slide-content h3 {
  color: var(--carousel-side-heading);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.future-online-earnings-page .slide:not(.active) .slide-content p {
  color: var(--carousel-side-body);
  -webkit-line-clamp: 3;
}

[data-theme="dark"] .future-online-earnings-page .slide:not(.active) {
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.future-online-earnings-page .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.58rem;
  width: fit-content;
  margin-top: auto;
  min-height: 2.18rem;
  padding: 0.32rem 0.34rem 0.32rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 161, 50, 0.18);
  background: linear-gradient(
    135deg,
    rgba(250, 252, 247, 0.96),
    rgba(237, 245, 231, 0.96)
  );
  color: #4d8a3d;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  box-shadow:
    0 7px 14px rgba(10, 18, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.future-online-earnings-page .slide:not(.active) .read-more {
  color: var(--carousel-side-readmore-color);
  border-color: var(--carousel-side-readmore-border);
  background: var(--carousel-side-readmore-bg);
  box-shadow: var(--carousel-side-readmore-shadow);
}

.future-online-earnings-page .read-more:hover {
  color: #ffffff;
  border-color: rgba(72, 161, 50, 0.26);
  background: linear-gradient(
    135deg,
    rgba(72, 161, 50, 0.96),
    rgba(106, 192, 76, 0.94)
  );
  box-shadow:
    0 12px 22px rgba(72, 161, 50, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.future-online-earnings-page .read-more i {
  width: 1.34rem;
  min-width: 1.34rem;
  height: 1.34rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(72, 161, 50, 0.12);
  color: currentColor;
  font-size: 0.74rem;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.future-online-earnings-page .slide:not(.active) .read-more i {
  background: var(--carousel-side-readmore-icon-bg);
}

.future-online-earnings-page .read-more:hover i,
.future-online-earnings-page .read-more:focus-visible i {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.18);
}

[data-theme="dark"] .future-online-earnings-page .slide:not(.active) .read-more:hover,
[data-theme="dark"] .future-online-earnings-page .slide:not(.active) .read-more:focus-visible {
  color: #ffffff;
  border-color: rgba(138, 228, 107, 0.28);
  background: linear-gradient(
    135deg,
    rgba(86, 151, 64, 0.98),
    rgba(106, 174, 80, 0.96)
  );
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.future-online-earnings-page .navigation {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 176px));
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.future-online-earnings-page .navigation button {
  border: none;
  margin: 0;
  width: 100%;
  padding: 0.62rem 1.2rem;
  min-width: 0;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .future-online-earnings-page .navigation button {
  background: linear-gradient(
    135deg,
    rgba(62, 121, 44, 0.96),
    rgba(92, 152, 68, 0.94)
  );
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.future-online-earnings-page .navigation button:hover,
.future-online-earnings-page .navigation button:focus-visible {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 7px 16px rgba(72, 161, 50, 0.22);
  filter: brightness(1.02);
}

[data-theme="dark"] .future-online-earnings-page .navigation button:hover,
[data-theme="dark"] .future-online-earnings-page .navigation button:focus-visible {
  background: linear-gradient(
    135deg,
    rgba(72, 132, 52, 0.98),
    rgba(102, 162, 76, 0.96)
  );
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  filter: brightness(1);
}

.future-online-earnings-page .navigation button:focus-visible {
  outline: 2px solid rgba(72, 161, 50, 0.28);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .future-online-earnings-page .blog-post-header {
    max-width: 100%;
    padding: 1.7rem 1.35rem 1.45rem;
  }

  .future-online-earnings-page .blog-post-title {
    font-size: clamp(1.98rem, 7.8vw, 2.95rem);
    line-height: 1.08;
  }

  .future-online-earnings-page .blog-post-title-support {
    max-width: 34rem;
    margin-bottom: 0.95rem;
    font-size: clamp(1.04rem, 3.1vw, 1.42rem);
  }

  .future-online-earnings-page .blog-post-subtitle {
    max-width: 38rem;
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.52;
  }

  .future-online-earnings-page .blog-post-toc ul {
    grid-template-columns: 1fr;
  }

  .future-online-earnings-page .blog-post-toc a {
    padding-right: 0.95rem;
  }

  .future-online-earnings-page .blog-post-meta {
    gap: 0.58rem;
  }

  .future-online-earnings-page .blog-post-meta > * {
    padding: 0.4rem 0.72rem;
  }

  .future-online-earnings-page .blog-article-slider {
    padding: 1.9rem 0 2.1rem;
  }

  .future-online-earnings-page .blog-article-slider h2 {
    width: min(88%, 620px);
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
  }

  .future-online-earnings-page .slider-container {
    --carousel-gap: 0.9rem;
    width: min(90%, 680px);
  }

  .future-online-earnings-page .slide {
    width: 154px;
    min-width: 154px;
    max-width: 154px;
    height: 231px;
  }

  .future-online-earnings-page .slide.active {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    height: 254px;
  }

  .future-online-earnings-page .slide img {
    height: 108px;
  }

  .future-online-earnings-page .slide.active img {
    height: 108px;
  }

  .future-online-earnings-page .slide-content {
    padding: 0.82rem 0.82rem 0.84rem;
  }

  .future-online-earnings-page .slide-content h3 {
    font-size: 0.9rem;
  }

  .future-online-earnings-page .slide-content p {
    font-size: 0.76rem;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 576px) {
  .future-online-earnings-page .blog-post-title {
    font-size: clamp(1.88rem, 8.6vw, 2.5rem);
    line-height: 1.08;
  }

  .future-online-earnings-page .blog-post-title-support {
    max-width: 100%;
    margin-bottom: 0.85rem;
    font-size: clamp(1rem, 4.2vw, 1.22rem);
    line-height: 1.18;
  }

  .future-online-earnings-page .blog-post-subtitle {
    margin-bottom: 1.05rem;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .future-online-earnings-page .blog-post-toc {
    padding: 1.05rem 0.95rem 0.95rem;
  }

  .future-online-earnings-page .blog-post-toc-heading-row {
    align-items: flex-start;
  }

  .future-online-earnings-page .blog-post-toc-title {
    font-size: 1rem;
  }

  .future-online-earnings-page .blog-post-toc-count {
    padding: 0.32rem 0.58rem;
    font-size: 0.72rem;
  }

  .future-online-earnings-page .blog-post-toc-intro {
    font-size: 0.9rem;
  }

  .future-online-earnings-page .blog-post-toc a {
    padding: 0.88rem 0.88rem 0.88rem 2.9rem;
    font-size: 0.93rem;
  }

  .future-online-earnings-page .blog-post-toc a::before {
    top: 0.82rem;
    left: 0.76rem;
    width: 1.62rem;
    height: 1.62rem;
    font-size: 0.7rem;
  }

  .future-online-earnings-page .blog-post-toc a::after {
    padding-left: 0.6rem;
  }

  .future-online-earnings-page .blog-post-meta {
    gap: 0.52rem;
  }

  .future-online-earnings-page .blog-post-meta > * {
    padding: 0.38rem 0.68rem;
  }

  .future-online-earnings-page .blog-post-meta .meta-value {
    font-size: 0.8rem;
  }

  .future-online-earnings-page .blog-post-cta {
    padding: 1.35rem 1.1rem 1.45rem;
  }

  .future-online-earnings-page .blog-post-cta .btn {
    width: 100%;
  }

  .future-online-earnings-page .blog-article-slider h2 {
    width: min(92%, 520px);
    font-size: 1.65rem;
  }

  .future-online-earnings-page .slider-container {
    --carousel-gap: 0;
    width: min(94%, 520px);
  }

  .future-online-earnings-page .slider-wrapper {
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .future-online-earnings-page .slide {
    min-width: 100%;
    width: 100%;
    height: auto;
    transform: none;
    opacity: 0.2;
  }

  .future-online-earnings-page .slide.active {
    min-width: 100%;
    width: 100%;
    height: auto;
    transform: none;
    opacity: 1;
  }

  .future-online-earnings-page .navigation {
    gap: 0.75rem;
  }

  .future-online-earnings-page .navigation button {
    flex: 1 1 130px;
    padding-inline: 1rem;
  }
}

@media (max-width: 430px) {
  .future-online-earnings-page .blog-post-header {
    padding: 1.45rem 0.95rem 1.3rem;
  }

  .future-online-earnings-page .blog-post-title {
    max-width: 100%;
    font-size: clamp(1.6rem, 9vw, 2.08rem);
    line-height: 1.06;
  }

  .future-online-earnings-page .blog-post-title-support {
    font-size: clamp(0.96rem, 4.7vw, 1.12rem);
    line-height: 1.18;
  }

  .future-online-earnings-page .blog-post-subtitle {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .future-online-earnings-page .blog-post-meta > * {
    padding: 0.34rem 0.62rem;
  }

  .future-online-earnings-page .slide img {
    height: 148px;
  }

  .future-online-earnings-page .slide-content {
    padding: 1rem;
  }

  .future-online-earnings-page .slide-content h3 {
    font-size: 1.05rem;
  }

  .future-online-earnings-page .slide-content p {
    font-size: 0.9rem;
  }
}
