.insights-hero {

  min-height: 62vh;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.insights-hero h1 {

  max-width: 980px;

  font-size: clamp(46px, 8vw, 88px);

  line-height: 0.92;

  letter-spacing: -0.08em;

}

.insights-hero p {

  max-width: 680px;

  margin-top: 28px;

  color: var(--muted);

  font-size: 18px;

  line-height: 1.8;

}

.insights-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

}

.insight-card {

  min-height: 310px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 30px;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  background:

    radial-gradient(circle at top right, rgba(140, 123, 255, 0.12), transparent 38%),

    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));

  box-shadow: var(--shadow);

  transition: 0.35s ease;

}

.insight-card:hover {

  transform: translateY(-8px) scale(1.01);

  border-color: rgba(140, 123, 255, 0.38);

  background:

    radial-gradient(circle at top right, rgba(140, 123, 255, 0.18), transparent 42%),

    rgba(255,255,255,0.08);

}

.insight-card span {

  width: fit-content;

  padding: 9px 13px;

  border-radius: 999px;

  color: #b7abff;

  background: rgba(140, 123, 255, 0.16);

  border: 1px solid rgba(140, 123, 255, 0.30);

  font-size: 12px;

  font-weight: 800;

}

.insight-card h3 {

  margin: 28px 0 16px;

  font-size: 28px;

  line-height: 1.05;

  letter-spacing: -0.05em;

}

.insight-card p {

  color: var(--muted);

  line-height: 1.8;

  font-size: 15px;

}

.insight-card small {

  margin-top: 24px;

  color: var(--soft);

  font-size: 13px;

  font-weight: 700;

}

.insight-card.featured {

  grid-column: span 1;

  min-height: 280px;

  background:

    radial-gradient(circle at top right, rgba(140, 123, 255, 0.18), transparent 40%),

    linear-gradient(135deg, rgba(140, 123, 255, 0.16), rgba(102, 217, 232, 0.055));

}

.article-page {

  max-width: 1120px;

  margin: 0 auto;

  padding-top: 80px;

}

.back-link {

  display: inline-flex;

  margin-bottom: 46px;

  color: var(--muted);

  font-weight: 700;

  transition: 0.25s ease;

}

.back-link:hover {

  color: var(--text);

  transform: translateX(-4px);

}

.article-header h1 {

  max-width: 980px;

  font-size: clamp(44px, 7vw, 82px);

  line-height: 0.92;

  letter-spacing: -0.08em;

}

.article-header > p {

  max-width: 760px;

  margin-top: 28px;

  color: var(--soft);

  font-size: 20px;

  line-height: 1.7;

}

.article-meta {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;

}

.article-meta span {

  padding: 10px 14px;

  border: 1px solid var(--line);

  border-radius: 999px;

  color: var(--muted);

  background: rgba(255, 255, 255, 0.045);

  font-size: 13px;

  font-weight: 700;

}

.article-content {

  max-width: 880px;

  margin-top: 70px;

  padding: 44px;

  border: 1px solid var(--line);

  border-radius: calc(var(--radius) + 10px);

  background:

    radial-gradient(circle at top right, rgba(140, 123, 255, 0.11), transparent 42%),

    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));

  box-shadow: var(--shadow);

}

.article-content p {

  color: var(--soft);

  font-size: 18px;

  line-height: 1.9;

  margin: 0 0 26px;

}

.article-content h2 {

  margin: 54px 0 18px;

  font-size: clamp(28px, 4vw, 42px);

  line-height: 1;

  letter-spacing: -0.06em;

}

.article-content blockquote {

  margin: 52px 0 0;

  padding: 28px;

  border-left: 3px solid var(--accent);

  border-radius: 22px;

  color: var(--text);

  background: rgba(140, 123, 255, 0.12);

  font-size: 22px;

  line-height: 1.6;

  font-weight: 800;

}

.article-content ul {

  list-style: none;

  padding: 0;

  margin: 22px 0 34px;

  display: grid;

  gap: 14px;

}

.article-content li {

  position: relative;

  padding: 16px 18px 16px 52px;

  border: 1px solid var(--line);

  border-radius: 18px;

  color: var(--soft);

  background: rgba(255, 255, 255, 0.045);

  font-size: 17px;

  line-height: 1.65;

}

.article-content li::before {

  content: "✦";

  position: absolute;

  left: 18px;

  top: 15px;

  color: #b7abff;

  font-size: 16px;

}

.article-footer {

  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;

}

/* RTL article polish */

html[dir="rtl"] .insights-hero h1,

html[dir="rtl"] .article-header h1 {

  letter-spacing: -0.035em;

  line-height: 1.18;

}

html[dir="rtl"] .article-content {

  margin-right: 0;

  margin-left: auto;

}

html[dir="rtl"] .article-content li {

  padding: 16px 52px 16px 18px;

}

html[dir="rtl"] .article-content li::before {

  left: auto;

  right: 18px;

}

html[dir="rtl"] .article-content blockquote {

  border-left: 0;

  border-right: 3px solid var(--accent);

}

html[dir="rtl"] .back-link:hover {

  transform: translateX(4px);

}

@media (max-width: 1000px) {

  .insights-grid {

    grid-template-columns: 1fr;

  }

  .insights-hero {

    min-height: auto;

    padding-top: 90px;

  }

}

@media (max-width: 900px) {

  .article-page {

    padding-top: 60px;

  }

  .article-content {

    max-width: 100%;

    padding: 28px;

  }

  .article-content p {

    font-size: 16px;

  }

  .article-content li {

    font-size: 15px;

  }

}