/* Our People Section */
.our-people {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 80px;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    min-height: 460px;
}

.our-people-content {
    flex: 1;
    max-width: 633px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.our-people-title {
    font-family: var(--font-hero);
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
}

.our-people-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.our-people-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-lighter-grey);
    line-height: 1.6;
    margin: 0;
}

.our-people-description {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-lighter-grey);
    line-height: 1.6;
    margin: 0;
}

.our-people-logos {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(3, 140px);
    grid-template-rows: repeat(3, 80px);
    row-gap: 40px;
    column-gap: 80px;
}

.people-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    width: 100%;
    height: 100%;
    min-height: 60px;
}

.people-logo-item.fading-out {
    opacity: 0;
}

.people-logo-item.fading-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.people-logo-item img {
    height: 28px;
    width: auto;
    min-width: 60px;
    max-width: 140px;
    object-fit: contain;
}

/* Responsive Styles */

/* 1440px and below */
@media (max-width: 1440px) {
    .our-people {
        gap: 60px;
    }

    .our-people-title {
        font-size: 36px;
    }
}

/* 1024px and below */
@media (max-width: 1024px) {
    .our-people {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .our-people-content {
        width: 100%;
        max-width: 100%;
    }

    .our-people-title {
        font-size: 28px;
    }

    .our-people-subtitle,
    .our-people-description {
        font-size: 15px;
    }

    .our-people-logos {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 70px);
        row-gap: 24px;
        column-gap: 48px;
    }

    .people-logo-item img {
        height: 24px;
        min-width: 50px;
        max-width: 120px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .our-people {
        padding: 40px 20px;
    }

    .our-people-content {
        width: 100%;
    }

    .our-people-title {
        font-size: 24px;
    }

    .our-people-subtitle,
    .our-people-description {
        font-size: 14px;
    }

    .our-people-logos {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 60px);
        row-gap: 16px;
        column-gap: 32px;
    }

    .people-logo-item img {
        height: 20px;
        min-width: 40px;
        max-width: 100px;
    }
}

