.ro-home-header{
  height:auto;
  padding: var(--ro-space-12);
  background-color: var(--ro-champ-100);
  border: var(--ro-size-1) solid var(--ro-champ-100);
}

.ro-home-head-1{
    font-family: var(--ro-font-heading);
    font-size: var(--ro-font-size-head-S);  
    font-weight: var(--ro-font-weight-bold);  
}

.ro-home-head-2{
    font-family: var(--ro-font-body);
    font-size: var(--ro-font-size-head-S);  
    font-weight: var(--ro-font-weight-medium);  
}

@media(max-width:440px){
    .ro-explorer{
        padding: 60px;
    }
    .ro-results{
        padding: var(--ro-space-16);
    }
}

/* ===========================================================
   HOME Info — hero
=========================================================== */

.ro-home-hero{
  position: relative;
  overflow: hidden;
  border-radius: var(--ro-radius-16);
  padding: var(--ro-space-8);
  margin: var(--ro-space-16);
}

.ro-home-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ro-home-hero-rainbow{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ro-home-hero-rainbow--mobile{
  display: none;
}

@media (max-width: 768px){
  .ro-home-hero-rainbow{
    object-fit: fill;
  }

  .ro-home-hero-rainbow--desktop{
    display: none;
  }

  .ro-home-hero-rainbow--mobile{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
}

.ro-home-hero__inner{
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ro-space-8);
  background: var(--ro-bg-0);
  border-radius: var(--ro-radius-8);
  padding: var(--ro-space-8);
}

.ro-home-hero__text_content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--ro-space-8);
  flex: 1 1 auto;
  min-width: 0;
}

.ro-home-hero__title{
  margin: 0;
  color: var(--ro-dolphing-700);
}

.ro-home-hero__title span{
  font-weight: var(--ro-font-weight-bold);
}

.ro-home-hero__text{
  margin: 0;
  color: var(--ro-neutral-800);
}

.ro-home-hero__text span{
  font-weight: var(--ro-font-weight-bold);
}

.ro-home-hero__pilier_container{
  display: flex;
  align-items: stretch;
  gap: var(--ro-space-8);
  flex: 0 0 auto;
}

.ro-home-hero__pilier{
  min-width: 7.25rem;
  min-height: 5.5rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--ro-space-6);

  border-radius: var(--ro-radius-8);
  padding: var(--ro-space-10);
  text-align: center;
}

.ro-home-hero__pilierIcon{
  line-height: 1;
}

.ro-home-hero__pilierIcon svg{
  display: block;
  width: 1.75rem;
  height: 1.75rem;
}

.ro-home-hero__pilierLabel{
  font-size: var(--ro-font-size-s);
  font-weight: var(--ro-font-weight-bold);
  line-height: 1.2;
}

.ro-pilier-iconPapaw > .ri-star-fill{
  font-size: 1.6rem;
}

.ro-pilier-dolphing{ background: var(--ro-dolphing-100); }
.ro-pilier-papaw{ background: var(--ro-papaw-100); }
.ro-pilier-champ{ background: var(--ro-champ-100); }

.ro-pilier-labelDolphing{ color: var(--ro-dolphing-700); }
.ro-pilier-labelPapaw{ color: var(--ro-papaw-700); }
.ro-pilier-labelChamp{ color: var(--ro-champ-700); }

.ro-pilier-iconDolphing{ color: var(--ro-dolphing-500); }
.ro-pilier-iconPapaw{ color: var(--ro-papaw-500); }
.ro-pilier-iconChamp{ color: var(--ro-champ-500); }

@media (max-width: 768px){
  

  .ro-home-hero__inner{
    flex-direction: column;
    align-items: stretch;
    gap: var(--ro-space-12);
  }

  .ro-home-hero__text_content{
    align-items: center;
    text-align: center;
  }

  .ro-home-hero__pilier_container{
    justify-content: center;
    gap: var(--ro-space-8);
  }

  .ro-home-hero__pilier{
    min-width: 0;
    flex: 1 1 0;
    min-height: 5rem;
  }
}