/* ===================================
   BLOG SPECIFIC STYLES
=================================== */

/* Blog Hero Section */
.blog-hero {
  background: #0B0B0F;
  background-image: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
  padding: 160px 0 80px 0;
  text-align: center;
}

.blog-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-hero p {
  font-size: 1.25rem;
  color: #9CA3AF;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog Container */
.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Category Filter Tabs */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.category-tab {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  color: #9CA3AF;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.category-tab:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: #A78BFA;
}

.category-tab.active {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
  border-color: #8B5CF6;
  color: #FFFFFF;
}

/* Featured Post */
.featured-post {
  margin-bottom: 4rem;
}

.featured-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  text-decoration: none;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
  border-color: rgba(139, 92, 246, 0.3);
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  color: #FFFFFF;
  margin-bottom: 1rem;
  width: fit-content;
}

.featured-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-content p {
  font-size: 1.125rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #6B7280;
  font-size: 0.875rem;
}

.featured-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.pagination-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #E5E7EB;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.pagination-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
  border-color: rgba(139, 92, 246, 0.3);
  color: #A78BFA;
  transform: translateY(-2px);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-number {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #9CA3AF;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.pagination-number:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
  border-color: rgba(139, 92, 246, 0.3);
  color: #A78BFA;
  transform: translateY(-2px);
}

.pagination-number.active {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
  border-color: #8B5CF6;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Blog Card */
.blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
  border-color: rgba(139, 92, 246, 0.3);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  width: fit-content;
}

/* Category Colors */
.category-tiktok {
  background: rgba(255, 0, 80, 0.15);
  color: #FF0050;
  border: 1px solid rgba(255, 0, 80, 0.3);
}

