/* ── Global resets (previously provided by Vuetify CSS) ─── */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body { margin: 0; padding: 0; font-family: Roboto, sans-serif; background: #fff; }

/* ── Header ─────────────────────────────────────────────── */
.ig-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #496D94;
    color: #fff;
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.ig-header-title {
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}
.ig-header-title h1 {
    margin: 0;
    font-size: 1rem;
}

.ig-header .bbaw-logo {
    display: none;
    position: absolute;
    right: 20px;
    top: 10px;
    height: 44px;
}
@media (min-width: 1264px) {
    .ig-header .bbaw-logo { display: block; }
}

.ig-header-nav {
    display: flex;
    margin-left: auto;
}
@media (min-width: 1264px) {
    .ig-header-nav { padding-right: 80px; } /* clear the logo */
}
.ig-header-nav a {
    color: #fff;
    text-decoration: none;
    padding: 0 1.25rem;
    line-height: 64px;
    opacity: .6;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}
.ig-header-nav a:hover,
.ig-header-nav a.active { opacity: 1; }

.ig-burger {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 1rem;
    display: none;
    flex-shrink: 0;
}
@media (max-width: 960px) {
    .ig-header-nav { display: none; }
    .ig-burger { display: block; }
}

/* ── Mobile drawer ──────────────────────────────────────── */
.ig-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 200;
    transition: left .25s ease;
    padding: 2rem 1rem;
    box-shadow: 2px 0 8px rgba(0,0,0,.15);
    overflow-y: auto;
}
.ig-drawer.open { left: 0; }
.ig-drawer a {
    display: block;
    padding: .6rem .5rem;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
}
.ig-drawer a:hover { color: #496D94; }

.ig-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 199;
}
.ig-drawer-overlay.open { display: block; }

/* ── Content wrapper ────────────────────────────────────── */
.ig-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 1rem;
}

/* ── Footer ─────────────────────────────────────────────── */
#app-footer {
    background: #333;
    color: #ccc;
    font-size: .75rem;
    line-height: 1.4;
    margin-top: 3rem;
}
#app-footer a {
    text-decoration: none;
    color: #bbb;
}
#app-footer a:hover {
    color: #eee;
    text-decoration: underline;
}
.ig-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem 2rem;
}
.ig-footer-nav a {
    display: block;
    padding: .2rem 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: .05em;
}
.ig-footer-logos {
    max-width: 1200px;
    margin: 0 auto;
    padding: .5rem 1rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.ig-footer-logos img { height: 50px; width: auto; }

@media (max-width: 600px) {
    .ig-footer-inner { grid-template-columns: 1fr; }
    .ig-footer-nav { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; }
}

/* v-app used as sub-region — prevent it filling the viewport */
.v-application--wrap { min-height: unset !important; }

/* ── Vuetify spacing/typography shims (plain views only) ── */
.mb-1{margin-bottom:4px}   .mb-2{margin-bottom:8px}
.mb-3{margin-bottom:12px}  .mb-4{margin-bottom:16px}
.mb-5{margin-bottom:20px}  .mb-6{margin-bottom:24px}
.mb-8{margin-bottom:32px}  .mb-10{margin-bottom:40px}
.mt-2{margin-top:8px}      .mt-3{margin-top:12px}
.mt-4{margin-top:16px}     .mt-5{margin-top:20px}
.pt-3{padding-top:12px}    .pt-4{padding-top:16px}
.pb-3{padding-bottom:12px} .pb-4{padding-bottom:16px}
.px-4{padding-left:16px;padding-right:16px}
.ml-2{margin-left:8px}     .mr-2{margin-right:8px}
.caption{font-size:.75rem;line-height:1.25rem}
.grey--text{color:#9e9e9e}
.font-weight-bold{font-weight:700}
