/* --- Article Styles --- */
.article-header {
  padding-top: 140px;
  padding-bottom: 2rem;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  padding-top: 4px;
  color: #cbd5e1;
}

.article-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--dark-color);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.meta-item i {
  color: var(--primary-color);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.featured-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-card);
}

/* Rich Text Content */
.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-weight: 700;
  color: var(--dark-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  letter-spacing: -0.5px;
}

.article-content h3 {
  font-weight: 700;
  color: var(--dark-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 4px solid var(--primary-color);
  background: #f8fafc;
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark-color);
  margin: 2rem 0;
}

.highlight-box {
  background: rgba(79, 70, 229, 0.05);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

/* Share Buttons */
.share-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.share-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-color);
  margin-right: 0.5rem;
  transition: all 0.2s;
  text-decoration: none;
}

.share-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.share-btn.whatsapp:hover {
  background: #25d366;
}

.share-btn.twitter:hover {
  background: #1da1f2;
}

.share-btn.linkedin:hover {
  background: #0077b5;
}

/* --- Sidebar & Widgets (Aynı) --- */
.sidebar-widget {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.widget-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  margin-bottom: 0.5rem;
}

.cat-list a {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.cat-list a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateX(5px);
}

.cat-count {
  background: #f1f5f9;
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.widget-cta {
  background: var(--dark-color);
  color: white;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.btn-widget {
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.2s;
}

.btn-widget:hover {
  transform: scale(1.02);
  color: white;
}

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Related Posts */
.related-card .card-img-wrapper {
  height: 200px;
}

.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1rem;
  line-height: 1.4;
}

.related-title a {
  text-decoration: none;
  color: var(--dark-color);
  transition: color 0.2s;
}

.related-title a:hover {
  color: var(--primary-color);
}

/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .article-title {
    font-size: 2rem;
  }

  .article-meta {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
