#primary.site-main.container {
  max-width: 1200px;
  margin: auto;
}

.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.card-img-top img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

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

.card-title a:hover {
  color: #399b31;
}

.card-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.card-footer {
  padding: 16px 24px;
  background-color: #f9f9f9;
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #eee;
}

.navigation.pagination {
  margin-top: 60px;
  text-align: center;
}

.nav-links {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-numbers {
  padding: 10px 16px;
  border-radius: 8px;
  background-color: #f2f2f2;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.page-numbers.current,
.page-numbers:hover {
  background-color: #399b31;
  color: #fff;
}

@media (max-width: 768px) {
  .card-title {
    font-size: 1.1rem;
  }

  .card-text p {
    font-size: 0.9rem;
  }

  .card-body,
  .card-footer {
    padding: 16px;
  }
}
