/*
 * Country footer (Variant B) — align to the DocFinder dark footer look:
 * background colour, text/link colour and font sizes. Loaded after main.css
 * (dependency on 'main') so it layers on top of the compiled framework styles.
 * Kept as a standalone file on purpose (not part of the SCSS compile), so footer
 * tweaks never require a gulp rebuild. The footer logo is already white (#fff),
 * so it sits correctly on the dark background.
 */
.wc-footer {
    background-color: #1d1d1d;
    color: #e0e0e0;
    padding: 3rem 0 2rem;
}

.wc-footer a {
    color: #e0e0e0;
    text-decoration: none;
}

.wc-footer a:hover,
.wc-footer a:focus {
    color: #fff;
    text-decoration: underline;
}

.wc-footer .footer-tagline {
    color: #b5b5b5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 34rem;
}

.wc-footer .footer-menu-title {
    color: #9b9b9b;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.wc-footer .footer-menu ul {
    margin: 0;
    padding: 0;
}

.wc-footer .footer-menu li {
    margin-bottom: 0.5rem;
}

.wc-footer .footer-menu a {
    font-size: 0.95rem;
}

.wc-footer .footer-copyright {
    color: #8a8a8a;
    font-size: 0.8rem;
    margin-top: 2.5rem;
}

/* Layout — DocFinder footer: brand left, menu columns right, copyright below.
 * Flex with wrap so it collapses to a single column on narrow screens. */
.wc-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem 3rem;
}

.wc-footer .footer-brand {
    flex: 0 1 360px;
}

.wc-footer .footer-menus {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 3rem;
    flex: 0 1 auto;
}

.wc-footer .footer-menu {
    min-width: 150px;
}

.wc-footer .footer-copyright {
    flex: 1 1 100%;
    margin-top: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
