.redful-surface {
  background: #0b0d12;
  border: 1px solid #252a35;
  border-radius: 18px;
  color: #f5f7fb;
  padding: 2rem;
}
.redful-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.redful-card {
  background: #12151d;
  border: 1px solid #282e3a;
  border-radius: 14px;
  overflow: hidden;
  padding: 1.25rem;
}
.redful-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}
.redful-kicker {
  color: #ff314e;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.redful-button {
  display: inline-flex;
  background: #e82743;
  border-radius: 9px;
  color: #fff !important;
  font-weight: 800;
  padding: 0.8rem 1.2rem;
}
.redful-muted {
  color: #a8afbd;
}
.redful-status {
  display: inline-block;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  background: #202631;
}
.redful-status.online {
  background: #123c2b;
  color: #6ee7a8;
}
.redful-error {
  background: #4b1720;
  border-radius: 10px;
  color: #ffbdc6;
  padding: 1rem;
}
