.is-card {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    margin-bottom: 3em;
}

@media screen and (max-width: 990px) {
    .is-card {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
}

.is-fluid {
    display: block;
    width: 100%;
    height: auto;
}

.is-card-body {
    grid-column: span 7;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.is-card-img,
.is-card-vid {
    grid-column: span 5;
    box-shadow: 0px 0px 15px grey;
    max-height: 18rem;
    object-fit: cover;
}

.is-card-vid {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.is-card-vid iframe {
    position: absolute;
    border: 0;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
}

.is-title {
    text-decoration: underline;
}

.is-title a {
    text-decoration: none;
}

.is-title a[href] {
    text-decoration: underline;
}

@media only screen and (max-width: 990px) {
    .is-card-img,
    .is-card-vid,
    .is-card-body {
        grid-column: span 12;
    }
}
