/**
 * Custom CSS for Article Cards
 * Tamide Data Solutions
 */

.article-card {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.article-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.article-card .image-placeholder {
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12rem;
}

.article-card .placeholder-icon {
  background-color: #fcd34d;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.article-card .card-content {
  padding: 1.5rem;
}

.article-card .category {
  font-weight: 600;
  color: #f59e0b;
}

.article-card .date {
  color: #6b7280;
}

.article-card .title {
  color: #004d40;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.article-card .excerpt {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.article-card .read-button {
  background-color: #fbbf24;
  color: #000;
  font-weight: 600;
  padding: 0.75rem;
  text-align: center;
  border-radius: 0.375rem;
  display: block;
  width: 100%;
  transition: background-color 0.3s;
}

.article-card .read-button:hover {
  background-color: #f59e0b;
}
