.footer {
    background-color: var(--color-primary-deep);
    color: white;
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.footer__list {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__link {
    color: white;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.footer__link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer__icon {
    width: 24px;
    height: 24px;
}

.footer__credits {
    font-size: 0.9rem;
    text-align: center;
}

.footer__link--highlight {
    color: white;
    font-weight: bold;
}