/* ==========================================================================
   fotocraciun.ro - Blog & Article Styling
   Optimizat pentru Lectură Fluidă, SEO Semantic și Citate AI
   ========================================================================== */

.blog-hero {
  padding: 80px 0 50px;
  background: linear-gradient(180deg, var(--pine-900) 0%, #153c2c 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
}

.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold-400);
  color: var(--gold-200);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.25;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.92rem;
  color: #cfdbd5;
  flex-wrap: wrap;
}

.article-container {
  max-width: 820px;
  margin: -40px auto 90px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  z-index: 10;
}

.article-featured-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.article-toc {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 24px 30px;
  margin-bottom: 40px;
}

.article-toc h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--pine-900);
  margin-bottom: 12px;
}

.article-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-toc a {
  color: var(--pine-800);
  font-weight: 600;
  font-size: 0.95rem;
}

.article-toc a:hover {
  color: var(--gold-600);
  padding-left: 4px;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #2c3e35;
}

.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--pine-900);
  margin: 46px 0 18px;
  line-height: 1.3;
}

.article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--pine-800);
  margin: 32px 0 14px;
}

.article-content p {
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 24px;
}

.article-content ul, 
.article-content ol {
  margin: 0 0 26px 26px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content strong {
  color: var(--pine-900);
}

.article-callout {
  background: var(--gold-50);
  border-left: 4px solid var(--gold-500);
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  margin: 34px 0;
  font-size: 1.05rem;
  color: var(--pine-900);
}

.article-callout strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--crimson-600);
  margin-bottom: 6px;
}

.table-responsive {
  overflow-x: auto;
  margin: 30px 0;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.article-table th {
  background: var(--pine-800);
  color: var(--gold-100);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
}

.article-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(22, 35, 28, 0.08);
}

.article-table tr:nth-child(even) {
  background: var(--bg-cream);
}

.author-bio-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 28px;
  margin-top: 50px;
}

.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pine-900);
  flex-shrink: 0;
}

.author-bio-text h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--pine-900);
  margin-bottom: 6px;
}

.author-bio-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.article-share-cta {
  margin-top: 40px;
  padding: 34px;
  background: linear-gradient(135deg, var(--pine-900) 0%, #153c2c 100%);
  border-radius: var(--radius-md);
  color: #fff;
  text-align: center;
}

.article-share-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-100);
  margin-bottom: 10px;
}

.article-share-cta p {
  color: #d1ded7;
  max-width: 540px;
  margin: 0 auto 24px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .article-container {
    padding: 26px 20px;
    margin-top: -20px;
  }

  .author-bio-card {
    flex-direction: column;
    text-align: center;
  }
}
