.explore-banner-v2-wrapper {
  overflow: hidden;
}

.explore-banner-v2 .component-container {
  background: var(--primary-main);
  width: 100%;
  min-height: 614px;
  display: flex;
  flex-direction: column;
  position: relative;

  .text_container {
    padding-bottom: 40px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    z-index: 10;

    .component-title,
    .component-subtitle {
      margin: 0;
      color: var(--Primary-Variations-Tertiary, #fff);
      font-feature-settings: "liga" off, "clig" off;
      font-family: var(--body-font-family);
      font-size: 2rem;
      font-style: normal;
      font-weight: 700;
      line-height: 2.375rem;
      @media (width >=1024px) {
        line-height: 2.5rem;
      }
    }

    .component-description {
      margin-top: 8px;
      color: var(--Primary-Variations-Tertiary, #fff);
      font-feature-settings: "liga" off, "clig" off;
      font-family: var(--body-font-arena);
      font-size: 12px;
      font-style: normal;
      font-weight: 300;
      line-height: 1rem;    
      @media (width >=1024px) {
        font-size: 0.875rem;
        line-height: 1.25rem;
      }
    }

    .cta-action {
      display: flex;
      margin-top: 24px;
    }

    .cta-btn {
      display: flex;
      flex-direction: row;
      gap: 12px;
      width: 100%;
      @media(width >= 1366px) {
        gap: 16px;
      }
      .cta__new-primary {
        color: var(--neutrals-sub-texts-paragraphs, #000);
        font-feature-settings: "liga" off, "clig" off;
        font-family: var(--body-font-arena);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        width: fit-content;
        height: 34px;
        padding: 8px 15px;
        background: var(--Primary-Variations-Tertiary, #fff);
        @media (width >=1024px) {
          font-size: 0.75rem;
        }
        &::after {
          display: none;
        }
      }

      .cta__new-outlined {
        color: var(--Primary-Variations-Tertiary, #fff);
        font-feature-settings: "liga" off, "clig" off;
        font-family: var(--body-font-arena);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        width: fit-content;
        height: 34px;
        padding: 8px 16px;
        border: 1px solid var(--Primary-Variations-Tertiary, #fff);
        @media (width >=1024px) {
          font-size: 0.75rem;
        }
      }     
    }
  }

  .logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    @media(width >= 1366px) {
      margin-bottom: 24px;
    }
    img {
      height: 32px;
      display: block;
      max-width: 146px;
      object-fit: contain;
      @media(width >= 1366px) {
        height: 40px;
        max-width: 200px;
      }
    }
  }

  .image-container {
    position: relative;
    height: 100%;
    flex-direction: column;

    img {
      width: 100%;
      height: 620px;
      position: relative;
      z-index: 0;
    }
  }

  .image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(20deg,
        rgba(1, 4, 75, 0.6) 22.06%,
        rgba(1, 4, 75, 0) 73.26%);
    z-index: 1;
  }

  .explore-banner-desktop {
    display: none;
  }

  .explore-banner-mobile {
    display: block;
  }

  .banner-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 614px;

    &::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(80deg, rgba(1, 4, 75, 0.60) 37.06%, rgba(1, 4, 75, 0.00) 73.26%);
    }
  }
}

@media (width >=768px) {
  .explore-banner-v2 .component-container {
    min-height: 432px;

    .banner-img {
      aspect-ratio: 16/9;
      min-height: 432px;
    }

    .text_container {
      width: auto;

      .component-title,
      .component-subtitle {
        font-size: 32px;
        line-height: 38px;
      }

      .component-description {
        font-size: 16px;
        font-weight: 300;
        line-height: 20px;
        margin-top: 16px;
      }

      .cta-action {
        margin-top: 0;

        .cta-btn {
          flex-direction: row;
          margin-top: 24px;

          .cta__new-primary {
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 18px;
            padding: 12px 24px;
            height: 42px;
          }

          .cta__new-outlined {
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 18px;
            width: max-content;
            height: 42px;
            padding: 12px 24px;

            &::before {
              height: 42px;
              left: -6px;
            }

            &::after {
              height: 42px;
              right: -7px;
            }
          }
        }
      }
    }

    .logo-container {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 164px;
      max-height: 63px;
    }

    .image-container {
      text-align: right;

      img {
        width: 100%;
        height: 715px;
      }
    }

    .explore-banner-desktop {
      display: block;
    }

    .explore-banner-mobile {
      display: none;
    }
  }
}

@media (width >=1024px) {
  .explore-banner-v2 .component-container {
    .text_container {
      padding-left: 56px;
      padding-right: 56px;
      justify-content: center;
    }
  }
}
