@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --art-font-display: 'Playfair Display', Georgia, serif;
  --art-font-body: 'Source Sans 3', -apple-system, sans-serif;
  --art-primary: var(--primary-color, #dc2626);
  --art-dark: var(--body-color, #1a1a2e);
  --art-gray: var(--muted-color, #64748b);
  --art-light: var(--body-bg, #f8fafc);
  --art-card: var(--card-bg, #ffffff);
  --art-border: var(--card-border, #e2e8f0);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--art-font-body);
  background: var(--art-light);
  color: var(--art-dark);
  margin: 0;
  line-height: 1.6;
}

.article-main {
  min-height: 100vh;
  padding-bottom: 40px;
}

/* Article Header */
.article-header {
  text-align: center;
  padding: 48px 0 32px;
  background: var(--art-card);
  border-bottom: 1px solid var(--art-border);
}

.article-header .container {
  max-width: 1200px;
}

.article-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.category-follow-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-category {
  display: inline-block;
  background: var(--art-primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.article-category:hover {
  opacity: 0.9;
  color: #fff;
}

/* Save Button */
.save-article-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--art-light);
  border: 2px solid var(--art-border);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--art-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.save-article-btn:hover {
  border-color: var(--art-primary);
  color: var(--art-primary);
}

.save-article-btn.saved {
  background: var(--art-primary);
  border-color: var(--art-primary);
  color: #fff;
}

.save-article-btn.saved:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

.save-article-btn i {
  font-size: 16px;
}

/* Edit Button */
.edit-article-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.edit-article-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.edit-article-btn i {
  font-size: 14px;
}

/* Follow Buttons */
.follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 10px;
  background: transparent;
  border: 1.5px solid var(--art-border);
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--art-gray);
  cursor: pointer;
  transition: all 0.2s ease;
}

.follow-btn:hover {
  border-color: var(--art-primary);
  color: var(--art-primary);
  background: rgba(220, 38, 38, 0.05);
}

.follow-btn.following {
  background: var(--art-primary);
  border-color: var(--art-primary);
  color: #fff;
}

.follow-btn.following:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.follow-category-btn {
  padding: 6px 12px;
  font-size: 12px;
}

.follow-tag-btn {
  padding: 2px 8px;
  min-width: 24px;
  min-height: 24px;
}

.follow-tag-btn i {
  font-size: 12px;
}

.article-title {
  font-family: var(--art-font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--art-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-excerpt {
  font-size: 20px;
  color: var(--art-gray);
  margin: 0 0 24px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--art-gray);
  flex-wrap: wrap;
}

.author-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.author-link:hover .author-name {
  color: var(--art-primary);
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--art-primary) 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--art-dark);
}

.meta-divider {
  opacity: 0.3;
}

/* Featured Image */
.article-featured-image {
  background: var(--art-card);
  padding-bottom: 32px;
}

.article-featured-image .container {
  max-width: 1000px;
}

.article-featured-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Article Body */
.article-body {
  padding: 48px 0;
}

/* Main Layout with Right Sidebar */
.article-main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.article-left-section {
  min-width: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  max-width: 800px;
}

/* Share Sidebar */
.share-sidebar {
  position: relative;
}

.share-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.share-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--art-gray);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: #fff;
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-linkedin { background: #0a66c2; }
.share-whatsapp { background: #25d366; }
.share-copy { background: var(--art-gray); }

/* Article Content */
.article-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--art-dark);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: var(--art-font-display);
  margin: 32px 0 16px;
  line-height: 1.3;
}

.article-content h2 { font-size: 28px; }
.article-content h3 { font-size: 24px; }
.article-content h4 { font-size: 20px; }

.article-content p {
  margin: 0 0 24px;
}

.article-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--art-light);
  border-left: 4px solid var(--art-primary);
  border-radius: 0 8px 8px 0;
  font-size: 20px;
  font-style: italic;
  color: var(--art-dark);
}

