#case-list {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

#case-list > .title {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 4rem;
}

#case-list > .list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

#case-list > .list > .item:hover {
    color: black;
}

#case-list > .list > .item > .cover {
    object-fit: cover;
    width: 100%;
    height: 220px;
}

#case-list > .list > .item > .name {
    font-size: 1.2rem;
    margin-top: 0.7rem;
}

@media (min-width: 1024px) {
    #case-list {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    #case-list > .title {
        font-size: 4rem;
        margin-bottom: 6rem;
    }

    #case-list > .list {
        grid-template-columns: repeat(3, 1fr);
    }

    #case-list > .list > .item > .cover {
        height: 264px;
    }

    #case-list > .list > .item > .name {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

}