:root {
  --blog-article-card: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.95));
  --blog-article-accent: rgba(78, 44, 229, 0.3);
}

#blog-details .article {
  background: var(--blog-article-card);
  border-radius: 1.75rem;
  padding: 2.75rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#blog-details .article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--blog-article-accent), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

#blog-details .article > * {
  position: relative;
  z-index: 1;
}

#blog-details .article h1 {
  font-size: clamp(2.25rem, 4vw, 2.85rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  color: #0f172a;
}

#blog-details .article h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1b4c;
  padding-left: 1rem;
  border-left: 4px solid rgba(78, 44, 229, 0.35);
}

#blog-details .article h3 {
  margin-top: 1.8rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #4e2ce5;
}

#blog-details .article p {
  margin-bottom: 1rem;
  color: #2a2a2a;
  line-height: 1.75;
  font-size: 1rem;
}

#blog-details .article ul {
  padding-left: 1.6rem;
  margin: 1rem 0;
  display: grid;
  gap: 0.35rem;
}

#blog-details .article ul li {
  position: relative;
  padding-left: 0.75rem;
  color: #333;
}

#blog-details .article ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #4e2ce5;
  font-size: 1.3rem;
  line-height: 1;
}

#blog-details .article strong {
  color: #0f172a;
}

#blog-details .article a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

#blog-details .article a:hover {
  text-decoration: underline;
  color: #0f172a;
}

@media (max-width: 992px) {
  #blog-details .article {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  #blog-details .article {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

@media (max-width: 576px) {
  #blog-details .article h2 {
    padding-left: 0.75rem;
  }
}

@media (max-width: 576px) {
  #blog-details .article h3 {
    font-size: 1.2rem;
  }
}

