/* =========================================================================
   Blog — Listagem de posts · additional styles
   Reuses tokens + generic classes from styles.css
   ========================================================================= */

/* ──────────────────────────────────────────────────────────────
   Breadcrumb
   ────────────────────────────────────────────────────────────── */
.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumb a { color: var(--green-teal); transition: color 0.2s; }
.crumb a:hover { color: var(--green-deep); }
.crumb-sep { opacity: 0.45; }
.crumb-current { color: var(--fg-2); }

/* ──────────────────────────────────────────────────────────────
   Hero
   ────────────────────────────────────────────────────────────── */
.bhero {
  padding-top: clamp(140px, 16vh, 196px);
  padding-bottom: clamp(48px, 6vw, 84px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbf9 0%, #ecf3f0 48%, #e3ede9 100%);
}

/* .bhero-bg wrapper now shared via styles.css .hero-bg group */
.bhero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(14, 84, 79, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 84, 79, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 62% 72% at 72% 42%, black 0%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 62% 72% at 72% 42%, black 0%, transparent 74%);
}
.bhero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.bhero-orb--a {
  width: 520px; height: 520px;
  top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(5, 196, 100, 0.42) 0%, transparent 70%);
}
.bhero-orb--b {
  width: 420px; height: 420px;
  bottom: -200px; left: -120px;
  background: radial-gradient(circle, rgba(9, 114, 116, 0.32) 0%, transparent 70%);
}

.bhero .container { position: relative; z-index: 1; }

.bhero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}
@media (max-width: 980px) { .bhero-inner { grid-template-columns: 1fr; gap: 52px; } }

.bhero-text { display: flex; flex-direction: column; gap: 26px; }

.bhero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.026em;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
body[data-typo="serif"] .bhero-title { font-weight: 400; letter-spacing: -0.02em; }
.bhero-title em {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 300;
  color: var(--green-teal);
}

.bhero-body {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.62;
  color: var(--fg-2);
  max-width: 52ch;
}

