* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: #f8f7f5;
  color: #1a1a1a;
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background-color: #fff;
  margin-top: 2rem;
}

.hero-label {
  color: #059669;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.hero p {
  color: #6b7280;
  font-size: 16px;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  margin-top: 3rem;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.featured-image {
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.featured-image img {
  width: 200px;
  height: auto;
}

.featured-content {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 16px;
}

.featured-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.featured-content p {
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f9fafb;
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  width: fit-content;
}

.read-more:hover {
  background: #fff;
  border-color: #d1d5db;
  transform: translateX(4px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.blog-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: #e5e5e5;
}

.blog-content {
  padding: 24px;
}

.blog-content .article-meta {
  margin-bottom: 12px;
}

.blog-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.blog-content p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}

.pagination button,
.pagination a {
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination button:hover,
.pagination a:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}

.pagination a.active {
  background: #059669;
  color: #fff;
  border-color: #059669;
}

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

.pagination .dots {
  border: none;
  background: transparent;
  cursor: default;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

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

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

  .featured-content {
    padding: 40px 24px;
  }

  .featured-content h3 {
    font-size: 28px;
  }

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

  h2 {
    font-size: 28px;
  }
}
