/* ============================================================
   TECHNZONE — Insights / Blog Styles
   insights.css — shared for blogs-1-col.html & blog-single.html
   ============================================================ */

/* ── Insights Hero ───────────────────────────────────────── */
.insights-hero {
  background: linear-gradient(135deg, #0a0a12 0%, #12080e 60%, #0a0a12 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.insights-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(237,72,95,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.insights-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.insights-hero-left {
  max-width: 640px;
}

.insights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(237,72,95,0.1);
  border: 1px solid rgba(237,72,95,0.2);
  border-radius: 999px;
  color: #ff8a97;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.insights-hero-headline {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.insights-hero-headline .accent {
  color: var(--primary);
}

.insights-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.insights-hero-stat {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.insights-hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.insights-hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.insights-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Hero decorative floating cards */
.insights-hero-right {
  flex-shrink: 0;
  position: relative;
  width: 340px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-hero-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(12px);
}

.insights-hero-card:nth-child(1) {
  width: 220px;
  top: 0;
  left: 0;
  animation: float-a 5s ease-in-out infinite;
}

.insights-hero-card:nth-child(2) {
  width: 200px;
  bottom: 0;
  right: 0;
  animation: float-b 6s ease-in-out infinite;
  border-color: rgba(237,72,95,0.2);
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.hero-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}

.hero-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.hero-card-meta i { color: var(--primary); font-size: 0.8rem; }

/* ── Insights Grid Section ───────────────────────────────── */
.insights-section {
  background: #faf8f4;
  padding: 80px 0 100px;
}

.insights-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.insights-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.insights-section-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.insights-count {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}

/* ── Blog Grid ───────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Featured first card spans full width with horizontal layout */
.insight-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 360px;
}

.insight-card.featured .insight-card-img-wrap {
  flex: 0 0 55%;
  aspect-ratio: unset;
  min-height: 360px;
}

.insight-card.featured .insight-card-body {
  flex: 1;
  padding: 40px 44px;
  justify-content: center;
}

.insight-card.featured .insight-card-title {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  -webkit-line-clamp: 3;
  margin-bottom: 16px;
}

.insight-card.featured .insight-card-summary {
  -webkit-line-clamp: 4;
  margin-bottom: 28px;
}

.insight-card.featured .insight-read-more-btn {
  display: inline-flex;
}

/* ── Blog Card ───────────────────────────────────────────── */
.insight-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.insight-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
  border-radius: 20px 20px 0 0;
  z-index: 1;
}

.insight-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.11);
  border-color: transparent;
}

.insight-card:hover::after {
  transform: scaleX(1);
}

/* ── Card Image Wrap ─────────────────────────────────────── */
.insight-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #1a1a2e;
  flex-shrink: 0;
}

.insight-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.insight-card:hover .insight-card-img {
  transform: scale(1.06);
}

/* Bottom gradient overlay on every image */
.insight-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,18,0.72) 0%,
    rgba(10,10,18,0.18) 45%,
    transparent 75%
  );
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.insight-card:hover .insight-card-img-overlay {
  opacity: 0.85;
}

/* Date badge — bottom-left of image */
.insight-card-date-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(10,10,18,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
  pointer-events: none;
  z-index: 2;
}

/* Read-time badge — top-right of image */
.insight-card-readtime {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(237,72,95,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 2;
}

.insight-card-readtime i { font-size: 0.7rem; }

/* Image placeholder */
.insight-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #2a1020 100%);
}

.insight-card-img-placeholder i {
  font-size: 2.5rem;
  color: rgba(237,72,95,0.25);
}

