.tournoi-card {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  /* Changed to column for vertical layout */
  /* height: 250px; Removed fixed height */
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  scroll-snap-align: center;
}

.tournoi-card:hover {
  transform: scale(1.02);
}

.tournoi-image-container {
  width: 100%;
  /* Full width */
  aspect-ratio: 4 / 5;
  /* Instagram portrait aspect ratio */
  background-color: #f3f4f6;
  /* gray-100 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tournoi-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournoi-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tournoi-nom {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2563eb;
  /* Replace with your volleyball-blue color */
  margin-bottom: 0.5rem;
}

.tournoi-meta {
  color: #4b5563;
  /* gray-600 */
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.tournoi-prix {
  color: #f97316;
  /* Replace with your volleyball-orange color */
  font-weight: 600;
  font-size: 1.125rem;
}