/* ==========================================================================
   Blog & Packaging Insights Styles
   ========================================================================== */

.blog-hero {
  background: var(--primary);
  color: #ffffff;
  padding: 60px 0;
  margin-bottom: 50px;
}

.blog-hero h1 {
  color: #ffffff;
  margin-bottom: 12px;
}

.blog-hero p {
  color: #94a3b8;
  font-size: 1.1rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
}

@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Single Post Entry */
.post-entry {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 576px) {
  .post-entry {
    padding: 24px 16px;
  }
}

.post-header {
  margin-bottom: 30px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-featured-image {
  margin-bottom: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* Post Content Typography */
.post-content {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #000000;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-subtle);
}

.post-content h3 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 12px;
}

.post-content p {
  color: #000000;
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }

.post-content li {
  margin-bottom: 8px;
}

.post-content blockquote {
  border-left: 4px solid var(--accent);
  background: #fbf5ff;
  padding: 18px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  margin: 30px 0;
  color: var(--primary);
}

/* Sidebar Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.sidebar-widget h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.sidebar-cta-box h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 12px;
  border: none;
}

.sidebar-cta-box p {
  color: #f1f5f9;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