/* Search field (hero) */
.bsearch { position: relative; max-width: 540px; width: 100%; }
.bsearch-ic {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-teal);
  pointer-events: none;
  display: grid;
  place-items: center;
}
.bsearch-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg);
  padding: 18px 120px 18px 54px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  transition: all 0.28s var(--ease);
  outline: none;
}
.bsearch-input::placeholder { color: var(--muted); }
.bsearch-input:focus {
  border-color: var(--green-bright);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(5, 196, 100, 0.14),
    0 18px 40px -16px rgba(14, 84, 79, 0.22);
}
@media (max-width: 640px) {
  .bsearch-input { padding-left: 20px; }
  .bsearch-ic { display: none; }
}
.bsearch-clear {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  background: var(--green-pale);
  color: var(--green-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.bsearch.has-value .bsearch-clear { opacity: 1; pointer-events: auto; }
.bsearch-clear:hover { background: var(--green-deep); color: var(--cream); }
.bsearch-submit {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.22s var(--ease);
}
.bsearch-submit:hover { background: var(--green-bright); color: var(--text-inverse); }

/* ──────────────────────────────────────────────────────────────
   Hero article mock (tech / parallax)
   ────────────────────────────────────────────────────────────── */
.bmock {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  transform: translateY(var(--parallax-y, 0)) perspective(2000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
  filter:
    drop-shadow(0 30px 60px rgba(14, 84, 79, 0.18))
    drop-shadow(0 0 80px rgba(5, 196, 100, 0.14));
  animation: floaty 8s ease-in-out infinite;
}
.bmock:hover { transform: translateY(var(--parallax-y, 0)) perspective(2000px) rotateY(-2deg) rotateX(1deg) scale(1.01); }
@media (max-width: 980px) { .bmock { margin: 0 auto; } }
@media (max-width: 640px) { .bhero-mock-wrap { display: none; } }
@media (prefers-reduced-motion: reduce) { .bmock { animation: none; transform: none; } }

.bmock-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
}
.bmock-glow--a {
  width: 260px; height: 260px;
  top: -50px; right: -50px;
  background: radial-gradient(circle, rgba(5, 196, 100, 0.5), transparent 65%);
}
.bmock-glow--b {
  width: 220px; height: 220px;
  bottom: -40px; left: -40px;
  background: radial-gradient(circle, rgba(9, 114, 116, 0.45), transparent 65%);
}

.bmock-window {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(20, 32, 29, 0.08);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 24px 60px -20px rgba(14, 84, 79, 0.25);
}
.bmock-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f5f5f0;
  border-bottom: 1px solid #ececdf;
}
.bmock-dots { display: flex; gap: 6px; }
.bmock-dots span { width: 10px; height: 10px; border-radius: 50%; background: #d6d3c4; }
.bmock-dots span:nth-child(1) { background: #f57267; }
.bmock-dots span:nth-child(2) { background: #f5be4d; }
.bmock-dots span:nth-child(3) { background: #5bc66a; }
.bmock-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #5e6a66;
  background: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #e5e2d8;
}
.bmock-url::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px rgba(5, 196, 100, 0.6);
}

/* read progress strip */
.bmock-progress {
  height: 3px;
  background: #eef0ea;
  position: relative;
  overflow: hidden;
}
.bmock-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  background: linear-gradient(90deg, var(--green-teal), var(--green-bright));
  animation: bmockread 5.5s var(--ease) infinite;
}
@keyframes bmockread {
  0% { width: 8%; }
  50% { width: 72%; }
  100% { width: 8%; }
}

.bmock-cover {
  height: 138px;
  background: linear-gradient(135deg, var(--green-deep) 0%, #0c3e3a 100%);
  position: relative;
  overflow: hidden;
}
.bmock-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(5, 196, 100, 0.28), transparent 52%),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(255, 255, 255, 0.045) 16px 17px);
}
.bmock-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse);
  background: var(--green-bright);
  padding: 4px 9px;
  border-radius: 5px;
  z-index: 1;
}
.bmock-readtime {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(243, 239, 228, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
}

.bmock-body { padding: 18px; }
.bmock-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.014em;
  color: var(--fg);
  margin-bottom: 14px;
}
.bmock-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.bmock-line { height: 8px; border-radius: 4px; background: #eef0ea; }
.bmock-line:nth-child(1) { width: 100%; }
.bmock-line:nth-child(2) { width: 92%; }
.bmock-line:nth-child(3) { width: 78%; }

.bmock-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #f1efe7;
}
.bmock-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-teal));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bmock-author-name { font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--fg); }
.bmock-author-meta { font-size: 11px; color: var(--muted); }
.bmock-clap {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-teal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* floating chip */
.bmock-chip {
  position: absolute;
  bottom: -22px;
  left: -36px;
  background: #fff;
  border: 1px solid rgba(20, 32, 29, 0.08);
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 16px 36px -12px rgba(14, 84, 79, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: chipFloat 6s ease-in-out infinite;
}
@media (max-width: 980px) { .bmock-chip { left: 0; } }
.bmock-chip-ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-bright));
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bmock-chip-label { font-size: 12px; font-weight: 600; color: var(--fg); }
.bmock-chip-sub { font-size: 11px; color: var(--green-teal); }

/* ──────────────────────────────────────────────────────────────
   Sticky toolbar — category filter
   ────────────────────────────────────────────────────────────── */
.blog-toolbar {
  z-index: 40;
  padding: 16px 0;
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.blog-toolbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
}
@media (max-width: 640px) { .blog-chips { display: none; } }
.bchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--fg-2);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.bchip:hover { border-color: var(--green-deep); color: var(--green-deep); }
.bchip.is-active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cream);
}
.bchip-count {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--green-paler);
  color: var(--green-deep);
  padding: 2px 7px;
  border-radius: 999px;
  transition: all 0.2s;
}
.bchip.is-active .bchip-count { background: rgba(255, 255, 255, 0.18); color: var(--cream); }

.blog-toolbar-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.blog-toolbar-meta strong { color: var(--green-deep); font-weight: 600; }

/* ──────────────────────────────────────────────────────────────
   Listing layout — main + sidebar
   ────────────────────────────────────────────────────────────── */
.blog-section { padding: clamp(48px, 6vw, 80px) 0 clamp(72px, 8vw, 110px); }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 1080px) { .blog-layout { grid-template-columns: 1fr 300px; gap: 40px; } }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }

