<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section.explore-our-collections {
    position: relative;
    width: 100%;
    display: flex;
    /*justify-content: flex-start;*/
    align-items: stretch;
    flex-direction: row-reverse;

    padding: 0 5%;
    gap: 4rem;
    margin-bottom: 2rem;
}

section.explore-our-collections .left-column,
section.explore-our-collections .right-column {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    /*border: 1px solid red;*/
}


.collection-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    cursor: pointer;
    /*border: 1px dotted blue;*/

}

.collection-item .collection-item__image img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.collection-item__text-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 5% 3rem;

    /*border: 1px solid green;*/
}

.collection-item__text-container .desktop-only {
    display: inline-block;
}

h2.collections-header,
.collection-item__text-container h3 {
    position: relative;
    font-family: freight-big-pro, serif;
    font-size: clamp(2.5rem, calc(3vw + .5rem), 3.125rem);
    line-height: 0.8;
    margin: 0.1em 0 0.3em 0;
    /*border: 1px solid orange;*/

}

.collection-item__text-container h3 sup {
    top: -50%;
    font-size: 0.4em;
}

@media screen and (max-width: 768px) {
    .collection-item__text-container h3 sup {
        top: -1em;
    }
}



h2.collections-header {
    font-size: 2rem;
    margin: 0 auto 2rem;
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;

}

.collection-item__text-container p {
    font-family: "minion-pro", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.0625rem;
    line-height: 1.5;
    letter-spacing: normal;
    margin: 0;

}

.collection-item__text-container a.collection-item__link {
    font-family: "proxima-nova", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;

    font-size: 0.9375rem;
    line-height: 1;
    color: #000;
    border-bottom: 1px solid #000;
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {

    section.explore-our-collections {
        position: relative;
        scroll-snap-type: x mandatory;
        overflow-y: hidden;
        overflow-x: scroll;
        display: flex;
        scroll-behavior: smooth;
        gap: 10px;

        flex-direction: row;
        /*border: 1px solid red;*/

        padding-left: 10%;
        margin-bottom: 0;

    }

    section.explore-our-collections::-webkit-scrollbar {
        width: 0px;
    }

    section.explore-our-collections .left-column,
    section.explore-our-collections .right-column {
        width: fit-content;
        flex-direction: row;
        gap: 10px;
    }

    .collection-item {
        width: 83vw;
        justify-content: flex-start;
        scroll-snap-align: center;
        scroll-snap-type: x mandatory;
    }

    /*.collection-item__text-container h3 sup {
top: -15%;
}*/

    .collection-item__text-container {
        padding: 1rem 1.5rem;
    }

    .collection-item__text-container .desktop-only {
        display: none;
    }


}</pre></body></html>