.card-link {
  text-decoration: none;
  color: inherit;
  margin: 0 !important;
}

.card {
  position: relative;
  width: 350px;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #003cff;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.8em;
  font-weight: bold;
}

.title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.meta {
  display: flex;
  gap: 10px;
  font-size: 0.9em;
  align-items: center;
}

.meta span::before {
  margin-right: 5px;
}

.meta span.date::before {
  content: "📅";
}

.meta span.readtime::before {
  content: "⏱️";
}
