.dp-pro-banners{
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
  margin-top:36px;
}

/* =====================================================
   BASE BANNERS
===================================================== */
.dp-pro-banner{
  position:relative;
  min-height:236px;
  border-radius:30px;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(circle at 16% 18%, rgba(221,177,91,.10), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(221,177,91,.06), transparent 18%),
    linear-gradient(160deg, #060708 0%, #0b0c0f 48%, #13100d 100%);
  box-shadow:
    0 30px 70px rgba(0,0,0,.20),
    0 10px 24px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.dp-pro-banner::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 24% 30%, rgba(255,223,156,.10) 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 66%, rgba(255,223,156,.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 52% 82%, rgba(255,223,156,.06) 0 1px, transparent 1.5px);
  background-size:180px 180px, 240px 240px, 300px 300px;
  opacity:.16;
}

.dp-pro-banner__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1);
  transition:
    transform .9s cubic-bezier(.22,.61,.36,1),
    filter .35s ease;
  filter:brightness(.74) contrast(1.05) saturate(1.03);
}

.dp-pro-banner__bg--fallback{
  background:
    radial-gradient(circle at 70% 20%, rgba(255,206,118,.16), transparent 18%),
    linear-gradient(145deg, #16110d 0%, #090909 100%);
}

.dp-pro-banner:hover .dp-pro-banner__bg{
  transform:scale(1.055);
  filter:brightness(.68) contrast(1.07) saturate(1.06);
}

.dp-pro-banner__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 74% 20%, rgba(255,214,137,.14), transparent 18%),
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.16) 18%, rgba(0,0,0,.30) 56%, rgba(0,0,0,.74) 100%),
    linear-gradient(90deg, rgba(5,7,10,.84) 0%, rgba(7,9,12,.68) 36%, rgba(7,9,12,.28) 68%, rgba(7,9,12,.16) 100%);
}

.dp-pro-banner__overlay::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(245,223,173,.08), rgba(245,223,173,0) 26%, rgba(245,223,173,.04) 100%);
}

.dp-pro-banner__overlay::after{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:24px;
  border:1px solid rgba(245,223,173,.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 0 0 1px rgba(245,223,173,.04);
  pointer-events:none;
}

.dp-pro-banner__inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  min-height:236px;
  padding:30px 32px;
}

.dp-event-price-badge{
  position:absolute;
  z-index:3;
  top:18px;
  right:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 18px;
  border-radius:999px;
  color:#fff;
  font-size:12px;
  line-height:1;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:0;
  border:1px solid rgba(255,255,255,.24);
  box-shadow:0 14px 30px rgba(0,0,0,.24);
}

.dp-event-price-badge.is-free{
  background:linear-gradient(180deg, #27b56b 0%, #117a43 100%);
}

.dp-event-price-badge.is-paid{
  background:linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
}

.dp-pro-banner__content{
  max-width:700px;
  color:#fff;
}

.dp-pro-banner__title{
  margin:0 0 8px;
  color:#f8f1e7;
  font-size:clamp(30px, 3.2vw, 48px);
  line-height:.95;
  font-weight:900;
  letter-spacing:-.05em;
  text-transform:uppercase;
  text-shadow:0 16px 40px rgba(0,0,0,.32);
  text-wrap:balance;
}

.dp-pro-banner__metier{
  margin-bottom:14px;
  color:rgba(248,241,231,.90);
  font-size:clamp(17px, 1.45vw, 24px);
  line-height:1.2;
  font-weight:700;
  letter-spacing:-.02em;
  text-shadow:0 6px 18px rgba(0,0,0,.22);
}

.dp-pro-banner__city{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  padding:11px 18px;
  border-radius:999px;
  background:
    linear-gradient(180deg, rgba(86,63,16,.60) 0%, rgba(34,27,12,.58) 100%);
  border:1px solid rgba(221,177,91,.34);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:#f5dfad;
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 14px 24px rgba(0,0,0,.14);
}

.dp-pro-banner__city-icon{
  display:inline-flex;
  width:16px;
  height:16px;
  color:#f5dfad;
}

.dp-pro-banner__city-icon svg{
  width:100%;
  height:100%;
  fill:currentColor;
}

.dp-pro-banner__city-text{
  display:inline-block;
}

.dp-pro-banner__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.dp-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:#f8f1e7;
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 20px rgba(0,0,0,.14);
}

