.teacher-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px 40px;
}

.teacher-item {
    display: flex;
    align-items: flex-start;
}

.teacher-photo {
    margin-right: 20px;
    flex-shrink: 0;
}

.teacher-photo img {
    width: 140px;
    height: 180px;
    object-fit: cover;
}

.teacher-info .name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.teacher-info .name:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #7e0014;
}


.teacher-info .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 15px;
    color: #7e0014;
}

.teacher-info .description {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

@media (max-width: 991px) {
    .teacher-grid {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
}

@media (max-width: 575px) {
    .teacher-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .teacher-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .teacher-info {
        width: 100%;
    }

    .teacher-info .name:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .teacher-info .description {
        text-align: justify;
    }
} 