/* ── Card Body ───────────────────────────────────────────── */
.insight-card-body {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insight-card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.insight-card-title {
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.42;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.insight-card-title a:hover { color: var(--primary); }

.insight-card-summary {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Card footer row */
.insight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.insight-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.insight-read-more:hover { gap: 9px; }

.insight-read-more i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.insight-read-more:hover i { transform: translateX(3px); }

/* Featured card button-style CTA */
.insight-read-more-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 24px;
  width: fit-content;
}

.insight-read-more-btn:hover {
  background: #c73652;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237,72,95,0.3);
}

/* ── Loading Skeletons ───────────────────────────────────── */
.insights-grid.loading .insight-card {
  pointer-events: none;
}

.skeleton-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.skeleton-img {
  aspect-ratio: 16/9;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

.skeleton-body {
  padding: 24px 28px;
}

.skeleton-line {
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  margin-bottom: 12px;
}

.skeleton-line.short { width: 60%; }
.skeleton-line.med   { width: 80%; }
.skeleton-line.full  { width: 100%; }

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Empty / Error State ─────────────────────────────────── */
.insights-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--gray);
}

.insights-empty i {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  color: var(--border);
}

/* ── Insights CTA ────────────────────────────────────────── */
.insights-cta {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}

.insights-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
}

.insights-cta h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.insights-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

/* ════════════════════════════════════════════════════════════
   BLOG SINGLE / ARTICLE DETAIL
   ════════════════════════════════════════════════════════════ */

/* ── Article Hero Section (boxed) ───────────────────────── */
.article-hero-section {
  background: linear-gradient(160deg, #09090f 0%, #110910 60%, #09090f 100%);
  padding: 112px 40px 48px;
  position: relative;
  overflow: hidden;
}

.article-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 60% 40%, rgba(237,72,95,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.article-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Breadcrumb above the box */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.article-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.article-breadcrumb i { font-size: 0.7rem; }

/* The boxed cover image */
.article-cover-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06);
  background: #1a1a2e;
}

.article-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.article-cover-box.loaded .article-cover-img {
  transform: scale(1);
}

/* Gradient overlay inside the box */
.article-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,16,0.92) 0%,
    rgba(8,8,16,0.55) 35%,
    rgba(8,8,16,0.1) 65%,
    transparent 100%
  );
  pointer-events: none;
}

/* Content pinned to bottom of box */
.article-cover-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 52px 44px;
}

.article-hero-title {
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}

.article-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-hero-meta i { color: var(--primary); }

/* ── Article Body ────────────────────────────────────────── */
.article-section {
  background: #fff;
  padding: 72px 0 96px;
}

.article-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 820px 1fr;
  gap: 64px;
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-content {
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.85;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.25;
}

.article-content h2 { font-size: 1.75rem; }
.article-content h3 { font-size: 1.375rem; }
.article-content h4 { font-size: 1.125rem; }

.article-content p { margin-bottom: 1.5em; }

.article-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 2em 0;
}