.dp-badge__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  flex:0 0 16px;
}

.dp-badge__icon svg{
  width:100%;
  height:100%;
  fill:currentColor;
}

.dp-badge--local{
  color:#f5dfad;
  background:linear-gradient(180deg, rgba(86,63,16,.60) 0%, rgba(34,27,12,.58) 100%);
  border-color:rgba(221,177,91,.34);
}

.dp-badge--open{
  color:#d7ffee;
  background:linear-gradient(180deg, rgba(24,115,72,.72) 0%, rgba(12,72,44,.68) 100%);
  border-color:rgba(92,214,164,.34);
}

.dp-badge--closed{
  color:#ffe1e1;
  background:linear-gradient(180deg, rgba(138,31,31,.72) 0%, rgba(82,21,21,.68) 100%);
  border-color:rgba(248,113,113,.32);
}

.dp-badge--verified{
  color:#d7eaff;
  background:linear-gradient(180deg, rgba(28,45,68,.60) 0%, rgba(16,25,40,.58) 100%);
  border-color:rgba(126,176,255,.24);
}

.dp-badge--trust{
  color:#d7ffee;
  background:linear-gradient(180deg, rgba(18,58,44,.60) 0%, rgba(10,36,27,.58) 100%);
  border-color:rgba(92,214,164,.24);
}

.dp-badge--confidence{
  color:#ffe2b5;
  background:linear-gradient(180deg, rgba(92,52,16,.60) 0%, rgba(40,24,10,.58) 100%);
  border-color:rgba(234,166,87,.24);
}

.dp-pro-banner__side{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:18px;
  min-width:210px;
  text-align:right;
}

.dp-pro-banner__logo-wrap{
  display:flex;
  justify-content:flex-end;
  width:100%;
}

.dp-pro-banner__logo{
  width:94px;
  height:94px;
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(245,223,173,.18);
  box-shadow:
    0 18px 36px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.dp-pro-banner__logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.dp-pro-banner__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  min-width:200px;
  padding:0 28px;
  border-radius:999px;
  text-decoration:none;
  background:
    linear-gradient(180deg, #f5dfad 0%, #ddb15b 58%, #ae7423 100%);
  color:#17120d;
  border:1px solid rgba(245,223,173,.30);
  font-size:16px;
  font-weight:900;
  letter-spacing:-.02em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    0 18px 34px rgba(174,116,35,.24);
  transition:
    transform .22s ease,
    filter .22s ease,
    box-shadow .22s ease;
}

.dp-pro-banner__btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.74),
    0 22px 38px rgba(174,116,35,.28);
}

.dp-pro-banner__btn:focus-visible{
  outline:2px solid rgba(245,223,173,.55);
  outline-offset:3px;
}

.dp-no-result{
  padding:28px;
  border-radius:18px;
  background:#f6f7f9;
  text-align:center;
  color:#2f3440;
}

/* =====================================================
   HEADER HOME
===================================================== */
.dp-home-banners-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:0 0 18px;
}

.dp-home-banners-head__title{
  font-size:28px;
  font-weight:800;
  color:#1f2430;
}

.dp-home-banners-head__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-size:16px;
  font-weight:800;
  color:#1a1d23;
  background:linear-gradient(180deg,#f7df8b 0%, #edc95d 46%, #d9a92e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.52),
    0 10px 24px rgba(0,0,0,.18);
}

/* =====================================================
   MORE BUTTON
===================================================== */
.dp-pro-banners-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:24px;
}

.dp-pro-banners-more{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  font-size:16px;
  font-weight:900;
  color:#17120d;
  background:linear-gradient(180deg,#f5dfad 0%, #ddb15b 58%, #ae7423 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    0 18px 34px rgba(174,116,35,.22);
  transition:transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.dp-pro-banners-more:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.74),
    0 22px 38px rgba(174,116,35,.28);
}

