/* Teachers Page Responsive Styles */

@media (max-width: 768px) {
    .teachers-hero h1 {
        font-size: 2.5rem;
    }
    
    .teachers-hero p {
        font-size: 1rem;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .teacher-profile-image {
        position: static;
        text-align: center;
    }
    
    .teacher-profile-image img {
        max-width: 200px;
    }
    
    .teacher-profile-info h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .teacher-profile-info .teacher-subject {
        font-size: 1rem;
        text-align: center;
    }
    
    .teacher-profile-info .teacher-specialty {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .join-team-section h2 {
        font-size: 2rem;
    }
    
    .team-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .teachers-hero {
        padding: 100px 0 60px;
    }
    
    .teachers-hero h1 {
        font-size: 2rem;
    }
    
    .teachers-section {
        padding: 60px 0;
    }
    
    .teacher-card {
        margin: 0 10px;
    }
    
    .teacher-image {
        height: 200px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
    }
    
    .join-team-section {
        padding: 60px 0;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}