.collections {
    width: 80%;
    margin: auto;
    margin-top: 188px;
    margin-bottom: 128px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 32px;

    align-content: center;
    justify-content: space-around;

    align-items: stretch;
    justify-items: stretch;
}

.collection {
    /* padding: 12px; */
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.05);
    color: #495057;
    transition: 0.1s;
    cursor: pointer;
}

.collection:hover {
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.08);
    color: #343a40;
}

.collection:active {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.collection img {
    width: 100%;
    height: auto;
}

.collection-text {
    padding: 12px;
    padding-top: 0;
}

.collection-title {
    font-size: 20px;
    margin-top: 16px;
    margin-bottom: 12px;
}

.collection-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #868e96;
}

@media screen and (max-width: 800px) {
    .collections {
        grid-template-columns: 1fr;
        margin-top: 108px;
        width: 90%;
    }
}
