#updates-list {
    margin-bottom: 80px;
}

#update-item {
    position: relative;
    height: 390px;
    margin-bottom: 30px;
    background-color: #eee;
}

#update-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease-in-out;
}

#update-item:hover img {
    transform: scale(1.025);
    transition-duration: 150ms;
}

#update-item-content {
    position: relative;
    padding: 15px;
    height: calc(100% - 30px);
    display: flex;
    align-items: flex-end;
}

#update-item-content-inner {
    background-color: var(--white-color);
    padding: 15px;
    width: calc(100% - 30px);
}

#update-item-permalink {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#updates-paginator {
    margin-bottom: 120px;
}

#update-item-content-metadata {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    border-bottom: 2px solid #97AAC4;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#update-item-content-title {
    padding-top: 10px;
}

#update-item-content-metadata .post-by {
    opacity: 40%;
}

.filter-caret {
    font-size: 8px;
}

#hero a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#updates-heading {
    margin-bottom: 30px;
}

#updates-head h2 {
    margin-bottom: 20px;
}

#updates-search {
    position: relative;
}