/* ======================= */
/*      Blog Post Styles    */
/* ======================= */
.back-to-blog {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-to-blog:hover {
  color: var(--primary);
}

.article-card {
  background: var(--secondary);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.article-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border);
}

.article-category {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
}

.article-meta-separator {
  width: 4px;
  height: 4px;
  background: var(--text-light);
  border-radius: 50%;
}

.article-body {
  padding: 2rem;
}

.article-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-weight: 500;
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.article-body h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--primary);
  font-weight: 700;
  position: relative;
}

.article-body h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.article-body p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--text);
}

.article-body ul {
  margin: 1.5rem 0 1.5rem 1.5rem;
  padding-left: 0;
  list-style: none;
}

.article-body ul li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: bold;
}

.article-body blockquote {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  padding: 1.2rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text);
  border-radius: 8px;
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.article-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.article-share-label {
  font-weight: 600;
  color: var(--text);
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-weight: 600;
}

.share-twitter { background: #1DA1F2; color: white; }
.share-facebook { background: #4267B2; color: white; }
.share-linkedin { background: #0077B5; color: white; }
.share-whatsapp { background: #25D366; color: white; }

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .article-share {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .share-buttons {
    width: 100%;
    justify-content: space-between;
  }
  
  .share-btn {
    flex: 1;
    max-width: 60px;
  }
}