/* Mentors and Instructors */
.mentor-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mentor-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.mentor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    padding: 5px;
    background-color: var(--bg-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.mentor-card:hover .mentor-image img {
    transform: scale(1.05);
}

.mentor-info {
    text-align: center;
    margin-bottom: 20px;
    flex-grow: 0;
    flex-shrink: 0;
}

.mentor-info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 700;
}

.mentor-role {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-weight: 500;
}

.mentor-expertise {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 10px;
    flex-grow: 1;
}

.mentor-expertise h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
}

.mentor-expertise ul {
    padding-left: 5px;
    margin-top: 10px;
}

.mentor-expertise li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.mentor-expertise li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E9B949'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
}

.instructors {
    background-color: var(--bg-secondary);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-lg);
}

.instructor-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.instructor-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.instructor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instructor-photo:hover {
    transform: scale(1.05);
}

.instructor-card h4 {
    margin: 15px 0 5px;
    font-size: 1.2rem;
}

.instructor-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding: 0 15px;
}

.instructor-company {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
} 