.employee-portal-footer {
    font-family: inherit;
}
.employee-portal-footer__top {
    background-color: #219963;
    background-image: radial-gradient(
        circle at top right,
        #1a6fab 0%,
        #146f74 3%,
        #219963 35%,
        #219963 100%
    );
    color: #ffffff;
    position: relative;
    padding: clamp(8rem, 20vw, 12rem) clamp(1.5rem, 4vw, 3rem)
        clamp(3rem, 8vw, 5rem);
    border-radius: 0 0 48px 48px;
    overflow: hidden;
    z-index: 0;
    margin-top: -4rem;
}
.employee-portal-footer__title {
    margin: 0 0 2.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    text-align: center;
    font-weight: 700;
}
.employee-portal-footer__top-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
.employee-portal-footer__social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.employee-portal-footer__link {
    --size: 146px;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    text-decoration: none;
}
.employee-portal-footer__link img {
    width: 42px;
    height: 42px;
    filter: brightness(0) invert(1);
    pointer-events: none;
}
.employee-portal-footer__link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.29, 1),
        opacity 0.35s ease;
}
.employee-portal-footer__link:hover::after,
.employee-portal-footer__link:focus-visible::after {
    transform: scale(1);
    opacity: 1;
}
.employee-portal-footer__bottom {
    background: #000;
    color: #ffffff;
    padding: 2.5rem clamp(1.5rem, 4vw, 3rem) 3rem;
}
.employee-portal-footer__bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
}
.employee-portal-footer__brand img {
    width: 182px;
    margin: 1rem auto;
    height: auto;
    display: block;
}
.employee-portal-footer__legal-text {
    margin: 1rem auto;
    letter-spacing: 0.04em;
    opacity: 0.6;
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 1.25rem;
    letter-spacing: 0em;
    text-align: center;
}
@media (max-width: 720px) {
    .employee-portal-footer__link {
        --size: 72px;
    }
    .employee-portal-footer__link img {
        width: 36px;
        height: 36px;
    }
    .employee-portal-footer__title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }
}
