/* =============================================================================
   BLOG.CSS
   Blog-specific styles for exactatranslation.com/blog/
   Load after styles.css on all blog pages.
   Do not put these in styles.css — keeps blog styles isolated.
============================================================================= */

/* -----------------------------------------------------------------------------
   BREADCRUMB
----------------------------------------------------------------------------- */
.blog-breadcrumb {
  background-color: #f1f5f9;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--light);
}

.blog-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

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

.blog-breadcrumb span {
  color: var(--muted);
}

/* -----------------------------------------------------------------------------
   ARTICLE HERO
----------------------------------------------------------------------------- */
.blog-hero {
  background-color: var(--navy);
  color: #ffffff;
  padding: 52px 24px 48px;
}

.blog-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: 2rem;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 14px;
  color: #a8c4e0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .blog-hero h1 { font-size: 1.5rem; }
}

/* -----------------------------------------------------------------------------
   ARTICLE BODY
   Max width 720px keeps lines readable on desktop.
   Full width on mobile.
----------------------------------------------------------------------------- */
.blog-article {
  padding: 48px 0 64px;
}

.blog-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-container h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light);
}

.blog-container h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 10px;
}

.blog-container p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 18px;
  text-align: left;
}

.blog-container ul,
.blog-container ol {
  padding-left: 24px;
  margin-bottom: 18px;
  text-align: left;
  list-style-position: outside;
}

.blog-container li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 6px;
}

.blog-container strong {
  color: var(--navy);
}

/* -----------------------------------------------------------------------------
   QUICK ANSWER BOX
   High visibility block — ChatGPT and Google extract this for snippets.
   Keep copy inside this box concise, factual, and specific.
----------------------------------------------------------------------------- */
.blog-answer-box {
  background-color: #f0f5fb;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 0 0 32px 0;
}

.blog-answer-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
}

/* -----------------------------------------------------------------------------
   INLINE CTA
   Mid-article conversion prompt.
   Styled differently from the answer box to stand out as an action item.
----------------------------------------------------------------------------- */
.blog-cta-inline {
  background-color: var(--navy);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 40px 0;
  text-align: center;
}

.blog-cta-inline p {
  color: #cbd5e1;
  font-size: 15px;
  margin-bottom: 16px;
}

.blog-cta-inline .btn {
  background-color: var(--accent);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  font-size: 15px;
}

.blog-cta-inline .btn:hover {
  background-color: #1d4ed8;
}

/* -----------------------------------------------------------------------------
   RELATED ARTICLES
----------------------------------------------------------------------------- */
.blog-related {
  border-top: 1px solid var(--light);
  padding-top: 28px;
  margin-top: 40px;
}

.blog-related h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-bottom: 14px;
}

.blog-related ul {
  list-style: none;
  padding: 0;
}

.blog-related li {
  margin-bottom: 10px;
}

.blog-related a {
  color: var(--accent);
  font-size: 15px;
  text-decoration: none;
}

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

/* -----------------------------------------------------------------------------
   FAQ — reuses existing .faq styles from styles.css
   These overrides adjust spacing for blog context only.
----------------------------------------------------------------------------- */
.blog-container .faq {
  margin-top: 8px;
  max-width: 100%;
}

.blog-container .faq-question {
  font-size: 16px;
}

/* -----------------------------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .blog-cta-inline { padding: 22px 18px; }
  .blog-answer-box { padding: 16px 18px; }
  .blog-container h2 { font-size: 1.2rem; }
}
