html {
  font-size: 16px;
}

body {
  background-color: #f8f9fa;
}

/* Post cards */
.post-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid rgba(0,0,0,.08);
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.12) !important;
}

.post-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Custom badge colour for CreativeWriting */
.bg-purple {
  background-color: #6f42c1 !important;
}

/* Stretched link z-index fix for tags inside cards */
.card .stretched-link::after {
  z-index: 1;
}

/* Blog directory */
.card-footer {
  font-size: 0.85rem;
}

/* Focus styles */
.btn:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.35);
}

.category-active {
    background-color: #e0b84a;
    color: #2d3a1f;
    border: 1px solid #b8912f;
    border-radius: 10px;
    box-shadow: 2px 2px 0 #b8912f;
}

.category-inactive {
    background-color: #fff;
    color: #2d3a1f;
    border-radius: 10px;
    border: 1px solid #c8d0b0;
}