.latest-container {
    display: flex;
}

.latest-container>div {
    flex: 1 0;
}

.latest-container>.latest-large {
    min-height: 475px;
    padding: 0px 20px;
}

.latest-container>.latest-large .large-box {
    height: 100%;
    position: relative;
}

.latest-container>.latest-large .large-box>a:before {
    content: "";
    display: block;
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    transition: 0.35s opacity ease-in-out;
}

.latest-container>.latest-large .large-box>a {
    background-size: cover;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.latest-container>.latest-large .large-box>a:hover:before {
    opacity: 0.6;
}

.latest-container>.latest-large .large-box>a>* {
    transition: 0.3s transform ease-in-out;
}

.latest-container>.latest-large .large-box>a:hover>* {
    transform: translateY(-5px);
}

.latest-container>.latest-large .large-box>a>* {
    position: relative;
}

.latest-container>.latest-large .large-box .large-date>small {
    color: #fdbe57;
    font-weight: bold;
}

.latest-container>.latest-large .large-box .large-title>h4 {
    color: white;
    font-weight: 500;
}

.latest-container>.latest-large .large-box .large-excerpt>p {
    color: rgb(189, 189, 189);
    transition: 0.3s color ease-in-out;
}

.latest-container>.latest-large .large-box>a:hover .large-excerpt>p {
    color: rgb(222, 222, 222);
}

.latest-container>.latest-items {
    display: flex;
    flex-direction: column;
}

.latest-items>.latest-item {
    padding: 34px 0px;
    border-bottom: 2px solid #92a7c3;
}

.latest-items>.latest-item:first-of-type {
    border-top: 2px solid #92a7c3;
}

.latest-items>.latest-item>a {
    display: block;
}

.latest-items>.latest-item>a:hover .latest-title h4 {
    color: #0c2e5b;
    transform: translateX(5px);
}

.latest-items>.latest-item>a:hover .latest-date {
    transform: translateX(5px);
}

.latest-items>.latest-item .latest-title h4 {
    color: #194680;
    font-weight: 500;
    transform: translateX(0px);
    transition: 0.3s all ease-in-out;
}

.latest-items>.latest-item .latest-date {
    transition: 0.3s all ease-in-out;
}

.latest-items>.latest-item .latest-date small {
    color: rgb(41, 41, 41);
    font-weight: bold;
}

.latest-items>.latest-item .latest-excerpt p {
    color: rgb(62, 62, 62);
    transition: 0.3s color ease-in-out, 0.3s transform ease-in-out;
    transform: translateX(0);
}

.latest-items>.latest-item a:hover .latest-excerpt p {
    color: rgb(123, 123, 123);
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .latest-container {
        flex-direction: column;
    }
    .latest-container>.latest-large {
        min-height: 0;
        padding: 0;
        margin-bottom: 34px;
    }
    .latest-container>.latest-large .large-box>a {
        height: 300px;
    }
}