/* Main Container */
.wc-meet-the-jury {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    /* Remove gap as columns are gone */
    padding: 40px 0;
    width: 100%;
    margin: 0 auto;
}

/* Left Content Column */
.wc-mtj-content {
    flex: 0 0 32%;
    /* Approx 1/3 width */
    max-width: 32%;
    padding-right: 40px;
}

.wc-mtj-title {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    color: #281E69;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0px;
}

.wc-mtj-title a {
    color: inherit;
    text-decoration: none;
}

.wc-mtj-description {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 25px;
    color: #000;
    margin-bottom: 30px;
}

.wc-mtj-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #009FE3;
    color: #fff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    border-radius: 22px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.wc-mtj-btn:hover {
    background-color: #007bb0;
}

/* Right Slider Column */
.wc-mtj-slider {
    flex: 1;
    min-width: 0;
    /* Important for flex items to shrink properly */
    position: relative;
}

/* Scoped Swiper Styles */
.wc-meet-the-jury .swiper-container {
    width: 100%;
    padding-bottom: 50px;
    /* Space for pagination */
    overflow: hidden;
}

.wc-meet-the-jury .swiper-slide {
    display: flex;
    justify-content: center;
}

/* Card Styling */
.wc-mtj-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 10px 0px;
    position: relative;
    /* Positioning context for border arc overlay */
}

/* Image Wrapper with Partial Border */
.wc-mtj-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: 25px;
    border-radius: 50%;
    overflow: hidden;
    /* Clip image to circle */
    flex-shrink: 0;
}

.wc-mtj-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* Focus on face */
    border-radius: 50%;
    display: block;
    min-width: 250px;
}

/* Border Arc Overlay — overlays image wrapper edge exactly */
.wc-mtj-border-arc {
    position: absolute;
    top: 10px;
    /* card has 10px padding-top, so image wrapper starts at 10px */
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    width: 234px;
    height: 220px;
    border-radius: 50%;
    border: 7px solid #281E69;
    border-right-color: transparent;
    border-bottom-color: transparent;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 10;
    background: transparent;
}

/* Meta */
.wc-mtj-meta {
    max-width: 180px;
    text-align: center;
}

.wc-mtj-name {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    color: #281E69;
    margin: 0 0 4px;
}

.wc-mtj-position {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
    margin: 0;
}

/* Positioning context for arrows */
.wc-meet-the-jury .wc-mtj-swiper-wrapper-outer {
    position: relative;
    width: 100%;
}

/* Swiper Arrows — hidden on desktop, mobile-only */
.wc-meet-the-jury .swiper-button-prev,
.wc-meet-the-jury .swiper-button-next {
    display: none !important;
}

/* Swiper Pagination */
.wc-meet-the-jury .swiper-pagination {
    bottom: 0;
    text-align: center;
}

.wc-meet-the-jury .swiper-pagination-bullet {
    width: 16.95px;
    height: 17.09px;
    background: #D9D9D9;
    opacity: 1;
    margin: 0 6px;
}

.wc-meet-the-jury .swiper-pagination-bullet-active {
    background: #009FE3;
}


/* Responsive */
@media (max-width: 1024px) {
    .wc-meet-the-jury {
        flex-direction: column;
        text-align: center;
    }

    .wc-mtj-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .wc-mtj-slider {
        width: 100%;
    }
}

/* Mobile: hide bullets, show arrows */
@media (max-width: 767px) {
    .wc-meet-the-jury .swiper-pagination {
        display: none !important;
    }

    .wc-meet-the-jury .swiper-button-prev,
    .wc-meet-the-jury .swiper-button-next {
        display: flex !important;
        color: #281E69 !important;
        position: absolute !important;
        top: 45% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        width: 44px !important;
        height: 44px !important;
    }

    .wc-meet-the-jury .swiper-button-prev {
        left: -15px !important;
    }

    .wc-meet-the-jury .swiper-button-next {
        right: -15px !important;
    }
}