.homepage {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}



.section-title {
  font-size: 1.8rem;
  margin: 2rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
}

.articles-list {
  margin-bottom: 3rem;
}

.article-preview {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
  display: none;
}

.article-preview.active {
  display: block;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.article-software {
  font-weight: 600;
  color: #667eea;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-software:hover {
  color: #764ba2;
  text-decoration: underline;
}

.article-date {
  color: #999;
  font-size: 0.9rem;
}

.article-title {
  margin: 0.5rem 0 1rem;
  font-size: 1.5rem;
}

.article-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-title a:hover {
  color: #667eea;
}

.article-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.read-more:hover {
  color: #764ba2;
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 2px solid #eee;
}

.pagination-btn {
  padding: 0.5rem 1rem;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #333;
}

.pagination-btn:hover:not(:disabled) {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

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

.pagination-btn.active {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.pagination-dots {
  color: #999;
  padding: 0 0.5rem;
}

.pagination-info {
  color: #666;
  font-weight: 500;
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .dropdown-content {
    min-width: 250px;
    left: 0;
    right: 0;
    transform: translateX(0) translateY(-10px);
  }
  
  .dropdown-content.show {
    transform: translateX(0) translateY(0);
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  
  .pagination {
    flex-wrap: wrap;
  }
}