/* Site-wide additions: header logo, footer grid, legal pages */

.site-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: #ffffff;
    padding: 6px 16px;
    box-sizing: border-box;
}

.site-header-bar h3 {
    flex: 1 1 auto;
    margin: 0;
}

.site-logo-link {
    display: inline-block;
    flex: 0 0 auto;
    line-height: 0;
}

.site-logo-img {
    width: auto;
    max-width: 100%;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .site-logo-img {
        height: 30px;
    }
}

/* ---- footer -------------------------------------------------------- */

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
    width: 100%;
    margin: 20px 0 8px;
    font-family: "Inter Tight", "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #fbfbfb;
    text-align: left;
}

.site-footer-logo img {
    width: auto;
    max-width: 100%;
    height: 46px;
    object-fit: contain;
}

.site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer-links a,
.site-footer-contact a {
    color: #fbfbfb;
    text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-contact a:hover {
    text-decoration: underline;
}

.site-footer-contact p {
    margin: 0 0 4px;
}

.site-footer-copy {
    width: 100%;
    margin: 14px 0 0;
    font-family: "Inter Tight", "Poppins", sans-serif;
    font-size: 12px;
    color: #fbfbfb;
    text-align: center;
}

@media (max-width: 767px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
        justify-items: center;
    }

    .site-footer-links {
        align-items: center;
    }
}

/* ---- legal pages --------------------------------------------------- */

.geodoc-page {
    background: #ffffff;
}

.geodoc-page .geodoc-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 16px 48px;
    box-sizing: border-box;
}

.geodoc-page a {
    color: #1a56db;
    text-decoration: underline;
}

.geodoc-page a:hover {
    color: #12328a;
}
