.people_section {
    & .section_inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;

        @media (max-width: 991px) {
            flex-direction: column;
        }

        & .left_side {
            width: 48%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            flex-wrap: wrap;

            @media (max-width: 991px) {
                width: 100%;
            }

            & .post_block {
                width: 48%;
                display: flex;
                flex-direction: column;
                cursor: pointer;
                margin-bottom: 5rem;
                padding: 3rem;
                border-radius: 2rem;
                
                &.active {
                    background: var(--primary);

                    & h3, & .position, & .view_button span {
                        color: var(--white);
                    }

                    & svg path {
                        fill: var(--white) !important;
                    }
                }

                & img {
                    border-radius: 2rem;
                }

                & h3 {
                    color: var(--black);
                    font-family: Inter;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 30px; /* 187.5% */
                    margin: 2rem 0 0;
                }

                & .position {
                    color: var(--black);
                    font-family: Inter;
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 30px; /* 250% */
                    margin: 0 0 1rem;
                }

                .view_button {
                    display: flex;
                    flex-direction: row;
                    align-items: center;

                    & span {
                        display: block;
                        color: var(--black);
                        font-family: Inter;
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: normal;
                        margin-right: .5rem;
                    }

                    & svg {
                        width: 1.5rem;
                        height: 1.5rem;

                        & path {
                            fill: var(--primary);
                        }
                    }
                }
            }
        }

        & .right_side {
            width: 48%;

            @media (max-width: 991px) {
                width: 100%;
            }

            & .content_block {
                width: 100%;
                background: var(--primary);
                border-radius: 2rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: left;

                @media (min-width: 992px) {
                    height: 80rem;
                    padding: 10rem;
                }

                @media (max-width: 991px) {
                    padding: 3rem;
                }

                &:not(.active) {
                    display: none;
                }

                & h3 {
                    width: 100%;
                    color: var(--white);
                    font-family: "Inter";
                    font-size: 3rem;
                    font-style: normal;
                    font-weight: 300;
                    line-height: 45px; /* 150% */
                    margin: 0;

                    @media (max-width: 991px) {
                        font-size: 2rem;
                    }
                }

                & .position {
                    width: 100%;
                    color: var(--white);
                    font-family: "Inter";
                    font-size: 2rem;
                    font-style: normal;
                    font-weight: 300;
                    line-height: 45px; /* 225% */
                    margin: 0 0 3rem;

                    @media (max-width: 991px) {
                        font-size: 1.8rem;
                        margin: 0 0 2rem;
                    }
                }

                & p {
                    color: var(--white);
                }
            }
        }
    }
}