/* Modern animated internal links */
.mil-link {
    color: #2271b1;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mil-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #2271b1;
    transition: width 0.3s ease;
}

.mil-link:hover {
    color: #135e96;
}

.mil-link:hover::after {
    width: 100%;
}