/* =========================================================
   JUEVES DE JUTIKO — ESTADOS OFICIALES
   ========================================================= */

.j-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 0 13px;

  border: 1px solid transparent;
  border-radius: var(--radius-pill);

  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
  white-space: nowrap;
}

/* Próximamente */

.j-status--coming {
  background: rgba(60, 137, 255, 0.1);
  border-color: rgba(60, 137, 255, 0.16);
  color: #2465c5;
}

/* Buscamos creadores */

.j-status--open {
  background: rgba(255, 196, 0, 0.15);
  border-color: rgba(255, 196, 0, 0.22);
  color: #8a6400;
}

/* Encuentro confirmado */

.j-status--confirmed {
  background: rgba(123, 63, 252, 0.1);
  border-color: rgba(123, 63, 252, 0.16);
  color: var(--jutiko-purple);
}

@media (max-width: 600px) {
  .j-status {
    min-height: 32px;
    max-width: 100%;
    padding: 6px 12px;

    white-space: normal;
    text-align: center;
  }
}