/* GW Single Instructor Styles */

.gw-single-instructor {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gw-single-instructor-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.gw-single-instructor-link:hover {
    text-decoration: none;
}

.gw-single-instructor-image {
    flex-shrink: 0;
}

.gw-single-instructor-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gw-single-instructor-content {
    flex: 1;
    min-width: 0;
}

.gw-single-instructor-name {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    transition: color 0.3s ease;
}

.gw-single-instructor-link:hover .gw-single-instructor-name {
    color: #00bcd4;
}

.gw-single-instructor-position {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.gw-single-instructor-languages {
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.gw-single-instructor-description {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.gw-single-instructor-description p {
    margin: 0 0 10px 0;
}

.gw-single-instructor-description p:last-child {
    margin-bottom: 0;
}

.gw-single-instructor-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gw-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #888;
}

.gw-stat i.dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: #00bcd4;
}

/* Responsive */
@media (max-width: 768px) {
    .gw-single-instructor-link {
        flex-direction: column;
    }

    .gw-single-instructor-image {
        width: 100% !important;
        min-width: 100% !important;
    }

    .gw-single-instructor-name {
        font-size: 20px;
    }
}
