.grid {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    grid-auto-flow: dense;
}

.item-container {
    display: flex;
    flex-direction: column;
}

.item {
    object-fit: fit;
    height: 100%;
    max-width: 100%;
    background-color: #fff;
}

.item___detail {
    text-align: start;
    background-color: #fff;
    color: black;
    margin: 0;
    padding: 10px;
}

.item___detail > a {
    color: black;
}
