/* Module: footer-main | Aurora Glass Final */

.c-footer-main {
    /* Spacing */
    padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--30);
    padding-bottom: var(--wp--preset--spacing--40);
    /* Slightly less at bottom */

    /* Background Strategy: Composite Layers */
    /* 1. Radial Glow Center Bottom (Indigo) - Provides Depth */
    /* 2. Linear Gradient Bottom Up (Cyan) - Provides Visibility */
    /* Background Strategy: Minimalist Aurora + Header Base */
    background:
        radial-gradient(circle at 50% 100%, rgba(129, 140, 248, 0.08), transparent 70%),
        linear-gradient(to top, rgba(34, 211, 238, 0.05), transparent 50%),
        rgba(2, 4, 6, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    /* Decoration */
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.003);
    /* Quantum Ghost Border - Threshold of Visibility */

    /* Typography Defaults */
    font-size: 0.85rem;
    /* Matches Copyright size */
}

/* Glass Effect Override */
.c-footer-main.effect-glass {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* Headings: Techno Style Override */
.c-footer-main h4 {
    margin-bottom: var(--wp--preset--spacing--40);
    opacity: 0.9;
}

/* Lists */
.c-footer-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.c-footer-list li {
    margin-bottom: var(--wp--preset--spacing--20);
    color: var(--wp--preset--color--muted);
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.c-footer-list li:hover {
    color: var(--wp--preset--color--primary);
    /* Neon Cyan */
    transform: translateX(4px);
    /* Micro-interaction */
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.3);
}

/* Socials opacity */
.wp-block-social-links {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.wp-block-social-links:hover {
    opacity: 1;
}