

.search-page-hero {
    text-align: center;
    margin: var(--alsodid-spacing-lg) 0;
    padding: var(--alsodid-spacing-lg);
}

.search-page-hero h1 {
    margin: 0;
    font-size: var(--alsodid-heading-display-size);
    font-weight: var(--alsodid-heading-display-weight);
    line-height: var(--alsodid-heading-display-line-height);
    letter-spacing: var(--alsodid-heading-display-tracking);
}

.search-page-hero > p {
    margin: 9px auto 0;
    color: var(--alsodid-text-secondary);
    font-size: 1rem;
}


.search-page-results-shell {
    padding-bottom: 52px;
}

.search-page-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin: 24px 0 18px;
}

.search-page-status {
    color: var(--alsodid-text-secondary);
    font-size: .82rem;
    font-weight: 650;
}

.search-page-status b {
    color: var(--alsodid-text-primary);
    font-weight: 800;
}

.search-page-result-section {
    margin-top: 30px;
}

.search-page-section-title {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 13px;
}

.search-page-section-title .hf-lane-heading-title-row {
    gap: 9px;
}

.search-page-section-title h2 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -.01em;
}

.search-page-section-title > span {
    color: var(--alsodid-text-muted);
    font-size: .74rem;
    font-weight: 700;
}

.search-page-people-grid {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 245px, 1fr ) );
    gap: 10px;
}

.search-page-person-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    min-height: 82px;
    padding: 11px 13px;
    border: 1px solid var(--alsodid-glass-border);
    border-radius: var(--alsodid-radius-lg);
    background: var(--alsodid-elevate-02);
    color: inherit;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease;
}

.search-page-person-card:hover,
.search-page-person-card:focus-visible {
    border-color: color-mix(in srgb, var(--search-role-accent) 38%, var(--alsodid-glass-border));
    background: var(--alsodid-glass-hover);
}

.search-page-person-card:focus-visible {
    outline: 2px solid var(--search-role-accent, var(--alsodid-primary));
    outline-offset: 2px;
}

.search-page-person-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid color-mix(in srgb, var(--search-role-accent) 42%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--search-role-accent) 8%, transparent);
}

.search-page-person-copy {
    display: block;
    min-width: 0;
}

.search-page-person-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--alsodid-text-primary);
    font-size: .88rem;
    font-weight: 800;
}

.search-page-person-role {
    display: inline-flex;
    align-items: center;
    margin-top: 3px;
    color: var(--search-role-accent, var(--alsodid-text-secondary));
    font-size: .69rem;
    font-weight: 750;
}

.search-page-person-role::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 5px;
    border-radius: 50%;
    background: currentColor;
}

.search-page-person-copy small {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--alsodid-text-muted);
    font-size: .68rem;
    font-weight: 550;
}

.search-page-message {
    padding: 30px 12px;
    text-align: center;
    color: var(--alsodid-text-muted);
    border: 1px dashed var(--alsodid-glass-border);
    border-radius: var(--alsodid-radius-lg);
}

.search-page-discover-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--alsodid-glass-border);
    color: var(--alsodid-text-muted);
    font-size: .78rem;
}

.search-page-discover-hint a {
    color: var(--alsodid-text-secondary);
    font-weight: 750;
    text-decoration: none;
}

.search-page-discover-hint a:hover {
    color: var(--alsodid-primary);
}

.search-page-discover {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--alsodid-glass-border);
}

.search-page-discover-kicker {
    margin: 0 0 8px;
    color: var(--alsodid-text-secondary);
    font-size: .82rem;
    font-weight: 700;
}

.search-page-discover .genre-nav-section {
    margin-top: 0;
}

@media (max-width: 720px) {
    .search-page-hero {
        text-align: left;
        padding-top: 28px;
    }

    .search-page-hero > p {
        margin-left: 0;
        margin-right: 0;
    }

    .search-page-status-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-page-filter-chips {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .search-page-filter-chips::-webkit-scrollbar {
        display: none;
    }

    .search-page-people-grid {
        grid-template-columns: 1fr;
    }

    .search-page-discover-hint {
        align-items: flex-start;
        flex-direction: column;
    }
}

.search-page-list-connections {
    margin-top: clamp(38px, 5vw, 58px);
    padding-top: 26px;
    border-top: 1px solid var(--alsodid-glass-border);
}

.search-page-section-title--stacked {
    display: block;
}

.search-page-section-title--stacked > p {
    margin: 7px 0 0;
    color: var(--alsodid-text-secondary);
    font-size: .82rem;
    line-height: 1.45;
}

.search-page-list-connections-grid {
    margin-top: 16px;
}

.crew-list-card--connected .crew-list-card-connection {
    display: block;
    margin-top: 7px;
    color: var(--alsodid-text-secondary);
    font-size: .72rem;
    line-height: 1.35;
}

.crew-list-card--connected .crew-list-card-connection strong {
    color: var(--alsodid-text-primary);
    font-weight: 750;
}

.search-page-people-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.search-page-crew-profile-card {
    width: min(100%, 860px);
    min-height: 300px;
}

.search-page-crew-profile-card .crew-hero-name {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.search-page-crew-profile-card .crew-hero-name a {
    color: inherit;
    text-decoration: none;
}

.search-page-crew-profile-card .crew-hero-name a:hover {
    color: var(--alsodid-primary);
}

.search-page-crew-profile-card .crew-profile-role-summary--in-hero {
    overflow-x: auto;
    scrollbar-width: none;
}

.search-page-crew-profile-card .crew-profile-role-summary--in-hero::-webkit-scrollbar {
    display: none;
}

.search-page-crew-profile-card .ad-summary-filter {
    min-width: max-content;
}

.search-page-crew-profile-card .ad-summary-filter__item {
    cursor: default;
}

.search-page-crew-profile-skeleton {
    width: min(100%, 860px);
    min-height: 300px;
    border: 1px solid var(--alsodid-glass-border);
    border-radius: var(--alsodid-radius-lg);
    background: var(--alsodid-elevate-02);
    position: relative;
    overflow: hidden;
}

.search-page-crew-profile-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(var(--alsodid-white-rgb), .06), transparent);
    transform: translateX(-100%);
    animation: alsodid-search-crew-skeleton 1.2s ease-in-out infinite;
}

@keyframes alsodid-search-crew-skeleton {
    to { transform: translateX(100%); }
}

@media (max-width: 720px) {
    .search-page-crew-profile-card {
        width: 100%;
        min-height: 0;
    }

    .search-page-crew-profile-card .crew-hero-name {
        font-size: 2rem;
    }
}

.search-page-person-card,
.search-page-person-card:hover,
.search-page-person-card:focus-visible {
    transform: none !important;
    box-shadow: none !important;
}
