/* RAL Japan Trading — Blog Page */

html:has(body.rj-blog-page) {
  background: #FAF8F4;
  scroll-behavior: smooth;
}

body.rj-blog-page {
  --rj-stone: #EDE8E0;
  --rj-paper: #FAF8F4;
  --rj-ink: #121212;
  --rj-muted: #5E5C56;
  --rj-line: rgba(18, 18, 18, 0.09);
  --rj-line-strong: rgba(18, 18, 18, 0.14);
  --rj-teal: #BC002D;
  --rj-teal-d: #8B0020;
  --rj-teal-soft: rgba(188, 0, 45, 0.08);
  --rj-gold: #C9982E;
  --rj-gold-light: #E8C56A;
  --rj-clay: #B84A35;
  --rj-radius: 16px;
  --rj-radius-lg: 24px;
  --rj-shadow: 0 20px 50px rgba(18, 18, 18, 0.08);
  --rj-shadow-lg: 0 32px 64px rgba(18, 18, 18, 0.12);
  --rj-font: 'Outfit', system-ui, sans-serif;
  --rj-serif: 'Fraunces', Georgia, serif;

  margin: 0;
  padding: 0;
  font-family: var(--rj-font);
  background: var(--rj-paper);
  color: var(--rj-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.rj-blog-page,
body.rj-blog-page main.blg {
  overflow-x: clip;
}

/* ── Shell ───────────────────────────────────────────────────── */

body.rj-blog-page .topbar {
  background: var(--rj-ink);
  color: #9b9993;
  border-bottom: none;
  font-size: 0.76rem;
}

body.rj-blog-page .topbar a { color: #c8c6c0; }
body.rj-blog-page .topbar a:hover { color: var(--rj-gold-light); }
body.rj-blog-page .topbar-location { color: #9b9993; }

body.rj-blog-page .header {
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--rj-line);
}

body.rj-blog-page .navbar .nav-primary > a,
body.rj-blog-page .nav-more-btn {
  color: #3a3a38;
  font-weight: 600;
  font-size: 0.86rem;
  border-radius: 999px;
}

body.rj-blog-page .navbar .nav-primary > a:hover,
body.rj-blog-page .nav-more-btn:hover,
body.rj-blog-page .nav-more.open .nav-more-btn {
  color: var(--rj-teal);
  background: var(--rj-teal-soft);
}

body.rj-blog-page .navbar .nav-primary > a.active {
  color: var(--rj-teal);
  background: var(--rj-teal-soft);
}

body.rj-blog-page .nav-more-menu {
  border-radius: var(--rj-radius);
  border-color: var(--rj-line);
  box-shadow: var(--rj-shadow);
}

body.rj-blog-page .nav-more-menu a:hover,
body.rj-blog-page .nav-more-menu a.active {
  color: var(--rj-teal);
  background: var(--rj-teal-soft);
}

body.rj-blog-page .nav-search-bar {
  background: #fff;
  border-color: var(--rj-line-strong);
  border-radius: 999px;
}

body.rj-blog-page .nav-search-bar input { font-family: inherit; font-size: 0.82rem; }
body.rj-blog-page .nav-search-bar button { color: var(--rj-muted); }
body.rj-blog-page .nav-search-bar button:hover { color: var(--rj-teal); }

body.rj-blog-page .nav-account-btn {
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.82rem;
}

body.rj-blog-page .nav-account-btn:hover,
body.rj-blog-page .nav-account-btn.active {
  color: var(--rj-teal);
  border-color: rgba(188, 0, 45, 0.25);
  background: var(--rj-teal-soft);
}

body.rj-blog-page .nav-cta.btn-primary {
  background: var(--rj-teal);
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  box-shadow: none;
}

body.rj-blog-page .nav-cta.btn-primary:hover {
  background: var(--rj-teal-d);
  transform: none;
}

body.rj-blog-page .site-footer-social a:hover {
  background: var(--rj-teal);
  border-color: var(--rj-teal);
}

body.rj-blog-page .site-footer-newsletter button { background: var(--rj-teal); }
body.rj-blog-page .site-footer-newsletter button:hover { background: var(--rj-teal-d); }
body.rj-blog-page .page-loader { background: var(--rj-paper); }
body.rj-blog-page .page-loader .loader-ring { border-top-color: var(--rj-teal); }

/* ── Primitives ──────────────────────────────────────────────── */

.blg .rj-kicker,
.blg-eyebrow-dark {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rj-teal);
  margin: 0 0 12px;
  background: none;
  border: none;
  padding: 0;
}

.blg-eyebrow-light {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rj-gold-light);
  margin: 0 0 12px;
}

.blg .rj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blg .rj-btn--solid {
  background: var(--rj-teal);
  color: #fff;
  box-shadow: 0 8px 24px rgba(188, 0, 45, 0.22);
}

.blg .rj-btn--solid:hover {
  background: var(--rj-teal-d);
  transform: translateY(-1px);
}

.blg .rj-btn--ghost {
  background: #fff;
  color: var(--rj-ink);
  border-color: var(--rj-line-strong);
}

.blg .rj-btn--ghost:hover { border-color: var(--rj-ink); }

.blg .rj-btn--compact {
  padding: 10px 18px;
  font-size: 0.84rem;
}

/* ── Hero ────────────────────────────────────────────────────── */

.blg-hero {
  padding: 40px 0 48px;
  background:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(188, 0, 45, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 4% 92%, rgba(185, 74, 53, 0.05) 0%, transparent 52%),
    var(--rj-paper);
}

.blg-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 56px;
  align-items: center;
}

