.klein-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    grid-column: span 2;
    grid-row: span 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 346px;
    padding: 11px 22px;
}
.klein-grid::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0,0,0,0) 50%);
}

.klein-grid:hover,
.klein-grid:hover * {
    text-decoration: none;
}

.klein-grid > * {
    z-index: 1;
}

/* Tags */
.klein-grid .tags {
    display: flex;
    gap: 4px;
}
.klein-grid .tags .tag {
    background-color: #0055A3;
    padding: 4px 10px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

/* Title */
.klein-grid .title {
    margin-top: 14px;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
    font-weight: 400;
}

/* Locations */
.klein-grid .locations {
    display: flex;
    gap: 4px;
    margin-top: 5px;
}
.klein-grid .locations .location {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #FFFFFF;
}

@media screen and (max-width: 767px) {
    .klein-grid {
        min-height: 203px;
        padding: 11px 14px;
    }
    
    /* Tags */
    .klein-grid .tags .tag {
        font-size: 10px;
        line-height: 13px;
        padding: 3.5px 10px;
    }
    
    /* Title */
    .klein-grid .title {
        margin-top: 10px;
        font-size: 16px;
        line-height: 16px;
    }
    
    /* Locations */
    .klein-grid .locations .location {
        font-size: 10px;
        line-height: 13px;
    } 
}