.custom-collection-banner {
  .custom-collection-banner__container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 375/357;

    @media screen and (min-width: 1000px) {
      aspect-ratio: 1440/372;
    }

    &.no-image {
      aspect-ratio: auto;

      .custom-collection-banner__content {
        position: relative;
        transform: none;
        left: unset;
        top: unset;
        max-width: unset;
      }
    }

    .custom-collection-banner__wrapper {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .custom-collection-banner__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;

      picture {
        width: 100%;
        height: 100%;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }

    .custom-collection-banner__content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      max-width: 88vw;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }

    .custom-collection-banner__title {
      font-family: var(--heading-font-family);
      font-weight: 600;
      font-size: 36px;
      line-height: 120%;
      text-align: center;
      color: var(--background-primary);

      @media screen and (min-width: 1000px) {
        font-size: 42px;
      }
    }

    .custom-collection-banner__subtitle {
      font-weight: 400;
      font-size: 16px;
      line-height: 140%;
      text-align: center;
      color: var(--background-primary);
    }

    .custom-collection-banner__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
    }
  }
}