/* Category Card */

.category-card {
  background: #13293d;
  border: 1px solid #1d405e;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.25s ease;
}

.category-card:hover {
  border-color: #2fbbf4;
  transform: translateY(-2px);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-body {
  padding: 12px;
}

.category-card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.category-card-title a {
  color: #ffffff;
  text-decoration: none;
}

.category-card-title a:hover {
  color: #2fbbf4;
}

.category-card-meta {
  margin-top: 6px;
  color: #9fb4c2;
  font-size: 13px;
}
