.groot-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    grid-column: span 2;
    grid-row: span 2;
}

.groot-grid .image-container {
    position: relative;
    min-height: 490px;
    flex-grow: 1;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.groot-grid .image-container::before {
    display: none;
}

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

.groot-grid .text-container {
    width: 100%;
    background-color: #0055A3;
    padding: 22px 22px 17px 22px;
}

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

/* Title */
.groot-grid .text-container .title {
    margin-top: 17px;
    font-size: 26px;
    line-height: 28px;
    color: #FFFFFF;
    font-weight: 400;
}

/* Excerpt */
.groot-grid .text-container .excerpt {
    margin-top: 11px;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    font-weight: 400;
}

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

@media screen and (max-width: 767px) {
    .groot-grid .image-container {
        min-height: 261px;
    }
    
    .groot-grid .text-container {
        padding: 20px 15px 15px 15px;
    }
    
    /* Tags */
    .groot-grid .text-container .tags {
        display: flex;
        gap: 4px;
    }
    .groot-grid .text-container .tags .tag {
        font-size: 10px;
        line-height: 13px;
        padding: 3.5px 10px;
    }
    
    /* Title */
    .groot-grid .text-container .title {
        margin-top: 13px;
        font-size: 16px;
        line-height: 16px;
    }
    
    /* Excerpt */
    .groot-grid .text-container .excerpt {
        margin-top: 7px;
        font-size: 12px;
        line-height: 18px;
    }
    
    /* Locations */
    .groot-grid .text-container .locations {
        margin-top: 10px;
    }
    .groot-grid .text-container .locations .location {
        font-size: 10px;
        line-height: 12px;
    }
    
}