/* Article Page Styles - Minimal White Design */

/* Main Header Section */
.post-header-minimal {
  padding: 140px 20px 40px; /* Large top padding to clear the fixed header */
  background: var(--white);
  text-align: center;
}

.post-title-centered {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--primary-dark);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.post-meta-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--neutral-600);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.meta-divider {
  color: var(--neutral-400);
  opacity: 0.5;
}

/* Social Icons at the Top */
.post-social-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.post-social-top a {
  color: var(--neutral-600);
  transition: all 0.3s ease;
  display: inline-flex;
}

.post-social-top a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.post-social-top svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor;
}

/* Featured Image Centered */
.post-hero-centered {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.post-hero-centered img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Article Body Adjustments */
.article-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.article-body .entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--neutral-900);
}

/* Slider center fix */
.n2-section-smartslider,
.n2-ss-slider-main-container {
    max-width: 960px !important;
    width: calc(100% - 40px) !important;
    margin: 40px auto !important;
    left: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-md) !important;
}

/* Related Articles & Footer Navigation */
.article-nav {
  max-width: 960px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.back-to-news {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  padding: 12px 24px;
  background: var(--neutral-100);
  border-radius: 100px;
}

.back-to-news:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(-5px);
}

.back-to-news svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor;
  flex-shrink: 0;
}



@media (max-width: 768px) {
  .post-header-minimal {
    padding-top: 100px;
  }
}
