/* Shared directory-page hero.
   Field Notes is the reference layout for every top-level Pixel City district. */

.district-page-hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 8% 45%, rgba(0, 229, 255, 0.065), transparent 32%),
        radial-gradient(circle at 84% 42%, rgba(255, 79, 203, 0.11), transparent 34%),
        linear-gradient(135deg, rgba(0, 229, 255, 0.025), transparent 46%);
    text-align: left;
}

.district-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(155, 111, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 111, 255, 0.16) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, transparent, #000);
}

.district-page-hero > .container {
    position: relative;
    z-index: 1;
}

.district-page-hero .section-label {
    margin-bottom: 12px;
}

.district-page-hero .district-hero-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 20px;
}

.district-page-hero .district-hero-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    margin: 0;
    object-fit: contain;
}

.district-page-hero h1 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-head);
    font-size: clamp(26px, 5vw, 48px);
    line-height: 1.12;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.district-page-hero .district-page-description {
    max-width: 560px;
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0;
}

.district-page-hero .district-page-controls {
    margin-top: 26px;
    margin-bottom: 0;
}

.district-page-hero .gallery-filters {
    justify-content: flex-start;
}

.district-page-hero .project-meta-row {
    margin-bottom: 0;
}

@media (max-width: 620px) {
    .district-page-hero {
        padding: 44px 0 38px;
    }

    .district-page-hero .district-hero-row {
        gap: 18px;
    }

    .district-page-hero .district-hero-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .district-page-hero h1 {
        font-size: clamp(23px, 9vw, 36px);
        letter-spacing: 2px;
    }
}
