/**
 * Trustee slider – 2 per slide, responsive for all screen sizes.
 *
 * @package chadai_trustee_slider
 */

.chadai-trustee-slider-wrap {
    --chadai-trustee-font: 'Open Sans', sans-serif;
    --chadai-trustee-name-color: #00629B;
    --chadai-trustee-link-color: #00629B;
    --chadai-trustee-meta-color: #000000;
    --chadai-trustee-desc-color: #000000;
    box-sizing: border-box;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 64px 40px;
    overflow-x: hidden;
    position: relative;
}

.chadai-trustee-slider-wrap .chadai-trustee-swiper,
.chadai-trustee-slider-wrap .swiper-wrapper {
    width: 100%;
}

.chadai-trustee-slider-wrap .swiper-slide {
    min-width: 0;
    width: 100%;
}

.chadai-trustee-slider-wrap .chadai-trustee-slide-inner {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.chadai-trustee-slider-wrap *,
.chadai-trustee-slider-wrap *::before,
.chadai-trustee-slider-wrap *::after {
    box-sizing: border-box;
}

.chadai-trustee-swiper {
    overflow: hidden;
    padding-bottom: 52px !important;
    width: 100%;
    position: relative;
}

.chadai-trustee-slider-wrap .swiper-slide,
.chadai-trustee-slider-wrap .chadai-trustee-slide,
.chadai-trustee-slider-wrap .chadai-trustee-slide-inner {
    background: transparent;
}

.chadai-trustee-slide-inner {
    display: block;
    padding: 16px 0;
    width: 100%;
    min-width: 0;
}

/* Card: fixed height, content can shrink so no truncation on small viewports */
.chadai-trustee-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.25rem 1.75rem;
    align-items: center;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    background: transparent;
    padding: 0;
}

/* Image: larger size; object-position favors head so it is not cropped off */
.chadai-trustee-card-image-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.chadai-trustee-card-image {
    width: 220px !important;
    height: 220px !important;
    min-width: 220px !important;
    min-height: 220px !important;
    max-width: 220px !important;
    max-height: 220px !important;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
}

.chadai-trustee-card-placeholder {
    background: #e8e8e8;
    position: absolute;
    inset: 0;
    width: 220px;
    height: 220px;
}

.chadai-trustee-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
    max-width: 100%;
}

.chadai-trustee-card-name {
    font-family: var(--chadai-trustee-font);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--chadai-trustee-name-color);
    margin: 0 0 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.chadai-trustee-card-meta {
    font-family: var(--chadai-trustee-font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--chadai-trustee-meta-color);
    text-transform: uppercase;
    margin: 0 0 8px;
    word-wrap: break-word;
}

