/*匯入師資模組*/
@import url(../style_about/style_team.css);


/* =================================有照片的師資模組===================================== */


.peopleList a{
    display: grid;
    grid-template-columns: minmax(20%, 6.875rem) auto; /*110*/
    /* gap: 0 0.9375rem; */
}
    /* .peopleListImg span{
        overflow: hidden;
        position: relative;
        padding-top: 145%;
        display: block;
        background-color: #000;
    }  */




/* 在螢幕寬度991~1150時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (max-width: 1150px) {

    .peopleBg {
        grid-template-columns: repeat(1, 1fr);
        /* gap: clamp(0.6452rem, 1.0417vw, 1.2500rem); */
    }

}




 @media (max-width: 990px){ 

	.peopleBg{
		display: block;
	}

    .peopleList:not(:first-of-type){
        margin-top:1.25rem; /*20px */
    }

}



 @media (max-width: 390px){ 

    .peopleList a {
        display: flex;
        grid-template-columns: unset;
        flex-direction: column;
        gap: 0.625rem;
    }

 }