.peopleLanding {
    padding: 4.8rem 2rem;
}

.peopleLanding__header {
    max-width: 60rem;
    margin-bottom: 6.4rem;
}

.peopleLanding__heading {
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
}

.peopleLanding__description {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.peopleLanding__description {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.peopleLanding__disclaimer {
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.03em;
    margin-top: 3.2rem;
}

.peopleLanding__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.peopleLanding__category {
    display: block;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-blue);
    background-color: var(--color-gray);
    border-radius: 99999px;
}

.peopleLanding__category[aria-current="page"] {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.peopleLanding__filters {
    border: 1px solid var(--color-gray-lightest);
    border-radius: 0.2rem;
    margin-bottom: 2.4rem;
}

.peopleLanding__filters .form__field {
    width: 100%;
    margin: 0;
}

.peopleLanding__filters .form__field--alphabet {
    width: 100%;
    overflow: auto;
    color: var(--color-blue);
}

.peopleLanding__filters .form__field--alphabet__content {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    white-space: nowrap;
}

.peopleLanding__filters .form__field--alphabet__content a {
    display: block;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.peopleLanding__filters .form__field--alphabet__content a.disabled {
    pointer-events: none;
    opacity: 0.2;
}

.peopleLanding__filters .form__field--alphabet__content a.selected {
    text-decoration: underline;
}

.form__results {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 6.4rem;
    width: 100%;
}

.peopleLanding__no-results {
    margin-top: 4.8rem;
}

.peopleLanding__featured {
    margin-bottom: 3rem;
    margin-top: 6rem;
}

.peopleLanding__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    margin-top: 4.8rem;
    row-gap: 3.2rem;
}

.peopleLanding__item {
    min-width: 0;
}

.peopleLanding__pagination {

}

.peopleLanding .form__field input[type="text"],
.peopleLanding .form__field input[type="email"],
.peopleLanding .form__field input[type="password"],
.peopleLanding .form__field textarea,
.peopleLanding .form__field select {
    border: none;
    padding: 2.4rem 3.2rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
    color: inherit;
    color: var(--color-blue)
}

.peopleLanding .form__field select {
    border-bottom: 1px solid var(--color-gray-lightest);
}

.peopleLanding .form__field input[type="text"] {
    line-height: 1;
}

.peopleLanding__fallback {
    margin-top: 6.4rem;
    max-width: 60rem;
}

.peopleLanding__fallback h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
}

.form__field--search {
    position: relative;
}

.form__field--search div {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    position: absolute;
    right: 2.4rem;
    top: 50%;
    transform: translateY(-50%);
}

.form__field--search a {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    padding: 0;
    color: var(--color-gray-lighter);
    text-decoration: none;
    border-bottom: 1px solid var(--color-gray-lighter);
}

@media screen and (min-width: 768px) {
    .peopleLanding__filters {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .peopleLanding .form__field select {
        border-bottom: none;
        border-right: 1px solid var(--color-gray-lightest);
    }

    .peopleLanding__filters .form__field--titles {
        width: auto;
        flex-grow: 1;
    }

    .peopleLanding__filters .form__field--industry {
        width: auto;
        flex-grow: 1;
    }

    .peopleLanding__filters .form__field--search {
        width: auto;
        flex-grow: 1;
    }

    .peopleLanding__filters .form__action {
        width: auto;
        flex-grow: 1;
    }

    .peopleLanding__no-results {
        margin-top: 8rem;
    }

    .peopleLanding__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .peopleLanding__fallback {
        margin-top: 10rem;
    }
}

@media screen and (min-width: 1200px) {
    .peopleLanding {
        padding: 8.8rem;
    }

    .peopleLanding__fallback {
        margin-top: 14rem;
    }
}