/* Reserved for extracted section CSS. The original cascade is preserved in css/app.css. */


.lobby-event-brief {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 16px 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.12), rgba(0, 120, 180, 0.08));
  border: 1px solid rgba(0, 210, 255, 0.28);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.lobby-brief-chip {
  font-size: 14px;
  font-weight: 700;
  color: #f0fbff;
  line-height: 1.4;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
@media (max-width: 600px) {
  .lobby-event-brief {
    flex-direction: column;
    gap: 6px;
    padding: 12px;
  }
  .lobby-brief-chip {
    font-size: 13px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Event title spacing so brief sits clearly under category */
.lobby-event-section .event-title {
  margin-bottom: 4px;
}
