

 .render-modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   padding: 24px;
   z-index: 9999;
   margin-top: 0px !important;
   
}

.render-modal__title{
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #0C1E1E;
}
 .render-modal[aria-hidden="false"] {
   display: flex;
 }

 .render-modal__overlay {
   position: absolute;
   inset: 0;
   background: rgba(1, 22, 24, 0.62);
   backdrop-filter: blur(4px);
 }

 .render-modal__dialog {
   position: relative;
   z-index: 1;
   width: 100%;
   max-width: 420px;
   max-height: calc(100vh - 48px);
   overflow-y: auto;
   scrollbar-width: none;
   -ms-overflow-style: none;
   background: #eef5f4;
   border-radius: 18px;
   padding: 20px 20px 28px;
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
 }

 .render-modal__dialog::-webkit-scrollbar {
  display: none;
}


 .render-modal__close {
   position: absolute;
    top: 10px;
    right: 9px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #d9eeef;
    color: #143739;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
 }

 .render-modal__image-wrapper {
   margin-bottom: 20px;
   border-radius: 10px;
   overflow: hidden;
 }

 .render-modal__image {
    display: block;
    width: 100%;
    height: 376px;
    object-fit: contain;
 }

 .render-modal__content {
   padding: 0 8px;
   color: #102b2d;
 }

 .render-modal__description {
   color: #4F5b60;
   font-size: 18px;
   font-weight: 400;
   letter-spacing: 0px;

 }

 .render-modal__description p:last-child {
   margin-bottom: 0;
 }

 body.render-modal-open {
   overflow: hidden;
 }

 .b-jovenes-promotion-carousel__slide--modal-trigger {
   border: none;
   background: transparent;
   text-align: left;
   cursor: pointer;
 }
 .b-jovenes-featured-category__actions--modal-trigger {
    appearance: none;
    border: 0;
    background: transparent;
    font: inherit;
    color: inherit;
    text-align: inherit;
    padding: 0;
    width: 100%;
    cursor: pointer;
    width: 100%;
    border: none;
    display: inline-flex;
    padding-inline: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    text-decoration-color: var(--color-neutral-300); 
 }

 .b-jovenes-featured-category__actions--modal-trigger .b-jovenes-featured-category__read-more{
    color: var(--color-neutral-300);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.75rem;
    letter-spacing: 0;
    flex-grow: 1;
  
 }

 @media (max-width: 575px) {
   .render-modal {
     padding: 16px;
   }

   .render-modal__dialog {
     padding: 16px 16px 24px;
     border-radius: 16px;
   }
 }

