/* AppBird Blog — Pixel-matched to HomeV2 / SimpleTopNavBar / Footer */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family:
    'Geist',
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  color: #1d1d1f;
  background: #f5f5f7;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #0072ed;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: #ff9500;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS — staggered reveal on page load
   ═══════════════════════════════════════════════════════════ */

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim {
  opacity: 0;
  animation: fadeSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--d, 0) * 0.08s + 0.1s);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR — matches SimpleTopNavBar.tsx exactly
   ═══════════════════════════════════════════════════════════ */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1d1f;
  padding: 0 16px;
  height: 56px;
  color: #fff;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
}

.nav__left {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__logo svg {
  height: 36px;
  width: auto;
}

.nav__logo-text {
  font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-left: 8px;
  display: none;
}

.nav__sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  margin-left: 16px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  height: 100%;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  position: relative;
  outline: none;
}

.nav__link:hover {
  color: #fff;
}

.nav__link--active {
  color: #ff9500;
  font-weight: 600;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff9500;
}

.nav__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav__btn--ghost {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.nav__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav__btn--solid {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  background: #fff;
  color: #1d1d1f;
  text-decoration: none;
  transition: background 0.15s ease;
}

.nav__btn--solid:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1d1d1f;
}

/* ═══════════════════════════════════════════════════════════
   BLOG HERO — atmospheric header with badge + topic pills
   ═══════════════════════════════════════════════════════════ */

.blog-hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 16px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.blog-hero__content {
  flex: 1;
  min-width: 0;
}

.blog-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff9500;
  margin-bottom: 6px;
}

.blog-hero__badge svg {
  width: 12px;
  height: 12px;
}

.blog-hero h1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 5px;
  color: #1d1d1f;
}

.blog-hero p {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  max-width: 520px;
}

/* Topic pills — compact inline chips */
.blog-hero__topics {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.blog-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  background: #fff;
  border: 1px solid #e5e5e7;
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
  cursor: default;
}

.blog-topic-pill:hover {
  border-color: #ff9500;
  color: #1d1d1f;
  background: #fffbf5;
  box-shadow: 0 1px 3px rgba(255, 149, 0, 0.08);
}

.blog-topic-pill svg {
  width: 12px;
  height: 12px;
  color: #ff9500;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER — dot + label + line
   ═══════════════════════════════════════════════════════════ */

.blog-section-header {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}

.blog-section-header__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.blog-section-header__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff9500;
  flex-shrink: 0;
}

.blog-section-header__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  white-space: nowrap;
}

.blog-section-header__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #e5e5e7 0%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════
   FEATURED POST — horizontal card with accent bar
   ═══════════════════════════════════════════════════════════ */

.blog-featured {
  max-width: 1600px;
  margin: 0 auto;
  padding: 10px 16px 16px;
}

.blog-featured__card {
  background: #fff;
  border: 1px solid #e5e5e7;
  border-left: 3px solid #ff9500;
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
}

.blog-featured__card:hover {
  box-shadow:
    0 12px 32px -6px rgba(0, 0, 0, 0.12),
    0 4px 8px -2px rgba(0, 0, 0, 0.06);
  border-color: #d4d4d6;
}

/* Orange accent bar — hidden by default, shown via grid on desktop */
.blog-featured__accent {
  display: none;
  background: linear-gradient(180deg, #ff9500 0%, #fe6400 100%);
  border-radius: 12px 0 0 12px;
}

.blog-featured__image {
  display: block;
  overflow: hidden;
  background: #f3f4f6;
  position: relative;
  min-width: 0;
  aspect-ratio: 2 / 1;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 149, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.blog-featured__card:hover .blog-featured__image-overlay {
  opacity: 0;
}

.blog-featured__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.blog-featured__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
  color: #1d1d1f;
}

.blog-featured__title a {
  color: #1d1d1f;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-featured__title a:hover {
  color: #0072ed;
}

.blog-featured__excerpt {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-featured__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #9ca3af;
}

.blog-featured__meta .dot {
  color: #e5e7eb;
}

.blog-featured__author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-featured__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-featured__avatar svg {
  width: 100%;
  height: 100%;
}

.blog-featured__read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #ff9500;
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    gap 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
  flex-shrink: 0;
}

.blog-featured__read-btn:hover {
  background: #e68600;
  color: #fff;
  gap: 10px;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.25);
}

.blog-featured__read-btn svg {
  width: 13px;
  height: 13px;
}

/* ═══════════════════════════════════════════════════════════
   BLOG CARD TAGS — shared between featured + grid cards
   ═══════════════════════════════════════════════════════════ */

.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.blog-card__tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  background: #fff7ed;
  color: #c2410c;
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */

.blog-cta {
  max-width: 1600px;
  margin: 0 auto;
  padding: 4px 16px 24px;
}

.blog-cta__box {
  background: #1d1d1f;
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle orange glow in corner */
.blog-cta__box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.1) 0%, rgba(254, 100, 0, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

/* Subtle left edge accent */
.blog-cta__box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff9500 0%, #fe6400 100%);
  border-radius: 12px 0 0 12px;
}

.blog-cta__text h2 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.blog-cta__text p {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
  max-width: 480px;
}

.blog-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff9500;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    gap 0.2s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.blog-cta__btn:hover {
  background: #e68600;
  color: #fff;
  transform: translateY(-1px);
  gap: 10px;
  box-shadow: 0 4px 14px rgba(255, 149, 0, 0.3);
}

.blog-cta__btn svg {
  width: 14px;
  height: 14px;
}

/* ═══════════════════════════════════════════════════════════
   BLOG CARD — for grid layout (future multi-post)
   ═══════════════════════════════════════════════════════════ */