/* =====================================================
   EVENT SPECIFICS
===================================================== */
.dp-event-banner .dp-pro-banner__content{
  align-self:stretch;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.dp-event-banner .dp-event-banner__infos{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:auto;
  padding-top:18px;
}

.dp-event-banner .dp-pro-banner__badges + .dp-pro-banner__badges{
  margin-top:14px;
}

.dp-event-banner .dp-badge{
  min-height:42px;
  padding:0 15px;
  font-size:14px;
}

.dp-event-banner .dp-pro-banner__logo{
  width:88px;
  height:88px;
}

/* =====================================================
   TABLETTE
===================================================== */
@media (max-width: 980px){
  .dp-pro-banner{
    min-height:250px;
    border-radius:26px;
  }

  .dp-pro-banner__inner{
    min-height:250px;
    padding:24px 22px;
    gap:22px;
    align-items:flex-end;
  }

  .dp-pro-banner__content{
    max-width:100%;
  }

  .dp-pro-banner__title{
    font-size:clamp(28px, 4.2vw, 38px);
  }

  .dp-pro-banner__metier{
    font-size:18px;
  }

  .dp-pro-banner__city{
    font-size:13px;
    padding:10px 15px;
  }

  .dp-badge{
    min-height:38px;
    padding:0 13px;
    font-size:13px;
  }

  .dp-pro-banner__side{
    min-width:170px;
    align-items:flex-end;
  }

  .dp-pro-banner__logo{
    width:78px;
    height:78px;
    border-radius:20px;
  }

  .dp-pro-banner__btn{
    min-width:176px;
    min-height:50px;
    font-size:15px;
    padding:0 20px;
  }

  .dp-home-banners-head{
    justify-content:center;
    text-align:center;
  }

  .dp-home-banners-head__btn{
    margin:0 auto;
  }
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 767px){
  .dp-pro-banners{
    gap:18px;
    margin-top:28px;
  }

  .dp-pro-banner{
    min-height:auto;
    border-radius:24px;
  }

  .dp-pro-banner::before{
    opacity:.12;
  }

  .dp-pro-banner__overlay{
    background:
      radial-gradient(circle at 76% 16%, rgba(255,214,137,.10), transparent 18%),
      linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.22) 18%, rgba(0,0,0,.56) 54%, rgba(0,0,0,.90) 100%);
  }

  .dp-pro-banner__overlay::after{
    inset:10px;
    border-radius:20px;
  }

  .dp-pro-banner__inner{
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;
    min-height:370px;
    padding:18px 16px 16px;
    gap:16px;
  }

  .dp-event-price-badge{
    top:12px;
    right:12px;
    min-height:34px;
    padding:0 14px;
    font-size:11px;
  }

  .dp-pro-banner__content{
    max-width:100%;
    text-align:left;
  }

  .dp-pro-banner__title{
    margin-bottom:8px;
    font-size:28px;
    line-height:.98;
  }

  .dp-pro-banner__metier{
    margin-bottom:14px;
    font-size:17px;
  }

  .dp-pro-banner__city{
    margin-bottom:14px;
    padding:9px 13px;
    font-size:12px;
  }

  .dp-pro-banner__badges{
    gap:8px;
  }

  .dp-badge{
    min-height:36px;
    padding:0 12px;
    font-size:12px;
    gap:7px;
  }

  .dp-badge__icon,
  .dp-badge__icon svg{
    width:14px;
    height:14px;
  }

  .dp-pro-banner__side{
    width:100%;
    min-width:0;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    text-align:left;
  }

  .dp-pro-banner__logo-wrap{
    width:auto;
    justify-content:flex-start;
  }

  .dp-pro-banner__logo{
    width:68px;
    height:68px;
    border-radius:18px;
  }

  .dp-pro-banner__btn{
    min-width:auto;
    min-height:44px;
    padding:0 16px;
    font-size:14px;
    white-space:nowrap;
  }

  .dp-home-banners-head{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
  }

  .dp-home-banners-head__title{
    font-size:22px;
  }

  .dp-home-banners-head__btn{
    margin:0 auto;
    min-height:42px;
    padding:0 18px;
    font-size:14px;
  }

  .dp-pro-banners-more{
    min-height:46px;
    padding:0 20px;
    font-size:14px;
  }

  .dp-event-banner .dp-event-banner__infos{
    gap:10px;
    margin-top:auto;
    padding-top:14px;
  }

  .dp-event-banner .dp-pro-banner__badges + .dp-pro-banner__badges{
    margin-top:10px;
  }
}