.article-content a {
  color: var(--art-primary);
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

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

/* Video Embed */
.article-video {
  margin: 32px 0;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.article-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Gallery */
.article-gallery {
  margin: 32px 0;
  padding: 24px;
  background: var(--art-card);
  border-radius: 12px;
  border: 1px solid var(--art-border);
}

.article-gallery h4 {
  font-family: var(--art-font-display);
  margin: 0 0 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  margin: 0;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Tags with Follow Buttons */
.article-tags {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--art-border);
}

.tags-label {
  font-weight: 600;
  color: var(--art-gray);
  padding-top: 4px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--art-light);
  border-radius: 999px;
  padding: 2px 4px 2px 2px;
  transition: all 0.2s;
}

.tag-item:hover {
  background: var(--art-card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tag-link {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--art-dark);
  text-decoration: none;
  transition: all 0.2s;
}

.tag-link:hover {
  color: var(--art-primary);
}

/* Reactions */
.reactions-section {
  max-width: 800px;
  margin: 48px 0;
  padding: 32px;
  background: var(--art-card);
  border-radius: 16px;
  border: 1px solid var(--art-border);
  text-align: center;
}

.reactions-title {
  font-family: var(--art-font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.reactions-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.reaction-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  background: var(--art-light);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.reaction-btn:hover {
  background: #fff;
  border-color: var(--art-border);
  transform: translateY(-2px);
}

.reaction-btn.active {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--art-primary);
}

.reaction-icon {
  font-size: 28px;
}

.reaction-count {
  font-weight: 700;
  font-size: 16px;
  color: var(--art-dark);
}

.reaction-label {
  font-size: 12px;
  color: var(--art-gray);
}

/* Author Bio */
.author-bio {
  max-width: 800px;
  margin: 48px 0;
  padding: 32px;
  background: var(--art-card);
  border-radius: 16px;
  border: 1px solid var(--art-border);
  display: flex;
  gap: 24px;
}

.author-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--art-primary) 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  flex-shrink: 0;
  overflow: hidden;
}

.author-bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-bio-content h4 {
  font-family: var(--art-font-display);
  font-size: 20px;
  margin: 0 0 8px;
}

.author-bio-content h4 a {
  color: var(--art-dark);
  text-decoration: none;
}

.author-bio-content h4 a:hover {
  color: var(--art-primary);
}

.author-bio-content p {
  color: var(--art-gray);
  margin: 0 0 12px;
}

.author-articles-link {
  color: var(--art-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.author-articles-link:hover {
  text-decoration: underline;
}

/* Share Bar Mobile */
.share-bar-mobile {
  display: none;
  max-width: 800px;
  margin: 32px 0;
  padding: 20px;
  background: var(--art-card);
  border-radius: 12px;
  border: 1px solid var(--art-border);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.share-bar-mobile span {
  font-weight: 600;
  color: var(--art-dark);
}

.share-buttons-mobile {
  display: flex;
  gap: 8px;
}

/* Comments Section */
.comments-section {
  max-width: 800px;
  margin: 48px 0;
}

.comments-title {
  font-family: var(--art-font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comments-title i {
  color: var(--art-primary);
}

.comment-form {
  background: var(--art-card);
  border: 1px solid var(--art-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.comment-form textarea {
  width: 100%;
  min-height: 100px;
  border: 1px solid var(--art-border);
  border-radius: 8px;
  padding: 12px;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  margin-bottom: 12px;
  background: var(--art-light);
  color: var(--art-dark);
}

.comment-form textarea:focus {
  outline: none;
  border-color: var(--art-primary);
}

.comment-login-prompt {
  background: var(--art-light);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 24px;
}

.comment-login-prompt a {
  color: var(--art-primary);
  font-weight: 600;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.no-comments {
  text-align: center;
  color: var(--art-gray);
  padding: 32px;
}

.comment {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--art-card);
  border: 1px solid var(--art-border);
  border-radius: 12px;
}

.comment-reply {
  margin-left: 48px;
  background: var(--art-light);
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.comment-author {
  font-weight: 600;
  color: var(--art-dark);
}

.comment-time {
  font-size: 13px;
  color: var(--art-gray);
}

.comment-content {
  font-size: 15px;
  line-height: 1.6;
  color: var(--art-dark);
}

.comment-actions {
  margin-top: 8px;
}

.reply-btn {
  background: none;
  border: none;
  color: var(--art-primary);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  font-weight: 500;
}

.reply-btn:hover {
  text-decoration: underline;
}

.reply-form-container {
  margin-top: 12px;
}

.reply-form textarea {
  min-height: 60px;
  font-size: 14px;
}

.reply-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* Right Sidebar */
.article-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--art-card);
  border: 1px solid var(--art-border);
  border-radius: 16px;
  padding: 24px;
}

.widget-title {
  font-family: var(--art-font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--art-dark);
}

.widget-title i {
  color: var(--art-primary);
}

/* Related Articles Sidebar */
.related-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-sidebar-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.related-sidebar-item:hover {
  transform: translateX(4px);
}

.related-sidebar-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.related-sidebar-image .related-placeholder {
  width: 100%;
  height: 100%;
  background: var(--art-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--art-gray);
}

.related-sidebar-content {
  flex: 1;
  min-width: 0;
}

.related-sidebar-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--art-primary);
  margin-bottom: 4px;
}

.related-sidebar-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
  color: var(--art-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-sidebar-content time {
  font-size: 12px;
  color: var(--art-gray);
}

/* Popular Articles Sidebar */
.popular-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popular-sidebar-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
}

.popular-sidebar-item:hover {
  background: var(--art-light);
}

.popular-rank {
  font-size: 24px;
  font-weight: 800;
  color: var(--art-border);
  line-height: 1;
  min-width: 32px;
  font-family: var(--art-font-display);
}

.popular-sidebar-item:nth-child(1) .popular-rank { color: #ef4444; }
.popular-sidebar-item:nth-child(2) .popular-rank { color: #f97316; }
.popular-sidebar-item:nth-child(3) .popular-rank { color: #eab308; }

.popular-sidebar-content {
  flex: 1;
  min-width: 0;
}

.popular-sidebar-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
  color: var(--art-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-sidebar-meta {
  font-size: 12px;
  color: var(--art-gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, var(--art-primary) 0%, #b91c1c 100%);
  text-align: center;
  color: #fff;
}

.newsletter-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-icon i {
  font-size: 24px;
}

.newsletter-widget h3 {
  font-family: var(--art-font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.newsletter-widget p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0 0 16px;
}

.btn-newsletter {
  width: 100%;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.newsletter-widget .btn-primary {
  background: #fff !important;
  color: var(--art-primary, #dc2626) !important;
  border: 2px solid #fff !important;
  font-weight: 600;
}

.newsletter-widget .btn-primary:hover {
  background: #f8fafc !important;
  color: var(--art-primary, #dc2626) !important;
  border-color: #f8fafc !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.newsletter-widget .btn-outline-primary {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.8) !important;
  font-weight: 600;
}

.newsletter-widget .btn-outline-primary:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Related Articles Bottom Section */
.related-section {
  background: var(--art-card);
  border-top: 1px solid var(--art-border);
  padding: 48px 0;
}

.related-title {
  font-family: var(--art-font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.related-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-image {
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.related-card:hover .related-image img {
  transform: scale(1.05);
}

.related-placeholder {
  width: 100%;
  height: 100%;
  background: var(--art-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--art-gray);
  font-size: 24px;
}

.related-category {
  display: inline-block;
  color: var(--art-primary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.related-body h4 {
  font-family: var(--art-font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
  color: var(--art-dark);
}

.related-body time {
  font-size: 13px;
  color: var(--art-gray);
}

/* Footer */
.site-footer {
  background: var(--art-dark);
  color: #fff;
  padding: 20px 0;
}

[data-theme="dark"] .site-footer {
  background: #0f0f1a;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .article-main-layout {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }
}

@media (max-width: 992px) {
  .article-title {
    font-size: 32px;
  }
  
  .article-main-layout {
    grid-template-columns: 1fr;
  }
  
  .article-sidebar {
    display: none;
  }
  
  .article-layout {
    grid-template-columns: 1fr;
  }
  
  .share-sidebar {
    display: none;
  }
  
  .share-bar-mobile {
    display: flex;
  }
  
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-header {
    padding: 32px 0 24px;
  }
  
  .article-header-top {
    flex-direction: column;
    gap: 12px;
  }
  
  .article-title {
    font-size: 26px;
  }
  
  .article-excerpt {
    font-size: 17px;
  }
  
  .article-content {
    font-size: 16px;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reactions-buttons {
    gap: 8px;
  }
  
  .reaction-btn {
    padding: 12px 16px;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .comment-reply {
    margin-left: 24px;
  }
  
  .tags-list {
    gap: 8px;
  }
  
  .tag-item {
    flex-direction: row;
  }
}

/* Mobile sidebar display */
@media (max-width: 992px) {
  .article-sidebar {
    display: block;
    margin-top: 32px;
  }
  
  .sidebar-sticky {
    position: relative;
    top: 0;
  }
  
  .related-widget {
    display: none; /* Hide on mobile as related articles are shown at bottom */
  }
}
