.grid {
    max-width: 100rem;
    margin: 10px auto;
    padding: 10px;
}

.grid-title {
    color: #fff;
    margin-bottom: 2rem;
}

.grid-items {
    display: flex;
    flex-wrap: wrap;
}

.grid-item {
    flex: 1 0 24rem;
    background: #fff;
    margin: 1rem;
    border-radius: 2px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 250px;
    font-size: 2rem;
    overflow: hidden;
    cursor: pointer;
}

.grid-item:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.grid-item__content {
    padding: 1rem;
    height: 2em;
    max-height: 2em;
    overflow: hidden;
}

.grid-item__content--title {
    font-size: .8rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    text-align: center;
    color: black;
    line-height: 1.2em;
    text-transform: capitalize;
}

.grid-item__content--body {
    color: #999;
    font-size: 1rem;
}

.grid-item__image {
    margin-top: .2em;
}

.grid-item__image--img {
    margin: 0 auto;
    width: 14rem;
    height: 8rem;
    background-position: center;
    background-size: cover, contain;
    background-repeat: no-repeat;
}

@supports (display: grid) {
    .grid-items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        grid-gap: 1rem;
    }
    .grid-item {
        margin: 0;
    }
}

.grid_section--title {
    font-size: 21px;
    font-weight: 600;
}

.grid_section--href {
    font-size: 14px;
    font-weight: 400;
    margin-left: 1.6em;
}