.col_person {
    .collection_container {
        display: flex;
        align-items: center;
        gap: 20px;
        .col_person_img {
            border-radius: 50%;
            width: 164px;
            height: 164px;
            overflow: hidden;
            @media (width < 992px) {
                width: 100px;
                height: 100px;
            }
        }
        .col_person_right {
            .col_person_name {
                font-size: var(--fs-600);
            }
            .col_person_position {
                &::after {
                    content: "";
                    width: 36px;
                    height: 1px;
                    display: block;
                    background-color: var(--clr-border);
                    margin-top: 8px;
                    margin-bottom: 8px;
                }
            }
            .col_person_email {
                font-weight: var(--fw-600);
                a {
                    text-decoration: none;
                }
            }
            .col_person_tel {
                a {
                    text-decoration: none;
                }
                
            }
        }
    }
    
}