


.promo_con{
    background-color: #FFF;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2) !important;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2)  !important;
    -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.2)  !important;
    border-radius: 10px;

   

    width: calc(100% - 0px);
    max-width: 980px; 
    margin: 0 auto;
    display: table;
    position: relative;
   
    /* padding: 50px; */
    min-height: 450px;

    /* border: 50px solid #fff;   */
    /* border: 40px solid #fff; */
    


}

.promo_logo{
  min-height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}

.promo_con .promo_con_inner{
  display: table;
/* margin: 50px; */
 position: relative;
 width: 100%;
  box-sizing: border-box;
  min-height: 450px; /*New */
  /* min-height: 300px;
  height: 400px !important; */

   
}

.promo_con .promo_image{
    width: 70%;
    position: absolute;
  
     top: 0;
  right: 0;
    height: 100%;
     min-height: 450px; /*New */
  
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    background-image: url('../assets/2025/temp_1.png');
    background-size: cover;
     box-sizing: border-box;
}



.promo_con .promo_details{
  position: absolute;
  z-index: 8;
  width: 100%;
  max-width: 300px;
  top: 80px;
  left: 100px;
  display: table;
  box-sizing: border-box;
}


.promo_con .btn_1{
  position: absolute;
  z-index: 8;
  bottom: 10px;
  right: 20px;
}


.promo_con .promo_title{
    /* font-size: 40px; */
    font-size: clamp(24px, 5vw, 40px); 
    font-family: var(--font-primary-bold);
    color: var(--colour-secondary);
    margin-bottom: 20px;

    display: -webkit-box;   
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;     
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo_con .promo_copy{
   font-size: clamp(16px, 3vw, var(--font-size-med));
    font-family: var(--font-primary-bold);
    color: #FFF;
    margin-bottom: 20px;

       display: -webkit-box;      
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;    
    overflow: hidden;
    text-overflow: ellipsis;
}


.promo_con .promo_copy b, .promo_con .promo_copy strong{
  color: #F2BA00 !important;
}

.promo_con .promo_gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;

   min-height: 450px; /*New */
 
  box-sizing: border-box;
  /* multi-stop gradient: start with 3D204A then 4C235C, fade to transparent */
  background: linear-gradient(
    to right,
    #3D204A 0%,       /* start fully opaque left */
    #4C235C 44%,      /* mid-point colour */
    rgba(76, 35, 92, 0)100%  /* fade out to transparent right */
  );
  border-radius: 10px 0 0 10px; /* match image corner radius if needed */
  z-index: 2;
  pointer-events: none;  /* allow clicks through */
}





/* Stack slides on top of each other */
.promo_con_inner.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;              /* stretch to parent width minus padding */
  bottom: 0;             /* stretch to parent height minus padding */
  width: 100%;
   height: 100%;
  opacity: 0;

  pointer-events: none;
  transition: opacity 1s ease;
}

/* Active slide */
.promo_con_inner.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Text animation: move down slightly when appearing */
.promo_details {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  z-index: 3;
}

.promo_con_inner.slide.active .promo_details {
  transform: translateY(0);
  opacity: 1;
}


/* Buttons */
.promo_prev,
.promo_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  cursor: pointer;
  

  

  /* background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  
  border-radius: 5px; */
}

.promo_prev:hover,
.promo_next:hover {
  background-color: rgba(255, 255, 255, 0.2); /* semi-transparent white */
  backdrop-filter: blur(6px); /* adjust px for strength of blur */
  -webkit-backdrop-filter: blur(6px); /* Safari support */
  border-radius: 4px; /* optional rounded corners */
  transition: all 0.3s ease; /* smooth hover effect */

  
}
.promo_prev {
  left: 20px;
  background-image: url("data:image/svg+xml,<svg width='9' height='15' viewBox='0 0 9 15' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L7.5 7.88235L1 14' stroke='white' stroke-width='1.52941' stroke-linecap='round'/></svg>");
  background-size: 10px !important;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center center;
  
}
.promo_next { right: 20px; 
background-image: url('data:image/svg+xml,<svg width="9" height="15" viewBox="0 0 9 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7.5 7.88235L1 14" stroke="white" stroke-width="1.52941" stroke-linecap="round"/></svg>')
;
background-size: 10px !important;
  
}



@media only screen and (max-width: 680px) {

.promo_con{
  min-height: 450px;
  position: relative;
}

  .promo_con .promo_gradient {
  position: absolute;
  top: 0;
  /* bottom: 0 !important; */
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
   min-height: 450px; /*New */

  background: linear-gradient(
    to top,
    #3D204A 0%,       
    #4C235C 44%,     
    rgba(76, 35, 92, 0)100%  
  );
  border-radius: 10px 0 0 10px; 
  z-index: 2;
  pointer-events: none;  
  border-radius: 10px;
}


.promo_con .promo_image{
    width: 100%;
    position: absolute;
  
     top: 0;
  right: 0;
    height: 70%;

      min-height: 300px

} 

.promo_prev{
left: -10px;
}

.promo_next{
right: -10px;
}

.promo_con .promo_details {
    position: absolute;
    z-index: 8;
    width: 100%;
    max-width: 300px;
    top: 220px;
    /* bottom: 100px; */
    left: 48px;
    display: table;
    box-sizing: border-box;
}

.promo_con_inner.has_logo .promo_details{
top: 160px;
}

.promo_con_inner{
  position: relative;
   min-height: 450px;   
}
.promo_con .btn_1{
  position: absolute;
  z-index: 10;
  bottom: 20px !important;

}

}