/* BLOG ARTICLE STYLES */

/* ARTICLE HERO */
.article-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.article-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.85) 60%, var(--bg-primary) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.article-category {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--accent-gold);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.article-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.article-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-secondary);
}

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

.article-meta span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.article-meta span:first-child::before {
  display: none;
}

/* ARTICLE BODY */
.article-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  padding: 80px 24px 120px;
  max-width: var(--container);
  margin: 0 auto;
}

.article-content {
  max-width: 720px;
}

.article-lead {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--glass-border);
}

.article-lead strong {
  color: var(--accent-gold);
}

.article-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.article-content p strong {
  color: var(--text-primary);
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 56px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--glass-border);
}

.article-content h2:first-of-type {
  margin-top: 0;
}

.article-content blockquote {
  margin: 40px 0;
  padding: 32px 40px;
  background: var(--bg-card);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 16px 16px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
}

.article-content blockquote strong {
  color: var(--accent-gold);
}

/* INLINE IMAGES */
.article-inline-image {
  margin: 48px -40px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.article-inline-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.image-caption {
  display: block;
  padding: 16px 24px;
  background: var(--bg-secondary);
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}

/* CTA BOX */
.article-cta-box {
  margin: 56px 0;
  padding: 48px;
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  text-align: center;
}

.article-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.article-cta-box p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.article-cta-box p strong {
  color: var(--accent-gold);
}

/* AUTHOR BOX */
.article-author-box {
  margin-top: 64px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.author-avatar-large {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  flex-shrink: 0;
}

.article-author-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.article-author-box p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.article-author-box p a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
}

.article-author-box p a:hover {
  text-decoration: underline;
}

/* SIDEBAR */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-cta {
  padding: 32px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.02) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  text-align: center;
}

.sidebar-cta h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.sidebar-cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sidebar-related h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.related-article {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
  text-decoration: none;
  transition: var(--transition-fast);
}

.related-article:hover {
  opacity: 0.8;
}

.related-article:last-child {
  border-bottom: none;
}

.related-thumb {
  width: 80px;
  height: 60px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.related-article span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.related-article h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4px;
  line-height: 1.4;
}

/* RESPONSIVE BLOG */
@media (max-width: 1024px) {
  .article-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-sidebar {
    position: static;
    flex-direction: row;
    gap: 24px;
  }

  .sidebar-cta,
  .sidebar-related {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .article-hero {
    min-height: 50vh;
    padding-bottom: 48px;
  }

  .article-hero-content h1 {
    font-size: 28px;
  }

  .article-subtitle {
    font-size: 16px;
  }

  .article-body {
    padding: 48px 16px 80px;
  }

  .article-content h2 {
    font-size: 22px;
  }

  .article-inline-image {
    margin: 32px -16px;
    border-radius: 0;
  }

  .article-inline-image img {
    height: 250px;
  }

  .article-cta-box {
    padding: 32px 24px;
  }

  .article-author-box {
    flex-direction: column;
    text-align: center;
  }

  .article-sidebar {
    flex-direction: column;
  }

  blockquote {
    padding: 24px;
  }
}
