.footer {
    padding: 5rem 0 2rem;

    background: var(--color-black);

    border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: flex;
    flex-direction: column;

    gap: 2.5rem;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.footer-logo {
    width: auto;
    height: 1.375rem;
}

.footer-poweredby {
    width: auto;
    height: 1.5rem;

    transition: opacity 300ms ease;
}

.footer-poweredby:hover {
    opacity: 0.75;
}

.footer-description {
    max-width: 34rem;

    color: #B3B3B3;

    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-divider {
    width: 100%;
    height: 0.0625rem;

    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-copyright {
    color: #808080;

    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-links a {
    color: #B3B3B3;

    font-size: 0.875rem;

    transition: color 300ms ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 375px) {
    .footer-brand {
        gap: 0.625rem;
    }

    .footer-logo {
        height: 1.125rem;
    }

    .footer-poweredby {
        height: 1.25rem;
    }
}

@media (max-width: 280px) {
    .footer {
        display: none;
    }
}

@media (min-width: 2560px) {
    .footer-logo {
        height: 1.5rem;
    }

    .footer-poweredby {
        height: 1.625rem;
    }
}

@media (min-width: 3840px) {
    .footer-logo {
        height: 1.625rem;
    }

    .footer-poweredby {
        height: 1.75rem;
    }
}

@media (min-width: 7680px) {
    .footer-logo {
        height: 1.875rem;
    }

    .footer-poweredby {
        height: 2rem;
    }
}