/*
 * Three-Logo Masthead -- Settings Page Step 3, 2026-09-03
 * Styles for Proof_Gallery_Renderer::render_gallery_masthead() and
 * render_gallery_footer() (includes/cpt/class-proof-gallery-renderer.php).
 * Self-contained, hardcoded neutral tones -- this page has no design-token
 * CSS of its own to hook into (unlike the Owner Dashboard / Client Portal
 * shells, which define their own --ppg-* variables inside their own
 * inline <style> blocks). ppg_gallery_title_color and friends are per-
 * gallery Display settings, not agency branding, so they're deliberately
 * left out of this masthead.
 */

.ppg-masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.ppg-masthead-agency {
    display: flex;
    align-items: center;
}

.ppg-masthead-agency-logo {
    display: block;
    max-height: 56px;
    max-width: 260px;
    width: auto;
    height: auto;
}

.ppg-masthead-agency-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: #222222;
}

.ppg-masthead-client-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 20px;
}

.ppg-masthead-client-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.ppg-masthead-client-label {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    white-space: nowrap;
}

.ppg-masthead-footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.ppg-masthead-footer span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #999999;
}

@media (max-width: 600px) {
    .ppg-masthead {
        flex-direction: column;
        align-items: flex-start;
    }
}
