.u-section-1 .u-sheet-1 {
  min-height: 825px;
}

.u-section-1 .u-custom-html-1 {
  margin-top: 39px;
  margin-bottom: 60px;
  height: auto;
  min-height: 120px;
}

@media (max-width: 767px) {
  .u-section-1 .u-custom-html-1 {
    margin-top: 411px;
  }
}/* HEADER GÉNÉRAL */
header {
  position: fixed; /* Reste visible en haut */
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* Ajuste selon ton design */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 1000;
  /* Effet flou + transparence */
  background: rgba(20, 20, 20, 0.4); /* Couleur sombre légèrement transparente */
  backdrop-filter: blur(10px); /* Flou principal */
  -webkit-backdrop-filter: blur(10px); /* Support Safari */
  /* Bordure subtile pour le contraste */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* LOGO */
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
/* NAVIGATION */
header nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}
header nav a:hover {
  color: #00bfff; /* Accent bleu clair */
}
/* === MISSIONS GRID === */
#missions {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
/* === EMPTY STATE === */
#missions > p {
  grid-column: 1 / -1;
  text-align: center;
  color: #8b8b95;
  font-size: 15px;
  background: #16161b;
  border: 2px dashed #23232b;
  padding: 26px;
  border-radius: 18px;
}
/* === MISSION CARD === */
.mission {
  background: #0f0f12;
  border: 2px solid #23232b;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease;
}
.mission:hover {
  transform: translateY(-4px);
  border-color: #5b7cff;
  box-shadow: 0 30px 70px rgba(91,124,255,0.25);
}
/* === TITLE === */
.mission h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}
/* === PARTNER INFO === */
.partner-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #16161b;
  border: 1px solid #23232b;
  border-radius: 14px;
  padding: 10px 12px;
}
.partner-info img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.partner-info span {
  font-size: 14px;
  font-weight: 600;
  color: #d8d8de;
}
/* === CATEGORY / FILTER === */
.mission p strong {
  color: #ffffff;
  font-weight: 600;
}
.mission p {
  font-size: 14px;
  color: #cfcfd4;
  line-height: 1.55;
  margin: 0;
}
/* === DESCRIPTION === */
.mission p:nth-of-type(2) {
  color: #b9b9c2;
}
/* === CONTACT === */
.mission p:last-of-type {
  background: #16161b;
  border: 1px solid #23232b;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
}
/* === MISSION IMAGE === */
.mission img[alt="Photo de mission"] {
  width: 100%;
  border-radius: 16px;
  margin-top: 8px;
  object-fit: cover;
}
/* === MOBILE === */
@media (max-width: 575px) {
  .mission {
    padding: 16px;
  }
  .mission h3 {
    font-size: 17px;
  }
}