.wrapper {
    width: 100%;
    display: grid;
    grid-template-rows: 200px 1fr;
    grid-template-columns: 1fr;
    background: #000;
    min-height: 300px;

    /* display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-end; */
}

.description {
    color: #FFF;
    padding: 1rem;
    overflow: hidden;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.description h2 {
    width: 100%;
    font-family: Lustria;
    font-size: 1.15rem;
}

.description p,
.description h2 {
    margin-bottom: 12px;

}

.description a {
    padding-bottom: 12px;
}

.description h2 {
    display: -webkit-box;
    vertical-align: middle;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.description a {
    color: var(--green-strong);
    font-weight: 300;
    text-decoration: underline;
    text-transform: capitalize;
    font-size: 1.15rem;
}

.description p {
    display: -webkit-box;
    vertical-align: middle;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 0.95rem;
}

@media(max-width: 1280px) {
    /* .wrapper img {
        height: 100%;
    } */

    .wrapper {
        grid-template-rows: 65% 35%;
    }
}