.blg-hero__crumb { grid-column: 1 / -1; }

.blg-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--rj-muted);
}

.blg-breadcrumb a { color: var(--rj-muted); transition: color 0.2s; }
.blg-breadcrumb a:hover { color: var(--rj-teal); }
.blg-breadcrumb i { font-size: 0.62rem; opacity: 0.45; }
.blg-breadcrumb span { color: var(--rj-ink); font-weight: 600; }

.blg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--rj-line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rj-muted);
  margin-bottom: 22px;
}

.blg-hero__flag {
  width: 26px;
  height: 17px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px var(--rj-line);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blg-hero__flag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 50%, #BC002D 36%, transparent 37%);
}

.blg-hero__title {
  margin: 0 0 18px;
  line-height: 0.98;
}

.blg-hero__title-line {
  display: block;
  font-family: var(--rj-serif);
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--rj-ink);
}

.blg-hero__title-line--accent {
  font-style: italic;
  color: var(--rj-teal);
}

.blg-hero-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--rj-muted);
  max-width: 48ch;
  margin: 0 0 22px;
}

.blg-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.blg-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rj-muted);
}

.blg-hero__trust i { color: var(--rj-gold); font-size: 0.85rem; }

.blg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blg-hero-panel {
  background: #fff;
  border: 1px solid var(--rj-line);
  border-radius: var(--rj-radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--rj-shadow);
}

.blg-hero-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rj-teal);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rj-line);
}

