footer {
    padding-block: 30px;
    padding-inline: 40px;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}

footer .branding {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 45%;
}

footer .branding span {
    color: rgb(173, 165, 179);
    font-size: 3rem;
}

footer .branding h1 {
    font-size: 3rem;
    font-weight: 500;
    color: #baa6a6;
}

footer .footer-links {
    width: 55%;
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    flex-wrap: wrap;
}

footer .footer-links .footer-col {
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    gap: 20px;
}

footer .footer-links .footer-col a {
    text-decoration: none;
    color: #555;
}

footer .footer-links .footer-col a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    footer {
        padding: 0;
        border-top: 1px solid #ddd;
    }

    footer .branding {
        padding: 20px;
        gap: 5px;
        width: 100%;
    }

    footer .branding span {
        font-size: 1.8rem;
    }

    footer .branding h1 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #baa6a6;
    }

    footer .footer-links {
        padding: 20px;
        width: 100%;
        justify-content: space-between;
    }

    footer .footer-links .footer-col {
        padding: 0px;
        gap: 10px;
    }

    footer .footer-links .footer-col a {
        font-size: 14px;
        color: #504a4a;
        font-weight: 500;
    }

    footer .footer-links .footer-col a:hover {
        text-decoration: none;
    }

    footer .footer-links .footer-col a::before {
        content: '∘ ';
    }

    footer .footer-links .footer-col a::after {
        content: ' › ';
    }
}