/**
 * Casavo Media — Footer
 */

.casavo-footer {
    background: var(--casavo-navy-dark);
    color: rgba(255, 255, 255, 0.88);
    padding: clamp(2.5rem, 5vw, 3.5rem) var(--container-padding);
    font-family: 'Poppins', sans-serif;
}

.casavo-footer__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.casavo-footer__left {
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 1.5vw, 1.1rem);
}

.casavo-footer__copy {
    margin: 0;
    font-size: clamp(0.78rem, 0.95vw, 0.88rem);
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.75);
}

.casavo-footer__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.casavo-footer__legal a {
    position: relative;
    padding-left: 1rem;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.casavo-footer__legal a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
    transform: translateY(-50%);
}

.casavo-footer__legal a:hover {
    color: var(--casavo-white);
}

.casavo-footer__center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.casavo-footer__logo-link {
    display: block;
    line-height: 0;
}

.casavo-footer__logo {
    width: clamp(140px, 16vw, 200px);
    height: auto;
}

.casavo-footer__right {
    text-align: right;
}

.casavo-footer__contact-title {
    margin: 0 0 0.65rem;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--casavo-white);
}

.casavo-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.casavo-footer__contact-list li {
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

.casavo-footer__contact-list a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease;
}

.casavo-footer__contact-list a:hover {
    color: var(--casavo-white);
}

@media (max-width: 900px) {
    .casavo-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .casavo-footer__left {
        align-items: center;
        order: 3;
    }

    .casavo-footer__legal {
        align-items: center;
    }

    .casavo-footer__legal a {
        padding-left: 0;
    }

    .casavo-footer__legal a::before {
        display: none;
    }

    .casavo-footer__center {
        order: 1;
    }

    .casavo-footer__right {
        text-align: center;
        order: 2;
    }
}