/* Featured spotlight (lead post) */
.bfeature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
  padding-bottom: clamp(36px, 4vw, 52px);
  margin-bottom: clamp(36px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
@media (max-width: 620px) { .bfeature { grid-template-columns: 1fr; } }

.bfeature-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 3;
}
.bfeature-photo .ph { position: absolute; inset: 0; border-radius: 0; }
.bfeature-photo .ph img,
.bfeature-photo .ph { transition: transform 0.8s var(--ease), filter 0.6s var(--ease); }
.bfeature-photo .ph img { filter: grayscale(1) contrast(1.02); }
.bfeature:hover .bfeature-photo .ph img { transform: scale(1.05); filter: grayscale(0) contrast(1); }
.bfeature-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse);
  background: var(--green-bright);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 22px -6px rgba(5, 196, 100, 0.5);
}

.bfeature-body { display: flex; flex-direction: column; gap: 14px; }
.bfeature-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bfeature-cat .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green-bright); }
.bfeature-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  transition: color 0.3s;
}
body[data-typo="serif"] .bfeature-title { font-weight: 500; letter-spacing: -0.014em; }
.bfeature:hover .bfeature-title { color: var(--green-deep); }
.bfeature-excerpt {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 48ch;
}
.bfeature-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.bfeature-meta .sep { opacity: 0.5; }
.bfeature-link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--green-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  align-self: flex-start;
  transition: all 0.25s;
}
.bfeature-link:hover { color: var(--green-bright); border-bottom-color: var(--green-bright); }
.bfeature-link svg { transition: transform 0.25s var(--ease); }
.bfeature:hover .bfeature-link svg { transform: translate(3px, -3px); }

/* Post grid */
.bpost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.6vw, 38px);
}
@media (max-width: 640px) { .bpost-grid { grid-template-columns: 1fr; } }

a.bfeature, a.bpost { text-decoration: none; color: inherit; }

.bpost {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}
.bpost-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 3;
}
.bpost-photo .ph { position: absolute; inset: 0; border-radius: 0; }
.bpost-photo .ph img { filter: grayscale(1) contrast(1.02); transition: transform 0.7s var(--ease), filter 0.6s var(--ease); }
.bpost:hover .bpost-photo .ph img { transform: scale(1.06); filter: grayscale(0) contrast(1); }
.bpost-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 84, 79, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}
.bpost:hover .bpost-photo::after { opacity: 1; }
.bpost-arrow {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-bright);
  color: var(--text-inverse);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(8px) scale(0.85);
  transition: all 0.4s var(--ease);
  box-shadow: 0 12px 26px -8px rgba(5, 196, 100, 0.6);
}
.bpost:hover .bpost-arrow { opacity: 1; transform: translateY(0) scale(1); }

.bpost-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-teal);
  margin-top: 2px;
}
.bpost-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.016em;
  color: var(--fg);
  transition: color 0.3s;
}
body[data-typo="serif"] .bpost-title { font-weight: 500; letter-spacing: -0.01em; }
.bpost:hover .bpost-title { color: var(--green-deep); }
.bpost-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
}
.bpost-meta {
  display: flex;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 4px;
}
.bpost-meta .sep { opacity: 0.5; }

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 72px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
}
.blog-empty h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--fg);
  margin-bottom: 10px;
}
.blog-empty p { color: var(--muted); margin-bottom: 22px; }

/* ──────────────────────────────────────────────────────────────
   Pagination
   ────────────────────────────────────────────────────────────── */
.bpag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(44px, 5vw, 68px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
}
.bpag-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--fg-2);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.22s var(--ease);
}
.bpag-btn:hover:not(:disabled):not(.is-active) {
  border-color: var(--green-deep);
  color: var(--green-deep);
  transform: translateY(-1px);
}
.bpag-btn.is-active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cream);
}
.bpag-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.bpag-arrow { width: 44px; }
.bpag-ellipsis {
  color: var(--muted);
  font-family: var(--font-mono);
  padding: 0 4px;
  user-select: none;
}

/* ──────────────────────────────────────────────────────────────
   Sidebar
   ────────────────────────────────────────────────────────────── */
