:root {
    --heading1: 2.5rem;
    --heading2: 2rem;
    --heading3: 1.6rem;
    --heading4: 1.2rem;
    --body-text: 1rem;
    --nav-text: 1rem;
}

.homepageMainContent h2,h1 {
    font-size: var(--heading1);
    color: #73B90A;
    font-weight: 700;
    line-height: 2.3rem;
    margin-bottom: 30px;
}

.latestNewsMainContainer {
    margin-top: 40px;
    padding: 50px 15px;
    display: flex;
    flex-direction: column;
}

.latestNewsMainContainer a {
    text-decoration: none;
}

.latestNewsContentContainer {
    padding-bottom: 20px;
    margin: 0 20px 20px 20px;
    border-bottom: #d2d2d2 solid 1px;
}

.latestNewsContentContainer h4 {
    font-size: var(--heading3);
    color: #6b6b6b;
    font-weight: 700;
    line-height: 2.3rem;
    margin-bottom: 10px;
}

.latestNewsContentContainer p {
    margin: 0;
    font-size: var(--body-text);
    color: #6b6b6b;
    line-height: 1.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;

}

.latestNewsLink {
    column-gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: end;
    text-transform: uppercase;
    font-size: var(--heading4);
    font-weight: 400;
    color: #73B90A;
    text-decoration: none;
    line-height: 1.2rem;
    transition: all .3s ease ;
}

.latestNewsLink:hover {
    color: #c9e1b8;
    cursor: pointer;
}
