
/* ====================================================================================== */
/* 主持人樣式----------------------------------------------------------------------------- */
/* ====================================================================================== */

.project_investigators{
    width: 100%;
}

.project_investigators .investigator_group{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp( .625rem, 2.6667vw, 1.25rem );

    width: 80%;
    margin: 0 auto;
}


/* 總計畫主持人&共同計畫主持人共用樣式 */
.investigator_item{
    width: calc( 50% - clamp( .625rem, 2.6667vw, 1.25rem ));
    flex: 1;
}

.investigator_block{
    overflow: hidden;
    background-color: #F6F6F6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding-right: clamp( .625rem, 2.6667vw, 1.25rem );
}


/* 項目職稱------------- */
.investigator_role{
    position: relative;
    display: flex;
}

.investigator_role .role_title{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C16055;
    color: #FFF;
    font-size: clamp(.875rem, 2.6667vw, 1.25rem );
    font-weight: bold;
    padding: clamp( 3.75rem, 15.6vw, 7.3125rem ) clamp( .5rem, 2vw, .9375rem );
    min-width: clamp( 6.4375rem, 26.6667vw, 12.5rem );
}

.investigator_role .img{

}

    .investigator_role .img img{
        width: auto;
        height: 100%;
        object-fit: cover;
    }






/* 主持人資訊-------- */
.investigator_info{
    position: relative;
    width: 100%;
    max-width: clamp( 12.8125rem, 54.6667vw, 25.625rem );
}


/* 姓名------------- */
.investigator_name{
    padding-bottom: 20px;
    border-bottom: 1px dashed #000;
}

.investigator_name .name_text{
    color: var(--primary_color);
    font-size: clamp( 1.25rem, 3.2vw, 1.5rem );
    font-weight: 700;
}


/* 職稱------------- */
.investigator_title{
    display: flex;
    padding-top: 20px;
    font-size: clamp( 1.125rem, 2.6667vw, 1.25rem );
}
.title_label{
    font-weight: bold;
}





/* 總計畫主持人獨立樣式-------------------------------------------- */
.main_investigator{}


/* 共同計畫主持人獨立樣式-------------------------------------------- */
.co_investigator{}



@media (max-width: 1100px){
    .project_investigators .investigator_group{
        display: block;
        width: 100%;
    }
    .investigator_item{
        width: 95%;
        margin: 0 auto;
    }
    .main_investigator{
        margin-bottom: 20px;
    }

    .investigator_info {
        max-width: unset;
    }

}

@media (max-width: 550px){
    .investigator_block {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .investigator_role .role_title {
        min-width: unset;
        width: 100%;
        padding: 15px 0;
    }

    .img{
        display: none;
    }

    .investigator_role {
        position: relative;
        display: flex;
        width: 100%;
    }

    .investigator_info {
        padding: 15px;
    }
}