/* STR Revenue — replica blog styles
 * Design tokens mirror site-replica (main site design system):
 * navy #000a26, blue #01a4ef, teal #00a896, teal-2 #02c39a, gold #e4b54d,
 * ink #1a1a2e, muted #6b7280, line #e5e7eb. Body: Manrope. Headlines:
 * Fraunces (variable serif, 400/500/700/800 + italic) loaded via Google Fonts.
 * Lengths sit on the 8px scale (8/16/24/32/40/48/64) — no off-scale values.
 */

/* Focus rings (WCAG 2.4.7) — scoped to blog pages because blog.css only
 * loads there; !important beats the platform's outline resets. */
:focus-visible {
  outline: 3px solid #01a4ef !important;
  outline-offset: 2px !important;
}

/* Header nav — let platform defaults show through (Helvetica, matching the
 * main site's header nav styling). No font override needed. */

/* Body copy ink — the platform's global styles force #3e3e3e (4.3:1, fails
 * WCAG AA) on text-widget-content / post-description / note-editable. Restore
 * the design-system ink #1a1a2e (12.6:1) on article prose + blog text. */
.article-inner,
.prose,
.prose p,
.prose li,
.prose td,
.article-inner p,
.article-inner li,
.article-inner td,
.text-widget-content,
.text-widget-content p,
.text-widget-content li,
.post-description,
.post-description p,
.note-editable {
  color: #1a1a2e !important;
}

/* Body copy face — Manrope is the main site's body/UI font (matches
 * .epic-hero-badge, .epic-hero-subtitle, buttons). */
.blog-shell,
.article-inner,
.post-card,
.prose {
  font-family: "Manrope", Arial, sans-serif;
}

/* Mobile drawer burger — the platform's burger *style* blocks live behind
 * #header-widget-* IDs this replica dropped, so blog pages animate the lines
 * themselves. JS (assets/js/mobile-menu.js) toggles .active on click/close. */
.mobile-burger li {
  -webkit-transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.mobile-burger.active {
  background-color: #000a26;
}
.mobile-burger.active .before,
.mobile-burger.active .middle,
.mobile-burger.active .after {
  background: #ffffff !important;
}
.mobile-burger.active .before {
  -webkit-transform: rotate(45deg) translate3d(6px, 5px, 0);
  transform: rotate(45deg) translate3d(6px, 5px, 0);
}
.mobile-burger.active .middle {
  opacity: 0;
}
.mobile-burger.active .after {
  -webkit-transform: rotate(-45deg) translate3d(-5px, 6px, 0);
  transform: rotate(-45deg) translate3d(-5px, 6px, 0);
}

.blog-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── B1. Blog index hero — full-bleed, replaces the old .blog-head band ── */
.blog-hero {
  min-height: clamp(360px, 44vw, 480px);
  background: #000a26;
  margin: 0 -24px 48px;
  border-radius: 0 0 24px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* Cover image — newest post's cover, dimmed so text stays legible */
.blog-hero__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: brightness(0.8);
  z-index: 0;
}
/* Navy gradient overlay — darker at top, fading toward bottom */
.blog-hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 10, 38, 0.55),
    rgba(0, 10, 38, 0.35) 50%,
    rgba(0, 10, 38, 0.15)
  );
}
/* Noise texture overlay — SVG fractalNoise at 4% (site-replica pattern) */
.blog-hero__noise {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.blog-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: left;
}
/* B4 — eyebrow: pill badge matching the main site's .epic-hero-badge pattern
   (gold tinted bg, blur backdrop, pulsing dot, Manrope 700). */
