body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #222;
}

main.container.section {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.event-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.event-info h2 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #111;
}

.event-info p {
  margin: 0.3rem 0;
  color: #444;
}

.event-action {
  margin-top: 1rem;
  text-align: right;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #d92332;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: #b71c29;
}


.card-combattant img,
.event-card img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  background-color: #000;
  border-radius: 6px;
  border: 2px solid #e60023;
  box-shadow: 0 0 12px rgba(230,0,35,0.5);
}


.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto !important;
  border-radius: 6px;
  border: 2px solid #e60023;
  box-shadow: 0 0 12px rgba(230,0,35,0.5);
}

