
.blog-section {
  padding: 120px 5% 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: var(--royal-blue);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.article-title, .article-title a{
  font-size: 1.2rem;
  color: var(--royal-blue);
  margin-bottom: 10px;
  line-height: 1.4;
  text-decoration: none;
}

.publish-date {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.article-excerpt {
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  background: var(--gold);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.read-more:hover {
  background: var(--royal-blue);
}

.load-more {
  display: block;
  margin: 40px auto 0;
  background: var(--royal-blue);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.load-more:hover {
  background: var(--gold);
}
.load-more:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}


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

@media (max-width: 768px) {
  .blog-section {
    padding: 100px 20px 40px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-title {
    font-size: 2rem;
  }
}