.peopleLanding {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.peopleLanding__content {
    max-width: var(--width-large);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.peopleLanding__header {
    max-width: 65rem;
}

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

.peopleLanding__heading-total {
    display: block;
    font-family: var(--font-manrope);
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    margin-left: 1.5rem;
}

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

.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-black);
    background-color: var(--color-gray);
    border-radius: 99999px;
}

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

.peopleLanding__filters {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    column-gap: 3rem;
    row-gap: 3rem;
    width: 100%;
}

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

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

.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;
}

.peopleLanding__filters .form__reset {
    margin-top: 1.5rem; 
    width: 100%;
}

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

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

.peopleLanding__item {
    
}

.peopleLanding__pagination {

}

.peopleLanding .form__field label {
    display: none;
}

.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-left: 0;
    border-top: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
    font-weight: 300;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0.5px;
    color: inherit;
}

@media screen and (min-width: 768px) {
    .peopleLanding__filters {
        align-items: flex-end;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .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__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .peopleLanding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .peopleLanding__content {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .peopleLanding__list {
        column-gap: 3rem;
        row-gap: 6rem;
    }
}