.blog-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(228, 181, 77, 0.15);
  border: 1px solid rgba(228, 181, 77, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: "Manrope", Arial, sans-serif;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.blog-hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e4b54d;
  box-shadow: 0 0 12px rgba(228, 181, 77, 0.8);
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.blog-hero__title {
  margin: 0 0 16px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}
.blog-hero__title em {
  font-style: italic;
  color: #e4b54d;
}
.blog-hero__subline {
  margin: 0 0 32px;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.6;
  font-family: "Manrope", Arial, sans-serif;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  padding: 40px 0 64px;
}

.post-card {
  border: 1px solid rgba(228, 181, 77, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 10px 24px rgba(5, 13, 26, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.25s cubic-bezier(0.22, 0.8, 0.24, 1),
              box-shadow 0.25s cubic-bezier(0.22, 0.8, 0.24, 1),
              border-color 0.25s;
  position: relative;
}
.post-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #01a4ef, #e4b54d);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 1;
}

.post-card:hover {
  box-shadow:
    0 20px 48px rgba(5, 13, 26, 0.10),
    0 4px 12px rgba(1, 164, 239, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  border-color: rgba(1, 164, 239, 0.15);
}
.post-card:hover::before {
  opacity: 1;
}
.post-card:hover .post-card__title {
  color: #01a4ef;
}

.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* B2 — post-card cover image (16:9), scales on hover */
.post-card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.post-card:hover .post-card__cover {
  transform: scale(1.04);
}

/* B3 — featured (first) post spans 2 columns with a wide 32:9 cover, but ONLY
   at ≥1024px. Below that it stacks as a normal 16:9 card (per spec). */
@media (min-width: 1024px) {
  .blog-list .post-card:first-child {
    grid-column: span 2;
  }
  .blog-list .post-card:first-child .post-card__cover {
    aspect-ratio: 32 / 9;
  }
}

.post-card__body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.post-card__meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.post-card__title {
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #000a26;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

.post-card__excerpt {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: #e6f6fd;
  color: #01a4ef;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.tag:hover {
  background: #cceefc;
}

/* ── A4. Neutralize platform chrome on article pages so the hero breaks out
   full-width while prose keeps its 780px column. The forced priority is
   required: the platform ships a .grid-row-fullwidth>.grid-content rule with
   max-width:100%!important, which would otherwise win the cascade and keep
   the container centred. ── */
.article-page-root .grid-content,
.article-page-root .code-widget-content {
  max-width: none !important;
  padding: 0 !important;
}

/* ── A1. Article hero — full-width, cover + navy overlay + noise ── */
.article-hero {
  position: relative;
  min-height: clamp(360px, 52vw, 520px);
  background: #000a26;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.article-hero__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Navy gradient overlay — transparent at top, ~90% navy toward the bottom */
.article-hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 10, 38, 0) 0%,
    rgba(0, 10, 38, 0.35) 55%,
    rgba(0, 10, 38, 0.9) 100%
  );
}
/* Noise texture overlay — SVG fractalNoise at 4% (same pattern as .blog-hero) */
.article-hero__noise {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.article-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 64px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #e4b54d;
}
.breadcrumbs .sep {
  opacity: 0.5;
}
.breadcrumbs .current {
  color: #fff;
  font-weight: 600;
}

/* Article meta — date (gold) + tag pills on the hero */
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
}
.article-meta__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4b54d;
  margin: 0;
}
/* Tag pills — white glass on the navy hero */
.article-hero .tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.article-hero .tag:hover {
  background: rgba(228, 181, 77, 0.85);
  color: #000a26;
}

.article-title {
  margin: 8px 0 12px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 10, 38, 0.4);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}
.article-title em {
  font-style: italic;
  color: #e4b54d;
}

.article-byline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0;
}
.article-byline .author-name {
  color: #fff;
  font-weight: 600;
}
.article-byline .author-role {
  color: rgba(255, 255, 255, 0.5);
}

/* ── A3. Prose wrapper — centered 780px column around .prose ── */
.prose-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.prose {
  font-size: 16px;
  line-height: 1.75;
  color: #1a1a2e;
}

.prose h2,
.prose h3,
.prose h4 {
  color: #000a26;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 1.6em 0 0.6em;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

.prose h2 {
  font-size: clamp(28px, 3vw, 32px);
  position: relative;
  padding-bottom: 12px;
  margin-top: 3em;
}
.prose h2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 3px;
  background: #e4b54d;
  border-radius: 2px;
}
.prose h3 { font-size: 24px; }
.prose h4 { font-size: 16px; }

.prose p { margin: 0 0 1.25em; }

.prose a {
  color: #01a4ef;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong {
  font-weight: 700;
  color: #000a26;
}

.prose ul,
.prose ol {
  margin: 0 0 1.25em;
  padding-left: 1.4em;
}

.prose li { margin-bottom: 0.4em; }
.prose li::marker { color: #01a4ef; }

.prose blockquote {
  position: relative;
  margin: 1.6em 0;
  padding: 28px 24px 20px 48px;
  border-left: 4px solid #e4b54d;
  background: rgba(228, 181, 77, 0.06);
  color: #000a26;
  border-radius: 0 12px 12px 0;
}
.prose blockquote::before {
  content: "″";
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 3em;
  line-height: 1;
  color: #e4b54d;
  opacity: 0.15;
  pointer-events: none;
}
.prose blockquote p { margin: 0; }

.prose code {
  font-family: Consolas, "SF Mono", monospace;
  font-size: 0.88em;
  background: #f1f3f7;
  border: 1px solid #e5e7eb;
  padding: 0.1em 0.4em;
  border-radius: 6px;
}

.prose pre {
  background: #000a26;
  color: #eef1f7;
  border-radius: 12px;
  padding: 24px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 1.6em;
}

.prose pre code {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 10, 38, 0.15);
}

