/* Article-specific styles */
.article-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-category {
  background: #3a86ff;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.article-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  background: #e9ecef;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #495057;
}

.article-content {
  padding: 60px 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.article-intro .lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 30px;
}

.quick-nav {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-card:hover {
  background: #3a86ff;
  color: white;
  transform: translateY(-3px);
}

.nav-card i {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.nav-card span {
  font-weight: 500;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  color: #212529;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.strategy-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin: 30px 0;
  border-left: 4px solid #3a86ff;
}

.strategy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.launch-year {
  background: #3a86ff;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list li i {
  color: #3a86ff;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.conclusion-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 40px;
  margin: 40px 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.step-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #3a86ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.cta-box {
  background: #3a86ff;
  color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
}

.cta-box h3 {
  color: white;
  margin-bottom: 15px;
}

.article-footer {
  border-top: 1px solid #dee2e6;
  padding-top: 20px;
  margin-top: 40px;
}

.tags-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 500;
  color: #495057;
}

/* Sidebar styles */
.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  color: #212529;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.author-bio {
  text-align: center;
}

.author-bio img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
}

.related-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-article {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.related-article:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.related-article h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #212529;
}

.article-meta {
  font-size: 0.8rem;
  color: #6c757d;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: #e9ecef;
}

.tool-item i {
  color: #3a86ff;
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.9rem;
}

.privacy-note {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 10px;
}

/* More articles section */
.more-articles {
  padding: 60px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #212529;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.article-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
}

.card-content .category {
  font-size: 0.8rem;
  color: #3a86ff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #212529;
}

.card-content p {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #3a86ff;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

.section-cta {
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .content-wrapper {
    grid-template-columns: 1fr 250px;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    margin-top: 40px;
  }
  
  .two-column-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .article-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .quick-nav-grid {
    grid-template-columns: 1fr;
  }
  
  .article-hero, .article-content, .more-articles {
    padding: 30px 0;
  }
}

.paradox-container {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 10px;
      padding: 30px;
      margin: 40px 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    
    .paradox-column {
      padding: 20px;
    }
    
    .paradox-column.smaller {
      border-right: 2px dashed #dee2e6;
    }
    
    .paradox-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .paradox-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }
    
    .smaller .paradox-icon {
      background: #e6f7ff;
      color: #1890ff;
    }
    
    .bigger .paradox-icon {
      background: #f6ffed;
      color: #52c41a;
    }
    
    .paradox-list {
      list-style: none;
      padding: 0;
    }
    
    .paradox-list li {
      padding: 12px 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    
    .paradox-list li i {
      margin-top: 4px;
    }
    
    .smaller .paradox-list li i {
      color: #1890ff;
    }
    
    .bigger .paradox-list li i {
      color: #52c41a;
    }
    
    .trend-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin: 40px 0;
    }
    
    .trend-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    
    .trend-card:hover {
      transform: translateY(-5px);
    }
    
    .trend-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
    }
    
    .trend-card:nth-child(1)::after {
      background: #1890ff;
    }
    
    .trend-card:nth-child(2)::after {
      background: #52c41a;
    }
    
    .trend-card:nth-child(3)::after {
      background: #fa8c16;
    }
    
    .trend-card:nth-child(4)::after {
      background: #722ed1;
    }
    
    .trend-icon {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.8rem;
    }
    
    .trend-card:nth-child(1) .trend-icon {
      background: #e6f7ff;
      color: #1890ff;
    }
    
    .trend-card:nth-child(2) .trend-icon {
      background: #f6ffed;
      color: #52c41a;
    }
    
    .trend-card:nth-child(3) .trend-icon {
      background: #fff7e6;
      color: #fa8c16;
    }
    
    .trend-card:nth-child(4) .trend-icon {
      background: #f9f0ff;
      color: #722ed1;
    }
    
    .future-vision {
      background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
      border-radius: 10px;
      padding: 40px;
      margin: 50px 0;
      border-left: 4px solid #1890ff;
    }
    
    .lifestyle-compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 40px 0;
    }
    
    .lifestyle-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .lifestyle-card.fast {
      border-top: 4px solid #1890ff;
    }
    
    .lifestyle-card.slow {
      border-top: 4px solid #52c41a;
    }
    
    .lifestyle-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .lifestyle-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }
    
    .fast .lifestyle-icon {
      background: #e6f7ff;
      color: #1890ff;
    }
    
    .slow .lifestyle-icon {
      background: #f6ffed;
      color: #52c41a;
    }
    
    .business-implications {
      background: #fff8e6;
      border-radius: 10px;
      padding: 40px;
      margin: 50px 0;
      border-left: 4px solid #fa8c16;
    }
    
    .implication-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    
    .implication-card {
      background: white;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .implication-card h4 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 0;
    }
    
    .implication-card i {
      color: #fa8c16;
    }
    
    @media (max-width: 992px) {
      .paradox-container {
        grid-template-columns: 1fr;
      }
      
      .paradox-column.smaller {
        border-right: none;
        border-bottom: 2px dashed #dee2e6;
        padding-bottom: 40px;
      }
      
      .lifestyle-compare {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .trend-cards {
        grid-template-columns: 1fr;
      }
      
      .implication-grid {
        grid-template-columns: 1fr;
      }
    }