.blog-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 12px 16px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow:
    0 8px 24px -4px rgba(0, 0, 0, 0.1),
    0 2px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f5f5f7;
  border-bottom: 1px solid #e5e5e7;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}

.blog-card__body {
  padding: 12px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.blog-card__title a {
  color: #1d1d1f;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: #0072ed;
}

.blog-card__excerpt {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #9ca3af;
}

.blog-card__meta .dot {
  color: #e5e7eb;
}

/* ═══════════════════════════════════════════════════════════
   GAME REFERENCES — inline store + AppBird icon links
   ═══════════════════════════════════════════════════════════ */

.appbird-ref {
  display: inline;
  margin-left: 1px;
  vertical-align: middle;
  line-height: 0;
}

.appbird-ref img {
  display: inline;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.appbird-ref:hover img {
  opacity: 0.7;
  transform: scale(1.15);
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════════════════ */

.breadcrumbs {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 0 16px;
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs a {
  color: #6b7280;
}

.breadcrumbs a:hover {
  color: #0072ed;
}

.breadcrumbs .sep {
  color: #e5e7eb;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGE
   ═══════════════════════════════════════════════════════════ */

.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

.article-container {
  background: #fff;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  margin-top: 16px;
  margin-bottom: 24px;
  overflow: hidden;
}

.article-header {
  padding: 24px 24px 0;
}

.article-header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.article-header__tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  background: #fff7ed;
  color: #c2410c;
}

.article-header h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.article-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e9;
}

.article-header__meta .dot {
  color: #e5e7eb;
}

.article-header__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-header__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.article-header__avatar svg {
  width: 100%;
  height: 100%;
}

/* ── Article body ──────────────────────────────────────── */

.article-body {
  padding: 20px 24px 24px;
}

.article-body h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 24px 0 8px;
  line-height: 1.4;
  color: #1d1d1f;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 18px 0 4px;
  line-height: 1.4;
  color: #1d1d1f;
}

.article-body p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

.article-body ul,
.article-body ol {
  margin-bottom: 14px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

.article-body li {
  margin-bottom: 4px;
}

.article-body li::marker {
  color: #ff9500;
}

.article-body strong {
  font-weight: 600;
  color: #1d1d1f;
}

.article-body a strong {
  color: inherit;
}

.article-body em {
  font-style: italic;
}

.article-body blockquote {
  border-left: 3px solid #ff9500;
  padding: 8px 16px;
  margin: 16px 0;
  background: #f9fafb;
  border-radius: 0 8px 8px 0;
  color: #6b7280;
  font-style: italic;
  font-size: 14px;
}

.article-body code {
  font-size: 13px;
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.article-body pre {
  background: #1d1d1f;
  color: #e5e7eb;
  padding: 16px 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 16px 0;
  font-size: 13px;
  line-height: 1.6;
}

.article-body pre code {
  background: none;
  padding: 0;
  color: inherit;
  border: none;
}

.article-body hr {
  border: none;
  border-top: 1px solid #e8e8e9;
  margin: 24px 0;
}

/* ── Callout ──────────────────────────────────────────── */

.callout {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
}

.callout strong {
  color: #c2410c;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE CTA
   ═══════════════════════════════════════════════════════════ */

.article-cta {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 0 16px;
}

.article-cta__box {
  background: #1d1d1f;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.article-cta__box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.article-cta__box h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.article-cta__box p {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff9500;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  position: relative;
  z-index: 1;
}

.article-cta__btn:hover {
  background: #e68600;
  color: #fff;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.blog-footer {
  background: #1d1d1f;
  color: #fff;
  padding: 8px 16px;
  margin-top: auto;
  font-weight: 300;
  letter-spacing: 0.025em;
}

.blog-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.blog-footer__copy {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.blog-footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 9px;
}

.blog-footer__links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-footer__links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.blog-footer__links .sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 8px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .blog-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blog-hero__topics {
    justify-content: flex-start;
  }
}

@media (min-width: 769px) {
  .blog-featured__card {
    display: grid;
    grid-template-columns: 3px minmax(0, 1fr) minmax(0, 1.2fr);
    border-left: 1px solid #e5e5e7;
  }

  .blog-featured__accent {
    display: block;
  }

  .blog-featured__image {
    aspect-ratio: 4 / 3;
  }

  .blog-featured__body {
    padding: 20px 24px;
  }
}

@media (max-width: 768px) {
  .blog-footer__links,
  .blog-footer__copy {
    font-size: 7px;
  }

  .blog-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .blog-cta__text {
    text-align: center;
  }
}

@media (min-width: 1280px) {
  .nav__logo-text {
    display: inline;
  }

  .nav__sep {
    margin-left: 24px;
  }

  .nav__links {
    gap: 24px;
    margin-left: 24px;
  }
}

@media (max-width: 1024px) {
  .nav__sep {
    display: none;
  }

  .nav__links {
    margin-left: 12px;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .nav__link span {
    display: none;
  }

  .nav__link svg {
    width: 20px;
    height: 20px;
  }

  .nav__links {
    gap: 12px;
  }

  .blog-hero {
    padding: 16px 16px 12px;
  }

  .blog-hero h1 {
    font-size: 18px;
  }

  .blog-hero__topics {
    gap: 4px;
  }

  .blog-topic-pill {
    font-size: 10px;
    padding: 3px 8px;
  }

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

  .article-header {
    padding: 20px 16px 0;
  }

  .article-header h1 {
    font-size: 22px;
  }

  .article-body {
    padding: 16px 16px 20px;
  }

  .article-cta__box {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .nav__btn--ghost {
    display: none;
  }
}
