/* Custom footer - no Kadence/Cadence dependencies */

.nowl-footer {
    color: var(--global-palette3);
}

.nowl-footer__wrap {
    display: flex;
    flex-direction: column;
}

.nowl-footer__middle {
    background-color: var(--global-palette8);
}

.nowl-footer__container {
    max-width: var(--global-content-width);
    margin-inline: auto;
    padding-inline: var(--global-content-edge-padding);
}

/* Middle section - 4 columns */
.nowl-footer__middle {
    padding: 3rem 0;
}

.nowl-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.nowl-footer__column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.nowl-footer__column-title {
    display: block;
    font-size: 0.875rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--global-palette5);
    margin-bottom: 0.25rem;
}

.nowl-footer__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.nowl-footer__link {
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--global-palette3);
    text-decoration: none;
    transition: color 0.15s ease;
}

.nowl-footer__link:hover {
    color: var(--global-palette2);
}

/* Bottom section - copyright + social */
.nowl-footer__bottom {
    padding: 1.5rem 0;
    background-color: var(--global-palette7);
}

.nowl-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nowl-footer__copyright p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--global-palette5);
}

.nowl-footer__social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nowl-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-palette5);
    transition: color 0.15s ease;
}

.nowl-footer__social-link:hover {
    color: var(--global-palette2);
}

.nowl-footer__social-icon {
    width: 24px;
    height: 24px;
}

/* Tablet */
@media (max-width: 1024px) {
    .nowl-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .nowl-footer__middle {
        padding: 2rem 0;
    }

    .nowl-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nowl-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nowl-footer__social {
        width: 100%;
        justify-content: flex-start;
    }
}
