.blog-article-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f3fbff 0%, #d7ebf9 48%, #eef7ff 100%);
}

.blog-article-main {
  padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.article-shell {
  max-width: 920px;
  margin: 0 auto;
}

.article-back-nav {
  margin-bottom: 1rem;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #4a5568;
  transition: color 0.2s ease, transform 0.2s ease;
}

.article-back-link:hover {
  color: #1671b0;
  transform: translateX(-4px);
}

.article-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(23, 95, 145, 0.14);
  padding: clamp(1.5rem, 4vw, 3rem);
  animation: articleFadeIn 0.5s ease-out both;
}

.article-kicker {
  margin: 0 0 0.75rem;
  color: #4f7ea2;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.article-title {
  margin: 0 0 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1.2;
  color: #1671b0;
}

.article-content p {
  margin: 0 0 1.1rem;
  color: #2d3748;
  font-family: 'Georgia', serif;
  font-size: 1.08rem;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .article-content p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@keyframes articleFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