.article-content ul,
.article-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.article-content li { margin-bottom: 0.5em; }

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(237,72,95,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.article-content a:hover {
  text-decoration-color: var(--primary);
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  margin: 2em 0;
  padding: 16px 24px;
  background: #faf8f4;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--charcoal);
}

.article-content code {
  background: #f3f4f6;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.875em;
  color: var(--primary);
}

.article-content pre {
  background: #1f1f2e;
  border-radius: 12px;
  padding: 24px;
  overflow-x: auto;
  margin: 2em 0;
}

.article-content pre code {
  background: none;
  color: rgba(255,255,255,0.85);
  padding: 0;
  font-size: 0.875rem;
}

/* ── Article Share / Tags ────────────────────────────────── */
.article-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.article-back-link:hover {
  color: var(--primary);
  gap: 12px;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-share-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.share-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Sidebar ─────────────────────────────────────────────── */
.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #faf8f4;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray);
  margin-bottom: 20px;
}

/* CTA Widget */
.sidebar-cta-widget {
  background: linear-gradient(135deg, var(--primary) 0%, #c73652 100%);
  border-radius: 16px;
  padding: 32px 28px;
  color: #fff;
  text-align: center;
}

.sidebar-cta-widget h4 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.sidebar-cta-widget p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-cta-widget .btn-white {
  background: #fff;
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-cta-widget .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Related articles in sidebar */
.related-article-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.related-article-item:last-child { border-bottom: none; }
.related-article-item:hover { opacity: 0.75; }

.related-article-thumb {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e7eb;
}

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

.related-article-info { min-width: 0; }

.related-article-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.related-article-date {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── Loading state for article ───────────────────────────── */
.article-loading {
  padding: 80px 0;
  text-align: center;
  color: var(--gray);
}

.article-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin-article 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin-article {
  to { transform: rotate(360deg); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .article-container { grid-template-columns: 1fr 300px; }
}

@media (max-width: 1024px) {
  .insights-hero-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .insights-hero-right { display: none; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-card.featured { flex-direction: column; }
  .insight-card.featured .insight-card-img-wrap { flex: unset; min-height: unset; aspect-ratio: 16/9; }
  .insight-card.featured .insight-card-body { padding: 24px 28px 28px; }
  .insight-card.featured .insight-read-more-btn { display: none; }

  .article-hero-section { padding: 100px 24px 40px; }
  .article-cover-box { height: 420px; }
  .article-cover-bottom { padding: 0 32px 36px; }
  .article-container { grid-template-columns: 1fr; }
  .article-sidebar { position: relative; top: 0; }
}

@media (max-width: 768px) {
  .insights-hero { padding: 120px 0 60px; }
  .insights-hero-inner { padding: 0 24px; }
  .insights-container { padding: 0 24px; }
  .insights-section { padding: 60px 0 80px; }
  .insights-section-header { flex-direction: column; align-items: flex-start; }
  .insights-grid { grid-template-columns: 1fr; gap: 20px; }

  .article-hero-section { padding: 92px 16px 32px; }
  .article-cover-box { height: 300px; border-radius: 16px; }
  .article-cover-bottom { padding: 0 20px 24px; }
  .article-hero-title { font-size: clamp(20px, 5vw, 30px); margin-bottom: 12px; }
  .article-section { padding: 48px 0 72px; }
  .article-container { padding: 0 20px; gap: 40px; }
  .article-footer-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .insights-hero-stat { gap: 24px; }
  .article-cover-box { height: 240px; }
  .insight-card.featured .insight-card-body { padding: 20px 22px 24px; }
}

/* ── RTL (Arabic) ────────────────────────────────────────── */
body:lang(ar) .insights-hero-inner { direction: rtl; }
body:lang(ar) .insights-hero-left { text-align: right; }
body:lang(ar) .insights-hero-stat { flex-direction: row-reverse; }
body:lang(ar) .insights-section-header { flex-direction: row-reverse; }
body:lang(ar) .insight-card-body { text-align: right; direction: rtl; }
body:lang(ar) .insight-card-date-badge { left: auto; right: 14px; }
body:lang(ar) .insight-card-readtime { right: auto; left: 14px; }
body:lang(ar) .insight-card-footer { flex-direction: row-reverse; }
body:lang(ar) .insight-read-more { flex-direction: row-reverse; }
body:lang(ar) .article-breadcrumb { flex-direction: row-reverse; }
body:lang(ar) .article-cover-bottom { text-align: right; direction: rtl; }
body:lang(ar) .article-hero-meta { flex-direction: row-reverse; }
body:lang(ar) .article-content { text-align: right; direction: rtl; }
body:lang(ar) .article-content ul,
body:lang(ar) .article-content ol { padding-left: 0; padding-right: 1.5em; }
body:lang(ar) .article-content blockquote { border-left: none; border-right: 4px solid var(--primary); border-radius: 12px 0 0 12px; }
body:lang(ar) .article-footer-row { flex-direction: row-reverse; }
body:lang(ar) .article-back-link { flex-direction: row-reverse; }
body:lang(ar) .article-share { flex-direction: row-reverse; }
body:lang(ar) .related-article-item { flex-direction: row-reverse; text-align: right; }
body:lang(ar) .sidebar-cta-widget { direction: rtl; }
body:lang(ar) .insights-container { direction: rtl; }
