/* article-shell.css — wallprintgear.com
 * Article page base layout. Generated by article-assets-builder,
 * inherits site brand tokens (brand #F97316). */

.article-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  font-family: 'Inter','Roboto',system-ui,sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #1F2937;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 1.5rem 0;
}

/* ---- Hero ---- */
.blog-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0B1220 0%, #1E293B 100%);
  background-size: cover;
  background-position: center;
  padding: 5.5rem 1.5rem 3.5rem;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.80) 100%);
  z-index: 0;
}

.blog-hero > * {
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  font-family: 'Archivo','Inter Tight',system-ui,sans-serif;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 860px;
  margin: 0 auto 1rem;
}

/* ---- Meta ---- */
.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0 0.75rem 0.25rem 0;
}

.blog-meta-item i {
  color: #F97316;
}

.blog-category-badge {
  display: inline-block;
  background: #F97316;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 260px;
    padding: 4.5rem 1rem 2.5rem;
  }
  .article-page {
    padding: 1.75rem 1rem 3rem;
  }
}
