.view-taxonomy-term .views-row a {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.view-taxonomy-term .views-row a:hover {
    color: inherit;
}

.view-taxonomy-term .views-row {
    margin: 5px;
}

.view-taxonomy-term .view-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
}

.view-taxonomy-term .views-row .field-title {
    font-family: oswald,"Helvetica Neue",Helvetica,Arial,sans-serif; 
    font-size: 24px;
}

.view-taxonomy-term .views-row .field-department {
    position: absolute;
    background-color: darkgreen;
    color: white;
    left: 10px;
    padding: 3px;
    border-radius: 3px;
    font-variant: small-caps;
    bottom: 10px;
}

.view-taxonomy-term .views-row .image-group {
    position: relative;
}

.view-taxonomy-term .views-row .author-group {
    display: flex;
    justify-content: space-between;
}

.view-taxonomy-term .views-row .field-picture img {
    max-width: 48px;
    width: auto;
    border-radius: 5px;
    max-height: 48px;
    border-style: ridge;
    border-width: 3px;
}

/* 3-column featured, 3-column content */
@media all and (min-width: 1024px) {
}

/* 2-column featured, 2nds below, 3-column content */
@media all and (min-width: 768px) and (max-width: 1023px) {
}

/* 1-column content */
@media all and (max-width: 767px) {
    .view-taxonomy-term .field-name-field-image img {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .view-taxonomy-term .view-content {
        grid-template-columns: 1fr;
    }
}	
