/* ===== Articles Section ===== */
#articles {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

#articles h1 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 10px;
}

#articles .lead {
  color: #666;
  margin-bottom: 50px;
}

.article-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.article-item {
  flex: 1 1 calc(25% - 30px);
  max-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.article-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.article-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-content {
  padding: 20px;
}

.article-content h5 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
}

.article-content p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5em;
}

.article-content .button {
  background: #11ABB0;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9em;
  display: inline-block;
  transition: background 0.3s;
}

.article-content .button:hover {
  background: #009fa5;
}

/* Responsive */
@media (max-width: 992px) {
  .article-item {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .article-item {
    flex: 1 1 100%;
  }
}
