/* Route-local styles for /pandas/. */

.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 60vh;
    padding: 2rem;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.hero-content .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 0.5rem 0 1rem;
}

.hero-content p {
    font-size: 1.125rem;
    opacity: 0.95;
}
