/* article.css — shared styles for all Insights article pages */
/* Global shared styles live in assets/css/veloryn.css */

/* Article page body */
.article-page {
  background-color: #0A1224;
}

/* Back link */
.article-back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #AEB6D3;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  margin-bottom: 48px;
  width: fit-content;
}

.article-back-link:hover {
  color: #F5F7FF;
}

.article-back-link .article-back-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}

.article-back-link:hover .article-back-arrow {
  transform: translateX(-4px);
}

/* Article header */
.article-header {
  text-align: center;
  margin-bottom: 56px;
}

.article-category-tag {
  display: inline-block;
  color: #1E5FFF;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 95, 255, 0.25);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, text-decoration 0.2s ease;
}

.article-category-tag:hover {
  color: #2EE6D6;
  border-color: transparent;
  text-decoration: underline dashed;
  text-decoration-color: #2EE6D6;
  text-underline-offset: 4px;
}

.article-title {
  font-family: 'Sora', sans-serif;
  color: #F5F7FF;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #AEB6D3;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.article-meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #1E5FFF;
  display: inline-block;
  flex-shrink: 0;
}

/* Hero image */
.article-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 15px solid #26304A;
  display: block;
  margin-bottom: 64px;
  background-color: #161e2e;
}

/* Article body prose */
.article-body {
  color: #AEB6D3;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 28px;
}

.article-body strong {
  color: #F5F7FF;
}

.article-body h2 {
  font-family: 'Sora', sans-serif;
  color: #F5F7FF;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 56px;
  margin-bottom: 20px;
}

.article-body h3 {
  font-family: 'Sora', sans-serif;
  color: #F5F7FF;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 16px;
}

/* Blockquote */
.article-blockquote {
  margin: 48px 0;
  padding: 24px 32px;
  border-left: 3px solid #1E5FFF;
  background-color: rgba(30, 95, 255, 0.06);
  border-radius: 0 8px 8px 0;
}

.article-blockquote p {
  font-family: 'Sora', sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  color: #F5F7FF;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 0;
}

/* Comparison cards */
.article-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}

.article-card {
  padding: 28px;
  border-radius: 8px;
  background-color: #161e2e;
  border: 1px solid #26304A;
  transition: border-color 0.2s ease;
}

.article-card:hover {
  border-color: rgba(30, 95, 255, 0.4);
}

.article-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #F5F7FF;
  margin-top: 0;
  margin-bottom: 12px;
}

.article-card p {
  font-size: 14px;
  color: #AEB6D3;
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 639px) {
  .article-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Article footer — tags and share */
.article-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #26304A;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.article-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  background-color: #161e2e;
  color: #AEB6D3;
  border: 1px solid #26304A;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.article-tag:hover {
  border-color: #1E5FFF;
  color: #F5F7FF;
}

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

.article-share-label {
  color: #AEB6D3;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.article-share-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #161e2e;
  border: 1px solid #26304A;
  color: #AEB6D3;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.article-share-btn:hover {
  background-color: #1E5FFF;
  color: #F5F7FF;
  border-color: #1E5FFF;
}

/* CTA section */
.article-cta-section {
  background-color: #0D1627;
  border-top: 1px solid rgba(57, 65, 86, 0.2);
  padding: 96px 0;
  text-align: center;
}

.article-cta-eyebrow {
  color: #AEB6D3;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.article-cta-heading {
  font-family: 'Sora', sans-serif;
  color: #F5F7FF;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.article-cta-body {
  color: #AEB6D3;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.article-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  min-width: 260px;
  padding: 0 32px;
  background-color: #1E5FFF;
  color: #F5F7FF;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(30, 95, 255, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.article-cta-btn:hover {
  transform: scale(1.03);
  background-color: #3B7BFF;
}
