/* ============================================
   M500 Footer Section Block
   ============================================ */

.scg-footer-section {
    background: #090B10;
    color: #F1F2F2;
    padding: 2.5rem 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-top: 1px solid #668289;
}

.scg-footer-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.scg-footer-section__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    opacity: 1;
}

.scg-footer-section__links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.scg-footer-section__link {
    color: #C5C9CC;
    text-decoration: none;
    transition: color 0.3s;
}

.scg-footer-section__link:hover {
    text-decoration: underline;
    color: #43D5CC;
}

.scg-footer-section__link:focus-visible {
    color: #43D5CC;
    outline: 2px solid #43D5CC;
    outline-offset: 4px;
}

.scg-footer-section__separator {
    opacity: 1;
    color: #668289;
}

.scg-footer-section__copyright {
    margin: 0;
    color: #C5C9CC;
}

/* Responsive */
@media (max-width: 768px) {
    .scg-footer-section__legal {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