.chadai-trustee-card-desc {
    font-family: var(--chadai-trustee-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3em;
    color: var(--chadai-trustee-desc-color);
    margin: 0 0 8px;
    flex: 1 1 auto;
    word-wrap: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
}

.chadai-trustee-card-link {
    font-family: var(--chadai-trustee-font);
    color: var(--chadai-trustee-link-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
    display: inline-block;
    margin-top: auto;
}

.chadai-trustee-card-link:hover {
    color: var(--chadai-trustee-link-color);
    text-decoration: underline;
}

/* Navigation arrows – outside slider, equal vertical alignment */
.chadai-trustee-btn {
    position: absolute;
    top: 50%;
    left: auto;
    right: auto;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--chadai-trustee-link-color);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.chadai-trustee-btn:hover {
    background: #004d7a;
    opacity: 1;
    color: #fff;
}

.chadai-trustee-btn:focus,
.chadai-trustee-btn:active {
    outline: none;
    color: #fff;
    background: var(--chadai-trustee-link-color);
}

.chadai-trustee-btn:active {
    background: #004d7a;
}

.chadai-trustee-btn:focus-visible {
    outline: 2px solid var(--chadai-trustee-link-color);
    outline-offset: 2px;
    color: #fff;
    background: var(--chadai-trustee-link-color);
}

.chadai-trustee-btn:disabled,
.chadai-trustee-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: var(--chadai-trustee-link-color);
}

.chadai-trustee-btn-prev {
    left: 8px;
    right: auto;
}

.chadai-trustee-btn-next {
    left: auto;
    right: 8px;
}

.chadai-trustee-btn::after {
    content: "";
    width: 10px;
    height: 10px;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    display: block;
}

.chadai-trustee-btn-prev::after {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.chadai-trustee-btn-next::after {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Pagination – well below content, touch-friendly */
.chadai-trustee-slider-wrap .chadai-trustee-swiper .swiper-pagination.chadai-trustee-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 4px !important;
    padding-top: 20px;
}

.chadai-trustee-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    background-color: #ccc;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.chadai-trustee-pagination .swiper-pagination-bullet-active {
    transform: scale(1.6);
    background-color: #FFA820;
    opacity: 1;
}

/* ----- Tablet (max-width: 1024px) ----- */
@media (max-width: 1024px) {
    .chadai-trustee-slider-wrap {
        padding: 0 48px 36px;
    }

    .chadai-trustee-swiper {
        padding-bottom: 50px !important;
    }

    .chadai-trustee-slide-inner {
        gap: 32px 40px;
        padding: 16px 0;
    }

    .chadai-trustee-card {
        grid-template-columns: 200px minmax(0, 1fr);
        height: 260px;
        min-height: 260px;
        max-height: 260px;
        gap: 1.25rem 1.5rem;
    }

    .chadai-trustee-card-image-wrap {
        width: 200px;
        height: 200px;
    }

    .chadai-trustee-card-image {
        width: 200px !important;
        height: 200px !important;
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 200px !important;
        max-height: 200px !important;
    }

    .chadai-trustee-card-placeholder {
        width: 200px;
        height: 200px;
    }

    .chadai-trustee-card-name {
        font-size: 18px;
    }

    .chadai-trustee-card-meta {
        font-size: 14px;
    }

    .chadai-trustee-card-desc {
        font-size: 13px;
    }

    .chadai-trustee-btn-prev {
        left: 12px;
        right: auto;
    }

    .chadai-trustee-btn-next {
        left: auto;
        right: 12px;
    }

    .chadai-trustee-slider-wrap {
        min-height: 300px;
    }
}

/* ----- Small tablet / large phone (max-width: 767px) – 1 column, stacked card; hide arrows on mobile ----- */
@media (max-width: 767px) {
    .chadai-trustee-slider-wrap {
        padding: 0 20px 32px;
        min-height: 320px;
    }

    .chadai-trustee-slider-wrap .chadai-trustee-btn-prev,
    .chadai-trustee-slider-wrap .chadai-trustee-btn-next {
        display: none !important;
    }

    .chadai-trustee-slider-wrap .chadai-trustee-swiper {
        padding-bottom: 52px !important;
    }

    .chadai-trustee-slider-wrap .chadai-trustee-swiper .swiper-pagination.chadai-trustee-pagination {
        padding-top: 32px !important;
        margin-top: 0 !important;
    }

    .chadai-trustee-slide-inner {
        padding: 12px 0;
    }

    .chadai-trustee-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
        min-height: 280px;
        max-height: none;
        gap: 1rem;
        justify-items: center;
        align-items: flex-start;
    }

    .chadai-trustee-card-image-wrap {
        width: 180px;
        height: 180px;
        order: 1;
    }

    .chadai-trustee-card-image {
        width: 180px !important;
        height: 180px !important;
        min-width: 180px !important;
        min-height: 180px !important;
        max-width: 180px !important;
        max-height: 180px !important;
    }

    .chadai-trustee-card-placeholder {
        width: 180px;
        height: 180px;
    }

    .chadai-trustee-card-content {
        order: 2;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .chadai-trustee-card-name {
        font-size: 16px;
    }

    .chadai-trustee-card-meta {
        font-size: 11px;
    }

    .chadai-trustee-card-desc {
        font-size: 12px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .chadai-trustee-card-link {
        font-size: 12px;
    }

    .chadai-trustee-btn {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .chadai-trustee-btn::after {
        width: 8px;
        height: 8px;
    }

    .chadai-trustee-btn-prev {
        left: 6px;
        right: auto;
    }

    .chadai-trustee-btn-next {
        left: auto;
        right: 6px;
    }

    .chadai-trustee-pagination .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        min-width: 9px;
        min-height: 9px;
    }
}

/* ----- Mobile (max-width: 480px) ----- */
@media (max-width: 480px) {
    .chadai-trustee-slider-wrap {
        padding: 0 20px 28px;
        min-height: 300px;
    }

    .chadai-trustee-slider-wrap .chadai-trustee-swiper {
        padding-bottom: 58px !important;
    }

    .chadai-trustee-slider-wrap .chadai-trustee-swiper .swiper-pagination.chadai-trustee-pagination {
        padding-top: 28px !important;
    }

    .chadai-trustee-card {
        min-height: 260px;
        height: auto;
        max-height: none;
    }

    .chadai-trustee-slide-inner {
        padding: 8px 0;
    }

    .chadai-trustee-card-image-wrap {
        width: 156px;
        height: 156px;
    }

    .chadai-trustee-card-image {
        width: 156px !important;
        height: 156px !important;
        min-width: 156px !important;
        min-height: 156px !important;
        max-width: 156px !important;
        max-height: 156px !important;
    }

    .chadai-trustee-card-placeholder {
        width: 156px;
        height: 156px;
    }

    .chadai-trustee-card-name {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .chadai-trustee-card-meta {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .chadai-trustee-card-desc {
        font-size: 12px;
        margin-bottom: 8px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .chadai-trustee-card-link {
        font-size: 12px;
    }

    .chadai-trustee-btn {
        width: 36px;
        height: 36px;
        top: 50%;
        transform: translateY(-50%);
    }

    .chadai-trustee-btn::after {
        width: 7px;
        height: 7px;
    }

    .chadai-trustee-btn-prev {
        left: 4px;
        right: auto;
    }

    .chadai-trustee-btn-next {
        left: auto;
        right: 4px;
    }
}

/* ----- Small phone (max-width: 360px) ----- */
@media (max-width: 360px) {
    .chadai-trustee-slider-wrap {
        padding: 0 16px 24px;
        min-height: 280px;
    }

    .chadai-trustee-slider-wrap .chadai-trustee-swiper {
        padding-bottom: 52px !important;
    }

    .chadai-trustee-slider-wrap .chadai-trustee-swiper .swiper-pagination.chadai-trustee-pagination {
        padding-top: 24px !important;
    }

    .chadai-trustee-card {
        min-height: 240px;
        height: auto;
        max-height: none;
    }

    .chadai-trustee-card-image-wrap {
        width: 132px;
        height: 132px;
    }

    .chadai-trustee-card-image {
        width: 132px !important;
        height: 132px !important;
        min-width: 132px !important;
        min-height: 132px !important;
        max-width: 132px !important;
        max-height: 132px !important;
    }

    .chadai-trustee-card-placeholder {
        width: 132px;
        height: 132px;
    }

    .chadai-trustee-card-name {
        font-size: 16px;
    }
}

/* Force spacing above dots to win over theme/Elementor (load last in file) */
body .chadai-trustee-slider-wrap .chadai-trustee-swiper {
    padding-bottom: 52px !important;
}
body .chadai-trustee-slider-wrap .chadai-trustee-swiper .swiper-pagination.chadai-trustee-pagination {
    margin-top: 4px !important;
}
@media (max-width: 1024px) {
    body .chadai-trustee-slider-wrap .chadai-trustee-swiper {
        padding-bottom: 50px !important;
    }
}
@media (max-width: 767px) {
    body .chadai-trustee-slider-wrap .chadai-trustee-swiper {
        padding-bottom: 64px !important;
    }
    body .chadai-trustee-slider-wrap .chadai-trustee-swiper .swiper-pagination.chadai-trustee-pagination {
        margin-top: 2px !important;
    }
}
@media (max-width: 480px) {
    body .chadai-trustee-slider-wrap .chadai-trustee-swiper {
        padding-bottom: 58px !important;
    }
}
@media (max-width: 360px) {
    body .chadai-trustee-slider-wrap .chadai-trustee-swiper {
        padding-bottom: 52px !important;
    }
}
