.articles-contact {
    padding-top: 5%;
    padding-bottom: 5%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F4FF 50%);
}

.contact-outer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
    margin: 0 5%;
    width: 60%!important;
    margin-bottom: 5%;
    align-self: center;
}

.contact-left h4 {
    font-weight: 700;
    font-size: 20px;
    color: #212E60;
}

.contact-left p {
    color: #7E7E7E;
}

.stat {
    display: flex;
    flex-direction: row;
    gap: 5%;
}

.stat img {
    width: 20px;
    height: 20px;
    margin-top: 0.5vh;
}

.stat h5 {
    font-weight: 700;
    font-size: 20px;
    color: #212E60;
}

.contact-right {
    border: 2px solid #19234C;
    border-radius: 5px;
    padding: 5%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    display: flex;    
    flex-direction: column;
    justify-content: space-evenly;
}

.contact-right h4 {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    color: #212E60;
}

.contact-right p {
    color: #7E7E7E;
}

.contact-right ul {
    list-style: disc;
    padding-left: 5%!important;
}

.contact-right ul li {
    color: #7E7E7E;
}

.contact-right ul li::marker {
    color: #CAB04D;
}

.contact-right button {
    background-color: #19234C;
    color: #fff;
    border: 2px solid #19234C;
    border-radius: 5px;
    padding: 2%;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    align-self: flex-end;

    &:hover {
        background-color: #fff;
        color: #19234C;
    }
}

.articles-outer {
    width: 60%!important;
    text-align: center;
    margin: 0 auto;
    margin-top: 5%;
}

.articles-outer h4 {
    font-size: 24px;
    font-weight: 700;
    color: #212E60;
}

.articles-outer p {
    color:#7E7E7E;
}

.latest-posts-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3.5%;
    margin-bottom: 5%;
    text-align: left;
    width: 100%;
}

.latest_post {
    border: 2px solid #19234C;
    border-radius: 5px;
    padding: 5%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    display: flex;    
    flex-direction: column;
    justify-content: space-between;
    width: 18vw;
    height: 300px;
}

.latest_post_category {
    color: #CAB04D;
}

.latest_post_title {
    font-weight: 700;
    font-size: 28px;
    color: #212E60;
}

.latest_post_info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
}

.latest_post_info span {
    width: 40%;
    color: #7E7E7E;
    text-align: left;
}

.latest_post_info button {
    border: none;
    background-color: transparent;
    color:#19234C;
    width: 60%;
    text-align: left;
}

.latest_post_more_button {
    overflow: hidden; 
    position: relative;
}

.latest_post_more_button::after {
    content: "";
    visibility: hidden;
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 90%;  
    height: 1px;
    background-color: #19234C;
    opacity: 1;
    transform: translate3d(-100%, 0, 0); 
    transition: transform 0.3s ease-in-out;
}

.latest_post_more_button:hover::after {
    transform: translate3d(0, 0, 0);
    visibility: visible;
}
