.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.image-content-3 {
  display: flex;
  justify-content: center; /* ✅ Center horizontally */
  align-items: center; /* ✅ Center vertically */
  width: 40px; /* ✅ Container matches image size */
  height: 40px;
  flex-shrink: 0; /* Prevents shrinking */
}

.image-content-3 img {
  width: 40px;
  height: 40px;
  object-fit: cover; /* ✅ Crops image to fit nicely */
  border-radius: 50%; /* ✅ Makes it circular */
  display: block;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.article-image {
  position: relative;
}

.article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.image-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 3px;
}

.article-content {
  padding: 20px;
}

.article-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}

.article-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #000;
  line-height: 1.4;
}

.article-title-ce {
  font-size: 1.85rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 12px;
  color: #000;
  line-height: 1.4;
}

.article-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-btn {
  background: #002d72;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.article-btn:hover {
  background: #12497d;
}
