.dry-banner-link {
  text-decoration: none;
  display: block;
}

.dry-banner {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 2.5rem 2.5rem;
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
  background: rgba(255, 255, 255, .35);
  color: #070707;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
  box-sizing: border-box;
}

.dry-banner:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Orbes de fond animés */
.dry-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.dry-orb-1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #22d3ee, transparent 60%);
  top: -40px;
  left: -40px;
  animation: floatOrb1 14s ease-in-out infinite alternate;
}

.dry-orb-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #f97316, transparent 65%);
  bottom: -60px;
  right: -40px;
  animation: floatOrb2 18s ease-in-out infinite alternate;
}

.dry-orb-3 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #a855f7, transparent 60%);
  top: 30%;
  right: 30%;
  opacity: 0.35;
  animation: floatOrb3 20s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(20px, 30px); }
}
@keyframes floatOrb2 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-30px, -25px); }
}
@keyframes floatOrb3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-15px, 10px) scale(1.05); }
}

/* Contenu texte */
.dry-banner-content {
  position: relative;
  z-index: 2;
  
}

.dry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #9494b7;
  margin-bottom: 1rem;
}

.dry-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

.dry-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.dry-title span {
  background: linear-gradient(120deg, #38bdf8, #f97316, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dry-subtitle {
  font-size: 0.98rem;
  color: #111112;
  max-width: 34rem;
  margin-bottom: 0.9rem;
}

.dry-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #070708;
}

.dry-highlights li {
  position: relative;
  padding-left: 1.3rem;
}

.dry-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #38bdf8;
}

.dry-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
}

.dry-cta-main {
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background: #f9fafb;
  color: #020617;
  cursor: pointer;
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.dry-banner:hover .dry-cta-main {
  transform: translateY(-1px);
  box-shadow:
    0 15px 30px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.18);
  background: #ffffff;
}

.dry-cta-note {
  font-size: 0.82rem;
  color: #28098f;
}

/* Images flottantes */
.dry-floating-images {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dry-float-img {
  position: absolute;
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.9);
  padding: 0.7rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.img-1 {
  top: 10%;
  right: 20%;
  animation: floatImg1 9s ease-in-out infinite alternate;
}
.img-2 {
  bottom: 15%;
  right: 0%;
  animation: floatImg2 10s ease-in-out infinite alternate;
}
.img-3 {
  top: 50%;
  right: 45%;
  animation: floatImg3 12s ease-in-out infinite alternate;
}

@keyframes floatImg1 {
  0%   { transform: translateY(0) rotate(-4deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes floatImg2 {
  0%   { transform: translateY(0) rotate(3deg); }
  100% { transform: translateY(12px) rotate(-3deg); }
}
@keyframes floatImg3 {
  0%   { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-8px) rotate(2deg); }
}

/* Breakpoints pour PC / tablette / mobile */
@media (max-width: 1024px) {
  .dry-banner {
    padding: 2.2rem 2rem;
  }
}

@media (max-width: 820px) {
  .dry-banner {
    grid-template-columns: 1fr;
    padding: 2.2rem 1.7rem;
    row-gap: 1.5rem;
  }
  .dry-floating-images {
    min-height: 170px;
    margin-top: 0.5rem;
  }
  .dry-float-img {
    width: 78px;
    height: 78px;
  }
  .img-1 { top: 0%; right: 10%; }
  .img-2 { bottom: 5%; right: 0%; }
  .img-3 { top: 45%; right: 45%; }
}

@media (max-width: 520px) {
  .dry-banner {
    padding: 1.9rem 1.3rem;
    border-radius: 20px;
  }
  .dry-title {
    font-size: 1.6rem;
  }
  .dry-subtitle {
    font-size: 0.9rem;
  }
  .dry-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .dry-cta-main {
    width: 100%;
    text-align: center;
  }
}
