﻿/* 1. Footer Container */
.acghrs-footer {
    background-color: #1a2536; /* Dark background */
    padding: 55px 0; /* Tall footer */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 2. Wide Container */
.acghrs-container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    /* Centering handled in HTML with flex */
}

/* 3. Footer Text & Separator */
.acghrs-footer-text,
.acghrs-footer-separator {
    color: #abb8c3;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0 8px; /* Default spacing */
}

/* 4. Separator Specific */
.acghrs-footer-separator {
    margin: 0 10px; /* Slightly wider spacing for separator */
}

/* 5. Links Container */
.acghrs-footer-links {
    display: flex;
    align-items: center;
}

/* 6. Footer Link Styling */
.acghrs-footer-link {
    color: #4a90e2 !important; /* Light blue */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .acghrs-footer-link:hover {
        color: #72a8f9 !important; /* Brighter blue on hover */
        text-decoration: underline;
    }