.bside {
  position: sticky;
  top: 150px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (max-width: 900px) { .bside { display: none; } }

.bside-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: 24px;
}
.bside-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-teal);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bside-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Matrículas CTA card (highlight) */
.bside-cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream);
  padding: 28px 26px 30px;
  isolation: isolate;
}
.bside-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 100% 0%, rgba(5, 196, 100, 0.32), transparent 55%),
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(255, 255, 255, 0.04) 20px 21px);
}
.bside-cta-glow {
  position: absolute;
  width: 200px; height: 200px;
  bottom: -80px; right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 196, 100, 0.45), transparent 65%);
  filter: blur(36px);
  z-index: -1;
  animation: charpulse 6s ease-in-out infinite;
}
.bside-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.bside-cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(5, 196, 100, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
.bside-cta h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--cream);
  margin: 0 0 12px;
}
.bside-cta h3 em {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 300;
  color: var(--green-bright);
}
.bside-cta h3 .cta-highlight {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: var(--green-bright);
}
.bside-cta p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(243, 239, 228, 0.82);
  margin: 0 0 22px;
}
.bside-cta .btn { width: 100%; justify-content: center; }
.bside-cta-foot {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(243, 239, 228, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* Category list */
.bside-cats { display: flex; flex-direction: column; gap: 2px; }
.bside-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--fg-2);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
}
.bside-cat-row:hover { background: var(--green-paler); color: var(--green-deep); padding-left: 16px; }
.bside-cat-row.is-active { background: var(--green-paler); color: var(--green-deep); font-weight: 600; }
.bside-cat-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.bside-cat-row:hover .bside-cat-count,
.bside-cat-row.is-active .bside-cat-count { color: var(--green-teal); }

/* ──────────────────────────────────────────────────────────────
   Newsletter band
   ────────────────────────────────────────────────────────────── */
.news {
  padding: clamp(64px, 7vw, 104px) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.news-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(40px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 820px) { .news-card { grid-template-columns: 1fr; gap: 36px; } }
.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 100% 0%, rgba(5, 196, 100, 0.25), transparent 50%),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(255, 255, 255, 0.035) 24px 25px);
}
.news-glow {
  position: absolute;
  width: 340px; height: 340px;
  top: -120px; right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 196, 100, 0.4), transparent 65%);
  filter: blur(60px);
  z-index: -1;
  animation: charpulse 7s ease-in-out infinite;
}
.news-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.news-eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.6; }
.news h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 16px;
}
.news h2 em {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 300;
  color: var(--green-bright);
}
.news p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(243, 239, 228, 0.82);
  max-width: 44ch;
  margin: 0;
}

.news-form { display: flex; flex-direction: column; gap: 14px; }
.news-field { position: relative; }
.news-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--cream);
  padding: 17px 20px;
  border-radius: 12px;
  border: 1px solid rgba(243, 239, 228, 0.2);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  transition: all 0.25s var(--ease);
}
.news-input::placeholder { color: rgba(243, 239, 228, 0.5); }
.news-input:focus {
  border-color: var(--green-bright);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(5, 196, 100, 0.16);
}
.news-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .news-row { grid-template-columns: 1fr; } }
.news-form .btn { width: 100%; justify-content: center; padding: 16px 22px; }
.news-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(243, 239, 228, 0.6);
  margin: 0;
  cursor: pointer;
}
.news-consent a { color: var(--green-bright); border-bottom: 1px solid currentColor; }
.news-consent-input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.news-consent-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  border-radius: 5px;
  border: 1px solid rgba(243, 239, 228, 0.35);
  background: rgba(255, 255, 255, 0.05);
  display: grid; place-items: center;
  color: transparent;
  transition: all 0.2s var(--ease);
}
.news-consent-input:checked + .news-consent-box {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: var(--text-inverse);
}
.news-consent-input:focus-visible + .news-consent-box {
  box-shadow: 0 0 0 3px rgba(5, 196, 100, 0.3);
}
.news-form .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.news-success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 12px;
  background: rgba(5, 196, 100, 0.12);
  border: 1px solid rgba(5, 196, 100, 0.3);
  animation: lbStage 0.4s var(--ease);
}
.news-success-ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-bright);
  color: var(--text-inverse);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.news-success strong { color: var(--cream); display: block; font-family: var(--font-display); font-size: 16px; margin-bottom: 2px; }
.news-success span { color: rgba(243, 239, 228, 0.8); font-size: 13.5px; }
