.custom-collection-hero {
  padding: 0 var(--side-padding);
  margin: 0 auto;

  .custom-collection-hero-inner {
    width: 100%;
    max-width: 1300px;
    border-radius: 8px 8px 0px 0px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-inline: auto;

    @media screen and (max-width: 749px) {
      background-position: left;
    }

    .custom-collection-hero-content {
      width: 50%;
      height: 100%;
      display: flex;
      flex-direction: column;
      row-gap: 16px;

      @media screen and (max-width: 749px) {
        width: 100%;
      }

      * {
        margin: 0;
      }

      .custom-collection-hero-title {
        color: var(--fernet-white);
        font-family: "interstate-condensed";
        font-size: 64px;
        font-style: normal;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        
        @media screen and (max-width: 1200px) {
          font-size: 50px;
        }

        @media screen and (max-width: 989px) {
          font-size: 40px;
        }

        @media screen and (max-width: 835px) {
          font-size: 38px;
        }

        @media screen and (max-width: 749px) {
          font-size: 36px;
        }
        @media screen and (max-width: 360px) {
          font-size: 32px;
        }
      }

      .custom-collection-hero-description {
        color: var(--fernet-white);
        font-family: "interstate-condensed";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 145%;
        letter-spacing: 0.05em;
        margin: 0;
        max-width: 749px;

        a {
          color: var(--fernet-white);
          text-decoration: underline;
        }

        @media screen and (max-width: 989px) {
          font-size: 16px;
        }

        @media screen and (max-width: 749px) {
          font-size: 14px;
        }
      }

      .custom-collection-hero-link {
        width: 230px;
        height: 48px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;

        .btn-text {
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          border: 1px solid var(--fernet-white);
          box-shadow: none;
          background-color: var(--fernet-black);
          color: var(--fernet-white);
          font-family: "interstate-condensed";
          font-size: 18px;
          font-style: normal;
          font-weight: 800;
          line-height: normal;
          letter-spacing: 0.08em;
          text-align: center;
          text-transform: uppercase;
          cursor: pointer;
          z-index: 1;
        }

        .btn-bg {
          content: "";
          position: absolute;
          top: 4px;
          left: 4px;
          width: 230px;
          height: 48px;
          border: none;
          outline: none;
          box-shadow: none;
          background-image: url('btn-bg-gold.webp');
          z-index: 0;
          transition: all 0.2s ease-in-out;
        }

        .btn-text:hover {
          background-color: var(--default-black);

          & + .btn-bg {
            top: 2px;
            left: 2px;
          }
        }
      }
    }
  }
}

body#collections_lowkey {
  .custom-collection-hero {
    .custom-collection-hero-inner {
      .custom-collection-hero-content {
        height: 70%;
      }
    }
  }
}

body#collections_holiday-sweater {
  .custom-collection-hero {
    .custom-collection-hero-inner {
      .custom-collection-hero-content {
        height: 55%;

        @media screen and (max-width: 375px) {
          height: 70%;
        }
      }
    }
  }
}