.sa-home-banner {
  margin: 22px 22px 30px 22px;
  padding: 45px 35px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.50)),
    url("/public/custom/Argentine_Le_Castellan_003_26 mai 2026a.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
}

.sa-home-banner img {
  width: 100px;
  height: auto;
  margin-bottom: 18px;
  background: rgba(255,255,255,.85);
  border-radius: 12px;
  padding: 8px;
}

.sa-home-banner h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
}

.sa-home-banner p {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 300;
  opacity: .95;
}

#sa-branding-login {
  text-align: center;
  margin-bottom: 25px;
}

#sa-branding-login img {
  max-width: 180px;
  height: auto;
  margin-bottom: 12px;
}

#sa-branding-login .sa-title {
  font-size: 24px;
  font-weight: 600;
}

#sa-branding-login .sa-subtitle {
  font-size: 15px;
  opacity: 0.75;
  margin-top: 4px;
}

#sa-return-site {
  display: inline-block;
  margin-top: 22px;
  color: #d7b36a;
  text-decoration: none;
  font-size: 15px;
}

#sa-return-site:hover {
  text-decoration: underline;
}
/* Animation douce à l'ouverture */
.sa-home-banner {
  animation: saFadeIn 900ms ease-out both;
}

@keyframes saFadeIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}