/* HERO GIANG VIEN */

.teacher-hero{
background:#243b63;
color:white;
text-align:center;
padding:80px 0 60px;
}

.teacher-hero h1{
font-size:40px;
margin-bottom:10px;
}

.teacher-hero p{
opacity:0.8;
margin-bottom:30px;
}

.teacher-stats{
display:flex;
justify-content:center;
gap:60px;
margin-top:30px;
}

.teacher-stat strong{
display:block;
font-size:28px;
color:#f6a623;
}

.teacher-stat{
font-size:14px;
opacity:0.9;
}

/* DANH SACH GIANG VIEN */

.teacher-section{
padding:60px 0;
background:#f6f7fb;
}

.teacher-list{
display:flex;
flex-direction:column;
gap:25px;
}

.teacher-card{
background:white;
border-radius:14px;
padding:25px;
display:flex;
align-items:center;
justify-content:space-between;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.teacher-info{
display:flex;
gap:20px;
align-items:center;
}

.teacher-avatar{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
}

.teacher-name{
font-weight:600;
font-size:18px;
}

.teacher-role{
color:#f6a623;
font-size:14px;
margin:4px 0;
}

.teacher-desc{
font-size:14px;
color:#666;
margin-bottom:10px;
}

.teacher-tags span{
background:#eef2f7;
padding:6px 10px;
border-radius:20px;
font-size:12px;
margin-right:6px;
}

.teacher-score{
background:#0b1c3d;
color:white;
padding:6px 12px;
border-radius:20px;
font-size:12px;
}

/* CTA */

.teacher-cta{
background:#243b63;
color:white;
text-align:center;
padding:70px 20px;
}

.teacher-cta h2{
font-size:30px;
margin-bottom:10px;
}

.teacher-cta p{
opacity:0.8;
margin-bottom:25px;
}

.btn-consult{
background:#f6a623;
color:white;
padding:12px 25px;
border-radius:25px;
text-decoration:none;
}

@media (max-width: 768px) {
    .teacher-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .teacher-info {
        flex-direction: column;
    }

    .teacher-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}