.prose th {
  background: #000a26;
  color: #fff;
  text-align: left;
  font-weight: 700;
}

.prose th,
.prose td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 10, 38, 0.15);
}

.prose tr:last-child td { border-bottom: 0; }

.prose tr:nth-child(even) { background: #f7f9fb; }

.prose hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 2em 0;
}

/* Social embeds */
.social-embed { margin: 24px 0; }

.se-facade {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 13, 26, 0.06);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.se-facade:hover {
  box-shadow: 0 18px 40px rgba(5, 13, 26, 0.12);
  transform: translateY(-2px);
}

.se-facade--youtube { flex-direction: column; }

.se-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000a26;
}

.se-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.se-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}

.se-play::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.se-facade:hover .se-play { background: #e53935; }

.se-logo {
  flex: 0 0 auto;
  align-self: stretch;
  width: 72px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  color: #fff;
}

.se-logo--youtube { background: #e53935; }
.se-logo--x { background: #0f1419; }
.se-logo--x::after { content: "×"; font-size: 40px; }
.se-logo--instagram { background: linear-gradient(45deg, #833ab4, #c13584 55%, #e1306c); }
.se-logo--instagram::after { content: "◉"; font-size: 34px; }
.se-logo--linkedin { background: #0a66c2; }
.se-logo--linkedin::after { content: "in"; font-size: 30px; font-family: Arial, sans-serif; }
.se-logo--tiktok { background: #111; }
.se-logo--tiktok::after { content: "♪"; font-size: 34px; color: #02c39a; }

.se-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 16px 24px;
}

.se-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.se-title {
  font-size: 16px;
  font-weight: 600;
  color: #000a26;
  line-height: 1.35;
}

.se-cta {
  font-size: 14px;
  font-weight: 700;
  color: #01a4ef;
}

.se-player {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #000a26;
  box-shadow: 0 10px 24px rgba(5, 13, 26, 0.06);
}

.se-player iframe,
.se-player .se-oembed {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Hydrated embeds (assets/js/social-embed.js) */
.se-player-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 13, 26, 0.06);
  transition: box-shadow 0.18s ease;
}

.se-player-card:hover {
  box-shadow: 0 18px 40px rgba(5, 13, 26, 0.12);
}

/* YouTube click-to-play cover: reuse the reserved 16:9 .se-thumb box */
.se-thumb.se-yt-cover {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

.se-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Meta links in the hydrated YouTube card (title + CTA stay clickable) */
.se-meta a.se-title,
.se-meta a.se-cta {
  text-decoration: none;
  color: inherit;
}

.se-meta a.se-title:hover,
.se-meta a.se-cta:hover {
  color: #01a4ef;
}

/* oEmbed container (X / Instagram) */
.se-oembed-box {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 13, 26, 0.06);
}

.se-oembed {
  min-height: 200px;
  padding: 8px 16px;
}

.se-oembed .twitter-tweet,
.se-oembed .instagram-media {
  margin: 0 auto;
}

.se-oembed-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid #e5e7eb;
  background: #fafbfc;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
}

.se-oembed-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.se-oembed-foot a {
  color: #01a4ef;
  text-decoration: none;
}

.se-oembed-foot a:hover {
  text-decoration: underline;
}

/* Subtle feedback while an oEmbed is being fetched */
.social-embed[data-se-state="loading"] .se-facade {
  opacity: 0.72;
  transition: opacity 0.18s ease;
}

/* CTA band — navy hero pattern with noise texture (matches site-replica).
   A5: top-rounded only + flush (no side margins) since it's full-bleed on the
   article page; content sits in a centered .cta-band__content wrapper. */
.cta-band {
  margin: 0;
  padding: 48px 24px;
  border-radius: 24px 24px 0 0;
  background: #000a26;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
/* Radial gradient ambient */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 40%, rgba(228, 181, 77, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 70% 65%, rgba(1, 164, 239, 0.04) 0%, transparent 55%);
}
/* Noise texture overlay */
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
}
.cta-band h2 em {
  font-style: italic;
  color: #e4b54d;
}

.cta-band p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #01a4ef;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(1, 164, 239, 0.35);
  position: relative;
  z-index: 2;
}
.cta-btn .arrow {
  transition: transform 0.25s ease;
}
.cta-btn:hover .arrow {
  transform: translateX(4px);
}

.cta-btn:hover {
  background: #2eb8f5;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(1, 164, 239, 0.5);
}

@media (max-width: 1024px) {
  .blog-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .blog-shell { padding: 0 16px; }
  .blog-hero { margin: 0 -16px 40px; }
  .article-hero__container { padding: 40px 16px 48px; }
  .prose-wrapper { padding: 0 16px 48px; }
  .cta-band { border-radius: 16px 16px 0 0; }
}
