.highlights-section {
    padding: 0 var(--layout-gutter);
}

.highlights-section-title {
    color: var(--text-black);
    text-align: center;
    font-size: clamp(44px, 2.8vw, 52px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.6px;
}

.hightlights-container {
    display: inline-flex;
    align-items: center;
    gap: clamp(24px, 2.8vw, 40px);
    justify-content: center;
    width: 100%;
    padding-top: var(--section-inner-gap);
    /* margin-right: 80px;
    margin-left: 80px; */
}

.highlight-card-wrapper {
    background-color: lightgray;
    background-repeat: no-repeat;
    background-size: auto, cover;
    background-position: center;
    border-radius: 20.5px;
    flex: 1;
    max-width: 410px;
    height: var(--highlight-card-height);
    display: flex;
    cursor: default;
}

.highlight-card {
    width: 100%;
    border-radius: 20.5px;
    display: inline-flex;
    flex-direction: column;
    gap: 40px;
    padding: clamp(40px, 3.1vw, 60px) clamp(28px, 2.7vw, 52px) clamp(50px, 3.9vw, 75px);
}

.highlight-card:hover .highlight-text {
    opacity: 1;
    -webkit-transition: all 600ms ease-out;
    -moz-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    -ms-transition: all 600ms ease-out;
    transition: all 600ms ease-out;
}

.highlight-card:hover  {
    -webkit-transition: all 600ms ease-out;
    -moz-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    -ms-transition: all 600ms ease-out;
    transition: all 600ms ease-out;
    backdrop-filter: blur(5px);
}

/* .highlight-card:hover  {
    animation-name: highlight;
    animation-duration: 2s;
}

@keyframes highlight {
    0% {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%), url(../images/highlights/1.png), lightgray 50% / cover no-repeat;
    }
    100% {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), url(../images/highlights/1.png), lightgray 50% / cover no-repeat;
    }
} */

.highlight-title {
    color: var(--text-white);
    text-align: center;
    /* Web/H5 */
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.4px;
}

.highlight-text {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 28.8px */
    letter-spacing: 1.2px;
    display: flex;
    opacity: 0;
}

@media (max-width: 1200px) {
    .highlights-section {
        padding: 0 var(--layout-gutter);
    }

    .highlight-text {
        opacity: 1;
    }

    .highlight-card  {
        backdrop-filter: blur(5px);
    }
}

@media (max-width: 670px) {

    .hightlights-container {
      position: relative;
      padding-top: var(--section-inner-gap);
    }
  
    #highlight-prev {
      margin-top: 20px;
      margin-bottom: 40px;
      position: absolute;
      top: 100%;
      transform: translateX(-110%);
    }
  
    #highlight-next {
      margin-top: 20px;
      margin-bottom: 40px;
      position: absolute;
      top: 100%;
      transform: translateX(110%);
    }

    .highlight-title {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 1.2px;
    }

    .highlights-section {
        padding: 0 var(--layout-gutter);
    }
  }

  @media (max-width: 1440px) {
    .highlight-card {
        padding: clamp(36px, 3vw, 40px) clamp(24px, 3.6vw, 52px) clamp(44px, 5.2vw, 75px);
    }

    .highlight-title {
        font-size: 24px;
    }

    .highlight-text {
        font-size: 18px;
    }
  }
