/* =============================================
   SYNIA — Blog Article Shared Styles
   Used by all individual blog article pages.
   Requires: style-main.css loaded before this file.
   ============================================= */

/* Article Container */
.article-container {
  max-width: 800px;
  margin: 120px auto 4rem;
  padding: 0 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mint-dark);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: gap 0.3s ease;
}

.back-link:hover {
  gap: 1rem;
}

/* Article Header */
.article-header {
  margin-bottom: 3rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-category {
  background: var(--mint-dark);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

.article-date {
  color: var(--gray-500);
  font-size: 0.95rem;
}

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

.article-intro {
  font-size: 1.25rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Featured Image */
.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  background-color: #e0e0e0;
}

/* Article Content */
.article-content {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.article-content h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  font-weight: 700;
}

.article-content h3 {
  font-size: 1.35rem;
  color: var(--navy-light);
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.article-content h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.5rem 0 0.75rem;
  font-weight: 600;
}

.article-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

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

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(111, 212, 199, 0.1) 0%, rgba(111, 212, 199, 0.05) 100%);
  border-left: 4px solid var(--mint-dark);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.highlight-box p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--navy-light);
}

/* FAQ Section */
.faq-section {
  margin-top: 3rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.faq-section h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.faq-section h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.faq-section p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--gray-500);
}

/* CTA Section */
.article-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.article-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--mint-dark);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(111, 212, 199, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(111, 212, 199, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .article-container {
    margin: 100px auto 2rem;
    padding: 0 1rem;
  }

  .article-header h1 {
    font-size: 1.75rem;
  }

  .article-intro {
    font-size: 1.1rem;
  }

  .featured-image {
    height: 250px;
  }

  .article-content {
    padding: 2rem 1.5rem;
  }

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

  .article-cta {
    padding: 2rem 1.5rem;
  }
}
