/**
 * footer_style_desktop.css
 * Desktop footer layout: logo · links · address in a row.
 */

@media (min-width: 1300px) {

    .site-footer {
        padding: 50px 60px 20px;
    }

    /* Three-column horizontal layout, all columns vertically centred */
    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: center;   /* vertical centre for all three columns */
        gap: 60px;
        max-width: var(--inner-max-width);
        margin: 0 auto;
    }

    /* Column order: logo | links | address */
    .footer-logo    { order: 1; }
    .footer-links   { order: 2; }
    .footer-address { order: 3; }

    /* Logo: centred within its own flex container */
    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .footer-logo img {
        width: 300px;
        height: auto;
    }

    .footer-links {
        min-width: 160px;
    }

    .footer-address {
        min-width: 180px;
    }

    /* Copyright strip: explicitly centred on desktop */
    .footer-bottom {
        text-align: center;
    }
}
