/* Additional CSS for compact footer and disclaimer banner */

.disclaimer-banner {
    background: var(--gradient-dark);
    color: white;
    padding: 0.75rem 0;
    border-bottom: 3px solid var(--color-accent);
    transition: opacity 0.5s ease-out;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.site-footer {
    padding: 3rem 0 1.5rem !important;
}

.footer-bottom {
    padding-top: 1.5rem !important;
    font-size: 0.875rem !important;
}