
   .articles-section {
  padding: 80px 0;
  background: #f9fbff;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0a2a5e;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 10px auto 40px;
}

/* CARD */
.article-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.article-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.article-content {
  padding: 20px;
}

.article-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0a2a5e;
  margin-bottom: 10px;
}

/* READ MORE */
.article-content a {
  text-decoration: none;
  color: #d4af37; /* GOLD */
  font-weight: 600;
  transition: 0.3s;
}

.article-content a:hover {
  letter-spacing: 1px;
}