.blg-hero-panel-head i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--rj-teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.blg-hero-featured {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  background: var(--rj-paper);
  border: 1px solid var(--rj-line);
  border-radius: var(--rj-radius);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.blg-hero-featured:hover {
  border-color: rgba(188, 0, 45, 0.25);
  background: var(--rj-teal-soft);
}

.blg-hero-featured img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.blg-hero-featured-placeholder {
  width: 120px;
  height: 80px;
  border-radius: 10px;
  background: var(--rj-teal-soft);
  color: var(--rj-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.blg-hero-featured span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.blg-hero-featured time {
  font-size: 0.72rem;
  color: var(--rj-muted);
}

.blg-hero-featured strong {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blg-hero-featured em {
  font-style: normal;
  font-size: 0.74rem;
  color: var(--rj-muted);
}

.blg-hero-tip p {
  margin: 0 0 16px;
  font-size: 0.88rem;
  color: var(--rj-muted);
  line-height: 1.65;
}

/* ── Pillars ─────────────────────────────────────────────────── */

.blg-pillars {
  padding: 0 0 32px;
}

.blg-pillar-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--rj-line);
  border-radius: var(--rj-radius-lg);
  box-shadow: 0 4px 24px rgba(18, 18, 18, 0.04);
  overflow: hidden;
}

.blg-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid var(--rj-line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.blg-pillar:last-child { border-right: none; }
.blg-pillar:hover { background: var(--rj-paper); }

.blg-pillar > i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--rj-teal-soft);
  color: var(--rj-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.blg-pillar span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.blg-pillar strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--rj-ink);
}

.blg-pillar em {
  font-style: normal;
  font-size: 0.76rem;
  color: var(--rj-muted);
}

/* ── Main layout ─────────────────────────────────────────────── */

.blg-main {
  padding: 0 0 72px;
}

.blg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: 32px;
  align-items: start;
}

.blg-content {
  min-width: 0;
}

/* Featured article */
.blg-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--rj-line);
  border-radius: var(--rj-radius-lg);
  overflow: hidden;
  box-shadow: var(--rj-shadow);
  margin-bottom: 40px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.blg-featured:hover {
  border-color: var(--rj-line-strong);
  box-shadow: var(--rj-shadow-lg);
}

.blg-featured-img {
  display: block;
  min-height: 280px;
  background: var(--rj-stone);
  overflow: hidden;
}

.blg-featured-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.4s;
}

.blg-featured:hover .blg-featured-img img {
  transform: scale(1.03);
}

.blg-featured-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blg-featured-body h2 {
  margin: 0 0 12px;
  font-family: var(--rj-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.blg-featured-body h2 a {
  color: var(--rj-ink);
  text-decoration: none;
  transition: color 0.2s;
}

.blg-featured-body h2 a:hover { color: var(--rj-teal); }

.blg-featured-body > p {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: var(--rj-muted);
  line-height: 1.7;
}

.blg-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.blg-section-head h2 {
  margin: 0;
  font-family: var(--rj-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rj-ink);
  letter-spacing: -0.02em;
}

.blg-section-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--rj-muted);
}

.blg-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.76rem;
  color: var(--rj-muted);
}

.blg-card-meta time,
.blg-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blg-card-meta i {
  color: var(--rj-teal);
  font-size: 0.7rem;
}

/* Card grid */
.blg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.blg-card {
  background: #fff;
  border: 1px solid var(--rj-line);
  border-radius: var(--rj-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(18, 18, 18, 0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.blg-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rj-shadow);
  border-color: var(--rj-line-strong);
}

.blg-card-img {
  display: block;
  height: 200px;
  overflow: hidden;
  background: var(--rj-stone);
}

.blg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blg-card:hover .blg-card-img img {
  transform: scale(1.05);
}

.blg-card-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rj-teal);
  font-size: 2rem;
  background: var(--rj-teal-soft);
}

.blg-card-body {
  padding: 22px 24px 24px;
}

.blg-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.blg-card-body h3 a {
  color: var(--rj-ink);
  text-decoration: none;
  transition: color 0.2s;
}

.blg-card-body h3 a:hover { color: var(--rj-teal); }

.blg-card-body p {
  margin: 0 0 16px;
  font-size: 0.86rem;
  color: var(--rj-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blg-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--rj-teal);
  text-decoration: none;
  transition: gap 0.2s;
}

.blg-read-link:hover { gap: 10px; }

/* Sidebar */
.blg-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blg-side-card {
  background: #fff;
  border: 1px solid var(--rj-line);
  border-radius: var(--rj-radius);
  padding: 22px;
  box-shadow: 0 4px 16px rgba(18, 18, 18, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.blg-side-card:hover {
  border-color: var(--rj-line-strong);
  box-shadow: 0 4px 16px rgba(18, 18, 18, 0.06);
}

.blg-side-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rj-teal);
  margin-bottom: 12px;
}

