body {
  background-color: #f8f9fa;
  font-family: system-ui, sans-serif;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.2rem;
}

.hero {
  max-height: 420px;
  overflow: hidden;
}

.hero img {
  object-fit: cover;
  width: 100%;
}

.sort-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 24px 0 8px;
}

.card {
  border: none;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.card-text {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
}

.likes-badge {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.likes-low    { background-color: #f8d7da; color: #842029; }
.likes-mid    { background-color: #fff3cd; color: #664d03; }
.likes-high   { background-color: #d1e7dd; color: #0f5132; }
