*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Shared footer tools navigation — used across all Toolake pages */
.footer-tools-nav {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    font-size: 0.9rem;
}

.footer-tools-nav a {
    color: inherit;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.footer-tools-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    opacity: 0.75;
    transition: all 0.3s ease;
    transform-origin: left;
}

.footer-tools-nav a:hover::after {
    width: 100%;
}