.category-youtube {
  background: rgba(255, 0, 0, 0.15);
  color: #FF0000;
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.category-ai-tools {
  background: rgba(139, 92, 246, 0.15);
  color: #8B5CF6;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.category-editing {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.category-growth {
  background: rgba(59, 130, 246, 0.15);
  color: #3B82F6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.category-insights {
  background: rgba(236, 72, 153, 0.15);
  color: #EC4899;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.blog-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 1rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #6B7280;
  font-size: 0.875rem;
  margin-top: auto;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-card-read-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* CTA Box */
.blog-cta {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}

.blog-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.blog-cta p {
  font-size: 1.125rem;
  color: #9CA3AF;
  margin-bottom: 2rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #6B7280;
}

.empty-state h3 {
  font-size: 1.5rem;
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #8B5CF6;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  /* Reduce card image height on tablets */
  .blog-card-image {
    height: 180px;
  }

  .blog-card-content {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1.375rem;
  }

  .blog-card-excerpt {
    font-size: 0.9375rem;
    -webkit-line-clamp: 2;
  }

  /* Featured post responsive on tablets */
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }

  .featured-image {
    min-height: 300px;
  }

  .featured-content {
    padding: 2rem;
  }

  .featured-content h2 {
    font-size: 2rem;
  }

  .featured-content p {
    font-size: 1rem;
  }

  .featured-badge {
    font-size: 0.6875rem;
    padding: 0.4rem 0.875rem;
  }

  /* Share buttons responsive on tablets */
  .article-share {
    padding: 1.125rem 1.25rem;
  }

  .share-label {
    font-size: 0.875rem;
  }

  .share-btn {
    width: 2.375rem;
    height: 2.375rem;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 140px 0 60px 0;
  }

  .blog-hero h1 {
    font-size: 2.5rem;
  }

  .blog-hero p {
    font-size: 1rem;
  }

  .blog-container {
    padding: 60px 24px;
  }

  .category-filter {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .category-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  /* Featured post more compact on mobile */
  .featured-post {
    margin-bottom: 2rem;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 200px;
    max-height: 200px;
  }

  .featured-content {
    padding: 1.5rem;
  }

  .featured-badge {
    font-size: 0.625rem;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .featured-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .featured-content p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .featured-meta {
    font-size: 0.8125rem;
    gap: 0.75rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Reduce card image height on mobile */
  .blog-card-image {
    height: 160px;
  }

  .blog-card-content {
    padding: 1rem;
  }

  .blog-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .blog-card-excerpt {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    -webkit-line-clamp: 2;
  }

  .blog-card-category {
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    margin-bottom: 0.75rem;
  }

  .blog-card-meta {
    font-size: 0.8125rem;
  }

  /* Pagination responsive */
  .pagination {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .pagination-btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .pagination-number {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }

  .blog-cta {
    padding: 2rem;
  }

  .blog-cta h3 {
    font-size: 1.5rem;
  }
}

/* ===================================
   ARTICLE PAGE STYLES
=================================== */

/* Article Hero Section */
.article-hero {
  background: #0B0B0F;
  background-image: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
  padding: 180px 0 80px 0;
  text-align: center;
}

.article-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-category-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.article-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.article-excerpt {
  font-size: 1.375rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #6B7280;
  font-size: 0.9375rem;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Article Container */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* Article Cover Image - Full Width */
.article-cover-image {
  width: 100%;
  margin-bottom: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.article-cover-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

/* Social Share Buttons */
.article-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.share-label {
  color: #9CA3AF;
  font-size: 0.9375rem;
  font-weight: 500;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
}

.share-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #9CA3AF;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.share-twitter:hover {
  background: rgba(29, 161, 242, 0.15);
  border-color: rgba(29, 161, 242, 0.3);
  color: #1DA1F2;
}

.share-facebook:hover {
  background: rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.3);
  color: #1877F2;
}

.share-linkedin:hover {
  background: rgba(10, 102, 194, 0.15);
  border-color: rgba(10, 102, 194, 0.3);
  color: #0A66C2;
}

.share-copy:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #8B5CF6;
}

/* Article Content */
.article-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  margin-bottom: 3rem;
}

.article-content p {
  font-size: 1.125rem;
  color: #E5E7EB;
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

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

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #E5E7EB;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
  color: #E5E7EB;
  list-style-position: outside;
}

.article-content ul {
  list-style-type: disc;
}

.article-content ol {
  list-style-type: decimal;
}

.article-content li {
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 0.875rem;
  display: list-item;
}

.article-content li::marker {
  color: #8B5CF6;
}

.article-content strong {
  color: #FFFFFF;
  font-weight: 600;
}

.article-content em {
  color: #D1D5DB;
  font-style: italic;
}

.article-content img {
  width: 100%;
  border-radius: 1rem;
  margin: 2.5rem 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.article-content a {
  color: #A78BFA;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1.5px solid rgba(139, 92, 246, 0.4);
  font-weight: 500;
}

.article-content a:hover {
  color: #C4B5FD;
  border-bottom-color: rgba(139, 92, 246, 0.8);
}

/* Blockquotes */
.article-content blockquote {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
  border-left: 4px solid #8B5CF6;
  border-radius: 0.75rem;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  font-size: 1.1875rem;
  font-style: italic;
  color: #D1D5DB;
  position: relative;
}

.article-content blockquote p {
  margin-bottom: 0;
  color: #D1D5DB;
}

.article-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(139, 92, 246, 0.3);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
  font-family: Georgia, serif;
}

/* Code Blocks */
.article-content pre {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  overflow-x: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.article-content code {
  background: rgba(139, 92, 246, 0.15);
  color: #C4B5FD;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  font-family: 'Courier New', monospace;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.article-content pre code {
  background: transparent;
  padding: 0;
  border: none;
  color: #E5E7EB;
  font-size: 0.9375rem;
}

/* Horizontal Rule */
.article-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
  margin: 3rem 0;
}

/* Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  overflow: hidden;
}

.article-content th,
.article-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content th {
  background: rgba(139, 92, 246, 0.2);
  color: #FFFFFF;
  font-weight: 600;
}

.article-content tr:last-child td {
  border-bottom: none;
}

/* Highlight Tips/Callouts */
.highlight-tip {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
  border-left: 4px solid #8B5CF6;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.highlight-tip h4 {
  color: #A78BFA;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.highlight-tip p {
  color: #E5E7EB;
  margin: 0;
}

/* Article CTA Box */
.article-cta {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.article-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.article-cta p {
  font-size: 1.125rem;
  color: #9CA3AF;
  margin-bottom: 2rem;
}

/* Related Posts Section */
.related-posts {
  margin-top: 4rem;
}

.related-posts h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Keep related post cards compact like blog home cards */
.related-posts .blog-card-image {
  height: 200px;
}

.related-posts .blog-card-content {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.related-posts .blog-card-title {
  font-size: 1.25rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.related-posts .blog-card-excerpt {
  font-size: 0.9375rem;
  -webkit-line-clamp: 2;
  text-align: center;
}

/* Mobile Responsive for Articles */
@media (max-width: 768px) {
  .article-hero {
    padding: 140px 0 60px 0;
  }

  .article-hero h1 {
    font-size: 2.25rem;
  }

  .article-excerpt {
    font-size: 1.125rem;
  }

  .article-meta {
    gap: 1rem;
    font-size: 0.875rem;
  }

  .article-container {
    padding: 40px 24px;
  }

  /* Cover image responsive */
  .article-cover-image {
    margin-bottom: 2rem;
    border-radius: 1rem;
  }

  .article-cover-image img {
    max-height: 300px;
  }

  /* Share buttons responsive */
  .article-share {
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .share-label {
    font-size: 0.875rem;
    text-align: center;
  }

  .share-buttons {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 400px;
    gap: 0;
  }

  .share-btn {
    width: 3rem;
    height: 3rem;
  }

  .article-content {
    padding: 2rem 1.5rem;
  }

  .article-content p,
  .article-content li {
    font-size: 1rem;
    line-height: 1.8;
  }

  .article-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
  }

  .article-content h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
  }

  .article-content h4 {
    font-size: 1.125rem;
  }

  .article-content blockquote {
    padding: 1.25rem 1.5rem;
    font-size: 1.0625rem;
    margin: 2rem 0;
  }

  .article-content blockquote::before {
    font-size: 3rem;
    top: -0.25rem;
  }

  .article-content pre {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .article-content code {
    font-size: 0.875rem;
  }

  .article-cta {
    padding: 2rem;
  }

  .article-cta h3 {
    font-size: 1.5rem;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .related-posts .blog-card-title {
    font-size: 1.125rem;
  }

  .related-posts .blog-card-image {
    height: 180px;
  }
}