.article-showcase {
  background-color: #f8f6f3;
  padding: 90px 0;
}

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

.article-card {
  width: 320px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.article-image {
  height: 200px;
  background-color: #eee;
  position: relative;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: red;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.article-info {
  padding: 20px;
}

.article-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.article-description {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.article-features span {
  background-color: #f0f0ff;
  color: #6667ab;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.article-card .btn {
  display: inline-block;
  width: 100%;
  background-color: transparent;
  border: 2px solid #6667ab;
  color: #6667ab;
  padding: 10px 0;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.article-card .btn:hover {
  background-color: #6667ab;
  color: white;
}

