/* Container for action buttons */
.bvy-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Base button style */
.bvy-cta,
.bvy-ghost {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.2; 
  transition: all 0.2s ease;
  border: none;
}

/* --- PRIMARY BUTTON (S'inscrire) --- */
.bvy-cta {
  background: #F57B57; /* warm BVY orange */
  color: #fff;
  box-shadow: 0 6px 14px rgba(245, 123, 87, 0.35);
}

.bvy-cta:hover {
  background: #e36b48;
  box-shadow: 0 8px 18px rgba(245, 123, 87, 0.45);
  transform: translateY(-1px);
}

.bvy-cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(245, 123, 87, 0.3);
}

/* --- SECONDARY BUTTON (Se désinscrire) --- */
.bvy-ghost {
  background: #fff;
  color: #5a4938;               /* nice brown tone */
  border: 1px solid #d9cfc4;    /* soft border */
}

.bvy-ghost:hover {
  background: #f9f3ed;
  border-color: #c7b8a9;
}
/* Grid: cards next to each other */
.bvy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* Card box */
.bvy-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e4d7c7;      /* light beige border */
  padding: 18px 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

/* Inner layout */
.bvy-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Row 1: SA 17.04.2026 – 18h */
.bvy-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700 !important;
}

/* Row 2: MIXTES */
.bvy-type {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Row 3: 1/12 équipe(s) inscrite(s) */
.bvy-sub {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}
