@import url(../../style_about/style_team.css);

.teacher_area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.8065rem, 1.3021vw, 1.5625rem);
    margin: 0 -1.3021vw;
}

.teacher_list{
    cursor: pointer;
}
.teacher_list:hover{
    opacity: 0.7;
    transition: all 0.3s ease;
}
.teacher_box{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* flex-direction: row; */
}
    .tL_img{
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .tL_img a ,
    .tL_img span{
        display:block;
        position: relative;
        padding-top: 75%;
        overflow: hidden;
    }
			.tL_right{
				width: 100%;
				
			}
            /*標題*/					
            .tLR_tit.name {
                text-align: center;
            }

@media (max-width: 990px){

    .teacher_area {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 640px){

    .teacher_area {
        grid-template-columns: repeat(1, 1fr);
    }

}