/* Cards CSS */
.card {
  background-color: #262626;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #333; /* Add a subtle border */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card__text {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6; /* Adjust line height for better readability */
}

.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card__tags {
  font-size: 0.875rem;
  color: #bbb;
}

.card__date {
  font-size: 0.875rem;
  color: #888;
}

/* Responsive design */
@media (min-width: 640px) {
  .card {
    margin-bottom: 1.5rem; /* Increased margin for better spacing on larger screens */
    width: calc(50% - 1rem);
  }
}
