/* Footer: Mobile-First Responsive Design */

/* ============================================
   MOBILE (Base - bis 575px)
   ============================================ */

.base-footer {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.5;
    background: #0b3558;
    color: #ffffff;
    padding: 1.25rem 0 1.5rem;
    margin-top: 2rem;
    text-align: center;
    max-width: 1600px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
}

.base-footer-link {
    font-family: var(--font-family-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
    color: #e5e7eb;
    margin: 0 0.75rem;
    transition: var(--transition-fast);
    font-weight: 400;
    letter-spacing: 0;
}

.footer-link:hover {
    text-decoration: underline;
    color: #e5e7eb;
}

.base-footer-links {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.base-footer-copyright {
    font-family: var(--font-family-primary);
    font-size: 0.8rem;
    line-height: 1.5;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
}

.base-footer-flag-icon {
    width: 20px;
    height: 15px;
    border: none;
    display: inline-block;
    vertical-align: middle;
}

/* ============================================
   TABLET (600px - 1023px)
   ============================================ */

@media (min-width: 600px) {
    .base-footer {
        padding: 1.25rem 0 1.5rem;
    }
}

/* ============================================
   DESKTOP (1024px - 1439px)
   ============================================ */

@media (min-width: 1024px) {
    .base-footer {
        padding: 1.25rem 0 1.5rem;
    }
}

/* ============================================
   WIDESCREEN (1440px+)
   ============================================ */

@media (min-width: 1440px) {
    .base-footer {
        padding: 1.25rem 0 1.5rem;
    }
}
