.lamah-instructors-cards {
    margin: 20px 0;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.instructor-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background: white;
    transition: transform 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.instructor-image img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

.instructor-name {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.instructor-bio {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.view-profile {
    display: inline-flex;
    align-items: center;
    color: #2271b1;
    text-decoration: none;
    font-size: 14px;
}

.view-profile .dashicons {
    margin-left: 5px;
}

.instructors-header h3 {
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}