.blg-side-card > p {
  margin: 0 0 16px;
  font-size: 0.86rem;
  color: var(--rj-muted);
  line-height: 1.65;
}

.blg-side-btn {
  width: 100%;
  justify-content: center;
}

.blg-recent {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blg-recent li a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.blg-recent li a:hover { background: var(--rj-teal-soft); }

.blg-recent-num {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--rj-teal-soft);
  color: var(--rj-teal);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blg-recent-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.blg-recent strong {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--rj-ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blg-recent em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--rj-muted);
}

.blg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blg-tags span {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--rj-paper);
  border: 1px solid var(--rj-line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--rj-teal);
}

.blg-side-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blg-side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--rj-line);
  background: var(--rj-paper);
  color: var(--rj-ink);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.blg-side-link:hover {
  border-color: rgba(188, 0, 45, 0.25);
  background: var(--rj-teal-soft);
  color: var(--rj-teal);
}

.blg-side-link i { color: var(--rj-teal); width: 18px; text-align: center; }
.blg-side-wa i { color: #25a244; }

/* Empty state */
.blg-empty {
  background: #fff;
  border: 1px solid var(--rj-line);
  border-radius: var(--rj-radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--rj-shadow);
}

.blg-empty-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 22px;
  background: var(--rj-teal-soft);
  color: var(--rj-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.blg-empty h2 {
  margin: 0 0 12px;
  font-family: var(--rj-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--rj-ink);
  letter-spacing: -0.02em;
}

.blg-empty > p {
  margin: 0 auto 28px;
  max-width: 480px;
  font-size: 0.95rem;
  color: var(--rj-muted);
  line-height: 1.7;
}

.blg-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── CTA ─────────────────────────────────────────────────────── */

.blg-cta {
  padding: 0 0 80px;
}

.blg-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 32px;
  padding: 40px 40px 36px;
  background: #fff;
  border: 1px solid var(--rj-line);
  border-radius: var(--rj-radius-lg);
  box-shadow: var(--rj-shadow);
}

.blg-cta-main h2 {
  font-family: var(--rj-serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.blg-cta-main p {
  margin: 0 0 24px;
  color: var(--rj-muted);
  line-height: 1.65;
  max-width: 52ch;
}

.blg-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blg-cta-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blg-cta-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--rj-paper);
  border: 1px solid var(--rj-line);
  border-radius: var(--rj-radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.blg-cta-contact:hover {
  border-color: rgba(188, 0, 45, 0.25);
  background: var(--rj-teal-soft);
}

.blg-cta-contact i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rj-teal-soft);
  color: var(--rj-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.blg-cta-wa i {
  background: rgba(37, 211, 102, 0.12);
  color: #25a244;
}

.blg-cta-contact strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.blg-cta-contact em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--rj-muted);
}

/* ── Tablet breakpoints ──────────────────────────────────────── */

@media (max-width: 1024px) {
  .blg-pillar-bar { grid-template-columns: repeat(2, 1fr); }
  .blg-pillar:nth-child(2) { border-right: none; }
  .blg-pillar:nth-child(1),
  .blg-pillar:nth-child(2) { border-bottom: 1px solid var(--rj-line); }
  .blg-layout { grid-template-columns: 1fr; }
  .blg-sidebar { position: static; }
  .blg-featured { grid-template-columns: 1fr; }
  .blg-featured-img { min-height: 0; aspect-ratio: 16 / 10; }
  .blg-featured-img img { min-height: 0; height: 100%; }
  .blg-grid { grid-template-columns: 1fr; }
  .blg-cta-grid { grid-template-columns: 1fr; padding: 32px 28px; }
}

@media (max-width: 900px) {
  .blg-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .blg-featured-body { padding: 24px 20px; }
}
