/* GW Instructors Carousel Styles */

.gw-instructors-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.gw-instructor-card {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gw-instructor-card:hover {
    transform: translateY(-5px);
}

.gw-instructor-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

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

.gw-instructor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

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

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

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

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

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

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

.gw-instructor-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-top: auto;
}

.gw-stat {
    white-space: nowrap;
}

.gw-stat-separator {
    color: #ddd;
}

/* Swiper Navigation */
.gw-instructors-carousel-wrapper .swiper-button-next,
.gw-instructors-carousel-wrapper .swiper-button-prev {
    color: #333;
    transition: all 0.3s ease;
}

.gw-instructors-carousel-wrapper .swiper-button-next:hover,
.gw-instructors-carousel-wrapper .swiper-button-prev:hover {
    color: #00bcd4;
}

.gw-instructors-carousel-wrapper .swiper-button-next:after,
.gw-instructors-carousel-wrapper .swiper-button-prev:after {
    font-size: 40px;
}

/* Swiper Pagination */
.gw-instructors-carousel-wrapper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.gw-instructors-carousel-wrapper .swiper-pagination-bullet {
    background: #333;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.gw-instructors-carousel-wrapper .swiper-pagination-bullet-active {
    background: #00bcd4;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .gw-instructor-name {
        font-size: 16px;
    }

    .gw-instructor-description {
        font-size: 13px;
    }

    .gw-instructor-avatar {
        width: 100px;
        height: 100px;
    }

    .gw-instructors-carousel-wrapper .swiper-button-next,
    .gw-instructors-carousel-wrapper .swiper-button-prev {
        display: none;
    }
}
