@charset "utf-8";

footer {
    background: #f6f6f6;
    border-top: 1px solid #e5e9e7;
    padding: 18px 14px;
    font-size: 12.5px;
    color: #545d59;
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 14px;
    text-align: center;
}

footer a {
    color: inherit;
    text-decoration: none;
    position: relative;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #7fb3a8;
    transition: width 0.25s ease;
}
footer a:hover::after { width: 100%;}
footer a:hover { opacity: 1;}
.separator {opacity: 0.35;}
.credit { opacity: 0.70;}


@media (max-width: 750px) {
    footer { font-size: 12px; padding: 14px 10px;}
}
