/* ABS Request Manager — custom styles */

/* ── Hero cover wallpaper ──────────────────────────────────────────────────── */

.hero-section {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-covers {
    position: absolute;
    inset: 0;
    display: flex;
}

.hero-covers > div {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    min-width: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,  rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
        linear-gradient(to right,   rgba(0,0,0,0.35) 0%, transparent 15%, transparent 85%, rgba(0,0,0,0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 4rem 1.5rem;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}
