/* ==========================================================================
   CROSSMAP REVIEWS — Custom Cinematic Footer
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --- Hide Astra's default footer --- */
#colophon.site-footer,
.site-footer,
.ast-small-footer,
.site-below-footer-wrap,
.site-above-footer-wrap {
    display: none !important;
}

/* --- Footer Container --- */
.cm-footer {
    position: relative;
    width: 100%;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #0b1218;
    color: #9ca3af;
    line-height: 1.6;
    box-sizing: border-box;
}

.cm-footer *, .cm-footer *::before, .cm-footer *::after {
    box-sizing: border-box;
}

/* --- Red Accent Line --- */
.cm-footer-accent {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e50914 30%, #e50914 70%, transparent);
}

/* --- Main Footer Area --- */
.cm-footer-main {
    padding: 52px 0 40px;
}

.cm-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 60px;
}

/* --- Footer Columns --- */
.cm-footer-col {
    flex: 1;
    min-width: 0;
}

.cm-footer-brand {
    flex: 1.5;
}

/* --- Brand / Logo --- */
.cm-footer-logo {
    display: inline-block;
    text-decoration: none !important;
    margin-bottom: 14px;
    line-height: 1;
}

.cm-footer-logo-cross {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1.5px;
    color: #e50914;
    text-transform: uppercase;
}

.cm-footer-logo-reviews {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #ffffff;
    margin-left: 6px;
    letter-spacing: -0.3px;
}

.cm-footer-tagline {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
}

/* --- Column Headings --- */
.cm-footer-heading {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 18px;
}

/* --- Link Lists --- */
.cm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cm-footer-links li {
    margin-bottom: 10px;
}

.cm-footer-links a {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cm-footer-links a:hover {
    color: #ffffff;
}

/* --- Bottom Copyright Bar --- */
.cm-footer-bottom {
    background: #080d12;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cm-footer-bottom .cm-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cm-footer-copyright,
.cm-footer-made {
    font-size: 12.5px;
    color: #4b5563;
    margin: 0;
    letter-spacing: 0.2px;
}

.cm-footer-made {
    color: #6b7280;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .cm-footer-inner {
        flex-direction: column;
        gap: 36px;
        padding: 0 24px;
    }

    .cm-footer-brand {
        flex: none;
        text-align: center;
    }

    .cm-footer-tagline {
        max-width: none;
        margin: 0 auto;
    }

    .cm-footer-col {
        text-align: center;
    }

    .cm-footer-bottom .cm-footer-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}
