#peoplesSection {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 100%;
    height: 100vh;
}

#peoplesSection nav li.nav-link span {
    color: rgba(0, 0, 0, 0.35) !important
}

#peoplesSection nav .sub-nav-link a {
    color: #333 !important;
}

#peoplesSection .peoples-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 100%;
    padding: 0 60px;
}

#peoplesSection .peoples-content .peoples-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    width: calc(100vw - 750px);
    height: calc(100vh - 225px);
}

#peoplesSection .peoples-content .peoples-data .peoples-title {
    border-bottom: 3px solid #000;
    width: 100%;
    padding-bottom: 32px;
    margin-bottom: 40px;
    
    font-weight: 400;
}

#peoplesSection .peoples-content .peoples-data .peoples-list {
    width: 100%;
}

#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    cursor: pointer;
}

#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item * {
    color: rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-weight: 400;
}

#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item .people-name {
    width: 200px;
    line-height: normal;
}

#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item .line {
    position: relative;
    width: 105px;
    height: 40px;
}

#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item .line::before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);

    content: '';
    background-color: rgba(0, 0, 0, 0.2);
    width: 80px;
    height: 3px;
}

#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item .line::after {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);

    content: '';
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
}

#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item .people-position {
    width: calc(100% - 350px);
}

#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item.active * {
    color: #000
}

#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item.active .line::before,
#peoplesSection .peoples-content .peoples-data .peoples-list .peoples-item.active .line::after {
    background-color: #000;
}

#peoplesSection .peoples-content .peoples-images {
    max-width: 576px;
    width: 100%;
    height: 100%;
}

#peoplesSection .peoples-content .peoples-images .people-img {
    display: none;
}

#peoplesSection .peoples-content .peoples-images .people-img.active {
    display: flex;
}

#peoplesSection .peoples-content .peoples-images .people-img,
#peoplesSection .peoples-content .peoples-images .people-img img {
    width: 100%;
    height: 100%;
}

#peoplesSection .peoples-content .peoples-images .people-img img {
    object-fit: cover;
}

body:has(#peoplesSection) footer .main-logo img {
    filter: invert(1);
}