.home-latest {
    margin: 2rem auto;
    width: 100%;
}

.home-latest h2.template-header {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.home-latest .latest-content .latest-items {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
@media (min-width: 992px) {
    .home-latest .latest-content .latest-items {
        flex-direction: row;
    }
}

.home-latest .latest-content .latest-item {
    margin-bottom: 2.75rem;
}

@media (min-width: 992px) {
    .home-latest .latest-content .latest-item {
        flex-basis: 30%;
        display: flex;
        flex-direction: column;
    }
}

.home-latest .latest-content .latest-item h4 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1;
}
.home-latest .latest-content .latest-item h4 i {
    font-size: .875rem;
}

.home-latest .latest-content .latest-item .item-image {
    margin-bottom: .825rem;
}

.home-latest .latest-content .latest-item h3 {
    font-size: 1.375rem;
    color: var(--black);
    font-weight: 700;
}

.home-latest .latest-content .latest-item .date {
    font-size: 0.875rem;
    margin: .3rem 0;
    display: block;
}
.home-latest .latest-content .latest-item .latest-description {
    font-size: 1rem;
    flex: 1;
}


.home-latest .latest-content .latest-item .latest-button {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 0.8125rem 3.25rem;
    color: var(--white);
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 700;
}
