/* Course Instructors Widget 116 */

.ci116-wrap {
    font-family: 'Open Sans', sans-serif;
    max-width: 860px;
    margin: 0 auto;
}

/* Header */
.ci116-header {
    text-align: center;
    margin-bottom: 48px;
}

.ci116-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
    line-height: 1.2;
}

.ci116-subtitle {
    font-size: 18px;
    color: #6B9A76;
    margin: 0;
    line-height: 1.5;
}

/* List */
.ci116-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card */
.ci116-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background-color: #ffffff;
    border: 1px solid #e8edf0;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.2s ease;
}

.ci116-card:hover {
    box-shadow: 0 4px 20px rgba(59, 130, 140, 0.1);
}

/* Avatar */
.ci116-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3B828C 0%, #6B9A76 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ci116-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.ci116-avatar-icon {
    width: 34px;
    height: 34px;
    opacity: 0.95;
}

/* Info */
.ci116-info {
    flex: 1;
    min-width: 0;
}

.ci116-name {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
    line-height: 1.3;
}

.ci116-role {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6B9A76;
    margin: 0 0 10px;
    line-height: 1.4;
}

.ci116-bio {
    font-size: 15px;
    color: #4A4A4A;
    margin: 0;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 600px) {
    .ci116-card {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .ci116-title {
        font-size: 28px;
    }

    .ci116-subtitle {
        font-size: 16px;
    }
}
