/* Greysole Looks: product -> related looks. Structural styles only. */
.greysole-product-looks {
    width: 100%;
    min-width: 0;
}

.greysole-product-looks__title {
    margin: 0 0 1.25rem;
}

.greysole-product-looks__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.greysole-product-look {
    min-width: 0;
    margin: 0;
}

.greysole-product-look__image {
    display: block;
    width: 100%;
    overflow: hidden;
}

.greysole-product-look__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.greysole-product-look__body {
    padding-top: .75rem;
}

.greysole-product-look__occasion {
    margin-bottom: .35rem;
    font-size: .75em;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .7;
}

.greysole-product-look__title {
    margin: 0;
    font-size: inherit;
    line-height: 1.35;
}

.greysole-product-look__title a {
    color: inherit;
    text-decoration: none;
}

.greysole-product-look__excerpt {
    margin: .5rem 0 0;
}

@media (max-width: 767px) {
    .greysole-product-looks__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .greysole-product-look__excerpt {
        display: none;
    }
}
