/* ─────────────────────────────────────────────────────────────
   Euroship Fulfillment — Blog Styles
───────────────────────────────────────────────────────────── */

/* ── Blog Card ── */
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(11, 37, 69, 0.1);
  transform: translateY(-3px);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

/* ── Blog Post Article Styles ── */
.blog-article {
  max-width: 780px;
  margin: 0 auto;
}

.blog-article h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-article .blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.blog-article .blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.blog-article .blog-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.blog-article .blog-content p {
  color: #4A5568;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.blog-article .blog-content ul,
.blog-article .blog-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-article .blog-content li {
  color: #4A5568;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.blog-article .blog-content ul li {
  list-style-type: disc;
}

.blog-article .blog-content ol li {
  list-style-type: decimal;
}

.blog-article .blog-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--orange-light);
  border-radius: 0 8px 8px 0;
}

.blog-article .blog-content blockquote p {
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0;
}

.blog-article .blog-content strong {
  color: var(--navy);
  font-weight: 600;
}

.blog-article .blog-content a {
  color: var(--orange);
  text-decoration: underline;
  transition: color 0.2s;
}

.blog-article .blog-content a:hover {
  color: var(--orange-dark);
}

.blog-article .blog-content img {
  width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
}

/* ── Blog CTA Box ── */
.blog-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 14px;
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.blog-cta h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .blog-article h1 {
    font-size: 1.75rem;
  }

  .blog-article .blog-content h2 {
    font-size: 1.3rem;
  }
}
