/* ====== STORIES - MODERN CLEAN DESIGN ====== */

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1e40af;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --dark: #1e293b;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

* {
  box-sizing: border-box;
}





/* ====== BREADCRUMB ====== */
.breadcrumb-modern {
  padding: 1rem 0;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.breadcrumb-item a {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin: 0 0.5rem;
  color: var(--gray-300);
}

/* ====== STORIES LIST PAGE ====== */
.stories-header {
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.stories-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.stories-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  font-weight: 400;
  margin: 0;
}

.stories-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ====== STORY ITEM BASE ====== */
.story-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-item:hover {
  transform: translateX(8px);
}

.story-item:last-child {
  border-bottom: none;
}

/* ====== STORY WITH IMAGE ====== */
.story-item.with-image {
  grid-template-columns: 1fr 180px;
}

/* ====== STORY WITHOUT IMAGE ====== */
.story-item.no-image {
  background: white;
  /* border: 1px solid var(--gray-200);
  border-bottom: none;
  border-radius: var(--radius-lg); */
  /* padding: 2rem; */
  margin-bottom: 1.5rem;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
  grid-template-columns: 1fr;
  gap: 0;
}



/* ====== STORY TEXT CONTENT ====== */
.story-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.story-meta-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.story-meta-top i {
  font-size: 0.85rem;
  opacity: 0.7;
}

.story-date {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.story-reading-time {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.story-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.story-category-badge.video {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.story-category-badge.link {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.story-category-badge.story {
  background: rgba(100, 116, 139, 0.1);
  color: var(--gray-700);
}

.story-title {
  font-size: 1.5rem;
  font-weight: 750;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-item:hover .story-title {
  color: var(--primary);
}

.story-summary {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.story-topic-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.story-topic-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ====== STORY IMAGE ====== */
.story-image-wrapper {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}

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

.story-item:hover .story-image-wrapper img {
  transform: scale(1.08);
}

/* ====== EMPTY STATE ====== */
.wiki-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: var(--radius-xl);
  border: 2px dashed var(--gray-300);
  margin: 2rem 0;
}

.wiki-empty-state i {
  font-size: 3.5rem;
  color: var(--gray-300);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.wiki-empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.wiki-empty-state p {
  color: var(--gray-500);
  margin: 0;
  font-size: 0.95rem;
}

/* ====== LOAD MORE ====== */
.story-item.hidden {
  display: none;
}

.load-more-container {
  text-align: center;
  padding: 3rem 0 2rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.load-more-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-item {
  animation: fadeInUp 0.5s ease backwards;
}

.story-item:nth-child(1) { animation-delay: 0.05s; }
.story-item:nth-child(2) { animation-delay: 0.1s; }
.story-item:nth-child(3) { animation-delay: 0.15s; }
.story-item:nth-child(n+4) { animation-delay: 0.2s; }

/* ====== YOUTUBE CARD ====== */
.youtube-card {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.youtube-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.youtube-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.youtube-card p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.youtube-card .btn-light {
  background: white;
  border: none;
  color: #dc2626;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.youtube-card .btn-light:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ====== STORY DETAIL PAGE ====== */
.story-detail-page {
  position: relative;
  background: white;
  min-height: 100vh;
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gray-200);
  z-index: 1001;
}

.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transition: width 0.2s ease;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.story-hero {
  padding: 3rem 0 2rem;
  position: relative;
  /* background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.01) 100%); */
}

.story-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.hero-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.story-hero .story-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.story-hero .story-summary {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
  display: block;
  -webkit-line-clamp: unset;
}

/* Meta Info */
.story-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--gray-500);
  font-size: 0.95rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.meta-item i {
  font-size: 1.1rem;
  color: var(--primary);
  opacity: 0.8;
}

.story-hero .story-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.topic-tag {
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.topic-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ====== MAIN CONTENT LAYOUT ====== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.main-article {
  background: white;
  padding: 0;
  max-width: 850px;
  margin: 0 auto;
  width: 100%;
}

/* Article Content Styling */
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
  padding: 0 ;
}

.article-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin: 2.5rem 0 1.2rem 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 750;
  color: var(--dark);
  margin: 2rem 0 1rem 0;
  line-height: 1.3;
}

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

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

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

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  background: var(--gray-50);
  margin: 2rem 0;
  border-radius: var(--radius-md);
  font-style: italic;
  color: var(--gray-700);
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.article-content a {
  
  font-weight: 600;
  
  
  transition: all 0.2s ease;
}

.article-content a:hover {
  text-decoration-color: var(--primary);
}

/* Key Insights */
.key-insights {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
 
  padding: 1.5rem;
  margin: 3rem 0;
}

.key-insights h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  margin-top: 0;
}

.key-insights h3 i {
  font-size: 1.5rem;
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  border: 1px solid var(--gray-200);
}

.insight-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.insight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.insight-item p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Video Section */
.video-section {
  margin: 3rem 0;
  padding: 0;
}

.video-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.video-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.video-container {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  background: linear-gradient(135deg, #1e293b, #334155);
}

.play-button {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.video-placeholder:hover .play-button {
  transform: scale(1.15);
  background: rgba(37, 99, 235, 0.2);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.4);
}

.video-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.video-btn {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.video-btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.video-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  text-decoration: none;
  color: white;
}

.video-btn-secondary {
  background: white;
  color: var(--dark);
  border: 2px solid var(--gray-200);
}

.video-btn-secondary:hover {
  border-color: var(--primary);
  background: var(--gray-50);
  transform: translateY(-3px);
  text-decoration: none;
  color: var(--dark);
}

/* Table of Contents */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-item {
  margin-bottom: 0.5rem;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--gray-600);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.toc-link:hover,
.toc-link.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  text-decoration: none;
  padding-left: 1.25rem;
}

.toc-link i {
  font-size: 0.85rem;
  opacity: 0.6;
  width: 16px;
  text-align: center;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 0 1.5rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* Share Widget */
.sidebar-section {
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-title i {
  font-size: 1.25rem;
  color: var(--primary);
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.share-btn.twitter {
  background: linear-gradient(135deg, #1da1f2, #1a91da);
}

.share-btn.linkedin {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.share-btn.facebook {
  background: linear-gradient(135deg, #1877f2, #0a66c2);
}

.share-btn.copy {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* Related Stories */
.related-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.related-card:hover {
  background: white;
  border-color: var(--primary);
  transform: translateX(6px);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}

.related-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.related-meta {
  font-size: 0.85rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* YouTube CTA */
.youtube-cta {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.youtube-cta i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.youtube-cta h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.youtube-cta p {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* ====== MOBILE ACTIONS BAR ====== */
.mobile-actions-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}

.mobile-action-btn.top {
  background: var(--gray-500);
}

.mobile-action-btn.watch {
  background: #dc2626;
}

.mobile-action-btn.share {
  background: var(--success);
}

/* ====== UTILITIES ====== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}



.title-header {
  border-bottom: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  padding: 1rem 0;
  margin-bottom: 1rem;
  
}

.show-on-mobile {
  display: none;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
  .stories-header h1 {
    font-size: 2rem;
  }

  .story-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .story-item.with-image {
    grid-template-columns: 1fr;
  }

  .story-image-wrapper {
    width: 100%;
    height: 200px;
    margin-top: 0.5rem;
  }

  .story-title {
    font-size: 1.25rem;
  }

  .story-summary {
    font-size: 0.95rem;
  }

  .story-hero .story-title {
    font-size: 2rem;
  }

  .story-hero .story-summary {
    font-size: 1.1rem;
  }

  .story-meta {
    gap: 1rem;
    font-size: 0.85rem;
  }

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

  .article-content h2 {
    font-size: 1.5rem;
  }

  .article-content h3 {
    font-size: 1.25rem;
  }

  .video-btn {
    min-width: 100%;
  }

  .share-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 1rem;
  }

  .sidebar-section {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }

  .key-insights {
    padding: 1.5rem;
    margin: 2rem 0;
  }

 

  .show-on-mobile {
    display: flex;
  }
}

@media (max-width: 480px) {
  .stories-header h1 {
    font-size: 1.5rem;
  }

  .story-item.with-image {
    grid-template-columns: 1fr;
  }

  .story-image-wrapper {
    width: 100%;
    height: 180px;
  }

  .story-title {
    font-size: 1.1rem;
  }

  .story-summary {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }

  .story-hero .story-title {
    font-size: 1.5rem;
  }

  .story-hero .story-summary {
    font-size: 1rem;
  }

  .story-meta-top {
    font-size: 0.75rem;
    gap: 0.75rem;
  }

  .article-content {
    font-size: 0.95rem;
    padding: 0 0.75rem;
  }

  .article-content h2 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem 0;
  }

  .article-content h3 {
    font-size: 1.1rem;
  }

  .share-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .share-btn {
    height: 45px;
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.75rem;
  }

  .video-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .play-button {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .sidebar-section {
    padding: 1.25rem 0.75rem;
  }

  .key-insights {
    padding: 1.25rem;
  }

  .insight-item {
    padding: 1rem;
  }

  .main-article {
    padding: 0;
  }

  .video-section {
    margin: 2rem 0;
   
  }


}
