/* FOOTER BASE */
.footer-section {
    background: #0a0a0a;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo img {
    height: 100px;
}

/* LINKS */
.footer-link {
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color .3s;
}

.footer-link:hover {
    color: #ffffff;
}

/* COPYRIGHT */
.copyright-section {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.copyright-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.copyright-company {
    font-weight: 600;
    color: #fff;
}

/* MOBILE */
@media (max-width: 640px) {
    .copyright-inner {
        flex-direction: column;
        gap: 4px;
        font-size: .95rem;
    }
}
