
.collection-banner {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 32px;
}

.collection-banner__content {
    width: 40%;
    background: #F8F4EE;
    padding: 60px 48px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.collection-banner__parent {
    color: #FF6A00;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 16px;
	line-height: 14px;
	font-family: inter;
}

.collection-banner__title {
    margin: 0 0 20px;

    color: #0B1D51;
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
	font-family: playfair display;
}

.collection-banner__description {
    max-width: 520px;

    color: #1A1C26;
    font-size: 18px;
    line-height: 29px;
    font-weight: 500;
	font-family: inter;
}

.collection-banner__image {
    width: 60%;
    min-height: 360px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.collection-banner__image::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 120px;
    height: 100%;

    background: linear-gradient(
        to right,
        #D9D9D900 0%,
        #F8F4EE 30%,
        rgba(248, 244, 238, 0.9) 50%,
        rgba(248, 244, 238, 0.6) 70%,
        rgba(217, 217, 217, 0) 100%
    );

    z-index: 1;
}

@media (max-width: 767px) {

	  .collection-banner__image::before {
        display: none;
    }

    .collection-banner {
        position: relative;
        display: block;
        overflow: hidden;
        /* margin-left: -15px;
        margin-right: -15px; */
        width: calc(100% + 30px);
        max-width: 100vw;
        border-radius: 0;
        margin-bottom: 10px;
    }

    .collection-banner__image {
        width: 100%;
        height: 450px;
        background-size: cover;
        background-position: unset;
        position: relative;
        border-radius: 0;
    }

    /* Large white fade from bottom */
    .collection-banner__image::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 55%;

        background: linear-gradient(
            to bottom,
            rgba(248,244,238,0) 0%,
            rgba(248,244,238,0.6) 40%,
            rgba(248,244,238,0.9) 70%,
            #F8F4EE 100%
        );
    }

    .collection-banner__content {
        width: auto;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;

        z-index: 2;

        text-align: center;
        padding: 24px;
        background: transparent;
    }

    .collection-banner__title {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 16px;
    }

    .collection-banner__description {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 20px;
    }

    .collection-banner__parent {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
		line-height: 18px;
		order: 3;
    }
}