/* ===== Base Layout (scoped to .abz-blog) ===== */

.abz-blog {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #020617;
  color: #f9fafb;
  line-height: 1.7;
}

.abz-blog a {
  color: #60a5fa;
  text-decoration: none;
}

.abz-blog a:hover {
  text-decoration: underline;
}

/* ===== Main Layout ===== */

.blog-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.25rem;
}

.blog-article {
  background: radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.4),
      rgba(15, 23, 42, 0.98)
    );
  border-radius: 1.75rem;
  padding: 1.9rem 1.8rem 2.4rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.95);
}

/* Keep in case you ever want a blog-specific header again */
.blog-header {
  display: none;
}

/* ===== Article Header ===== */

.article-header h1 {
  font-size: 2rem;
  line-height: 1.22;
  margin: 0.35rem 0 0.7rem;
  color: #f9fafb;
}

.article-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5b4fc;
}

.article-meta {
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* ===== Sections ===== */

.article-section {
  margin-top: 1.7rem;
}

.article-section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
  color: #e5e7eb;
}

.article-section h3 {
  font-size: 1.02rem;
  margin: 1.05rem 0 0.3rem;
  color: #e5e7eb;
}

.blog_img{
    width: 50rem ;
    margin: auto !important;
    display: flex;
}

.article-section p {
  font-size: 0.96rem;
  color: #e5e7eb;
}

.article-section ul {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0.25rem;
}

.article-section li {
  font-size: 0.96rem;
  margin-bottom: 0.3rem;
  color: #e5e7eb;
}

.skills-callout {
  margin-top: 0.3rem;
  font-size: 0.86rem;
  color: #bfdbfe;
  font-weight: 500;
}

.article-conclusion {
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  padding-top: 1.4rem;
  margin-top: 1.9rem;
}

/* ===== Image Placeholders ===== */

.image-placeholder {
  margin: 1.8rem 0 0.5rem;
}

.image-placeholder-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.2rem;
  border: 2px dashed rgba(148, 163, 184, 0.7);
  background: repeating-linear-gradient(
      45deg,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.96) 10px,
      rgba(30, 64, 175, 0.25) 10px,
      rgba(30, 64, 175, 0.25) 20px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.75rem;
}

.image-placeholder-box::before {
  content: "Image placeholder – replace with exported AI image";
  opacity: 0.85;
}

.image-placeholder figcaption {
  font-size: 0.8rem;
  color: #cbd5f5;
  margin-top: 0.45rem;
}

/* ===== Blog Footer (under article, above global footer) ===== */

.blog-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 2.4rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.86rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin-top: -1.4rem;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .blog-main {
    padding: 1.9rem 1rem 2.7rem;
  }

  .blog-article {
    padding: 1.5rem 1.2rem 2rem;
    border-radius: 1.4rem;
  }

  .article-header h1 {
    font-size: 1.6rem;
  }
}
