/* ════════════ TRUSTEES SECTION ════════════ */
.trustees-section {
    padding: 4.16vw 0;
    background-color: var(--theme-bg-soft, #fcfcfc);
}

.trustees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.6vw;
    margin-top: 4vw;
}

@media (max-width: 960px) {
    .trustees-grid {
        grid-template-columns: 1fr;
        gap: 8vw;
    }
}

.trustee-card {
    background: #fff;
    border-radius: 0.625vw; /* 12px */
    overflow: hidden;
    box-shadow: 0 0.2vw 1.04vw rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.82vw 1.3vw; /* Match WWD padding */
}

.trustee-card:hover {
    transform: translateY(-0.41vw);
    box-shadow: 0 0.78vw 1.56vw rgba(51, 75, 117, 0.08);
    border-color: rgba(216, 183, 80, 0.4);
}

.trustee-img-wrapper {
    width: 6.5vw; /* ~125px */
    height: 6.5vw;
    margin-bottom: 1.5vw;
    background-color: #f8f8f8;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #f1c40f;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.trustee-card:hover .trustee-img-wrapper {
    transform: scale(1.05);
}

.trustee-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trustee-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.trustee-name {
    font-family: var(--font-heading, 'Marcellus', serif);
    font-size: 1.3vw;
    color: #1a1a1a;
    margin-bottom: 0.8vw;
    font-weight: 600;
    line-height: 1.2;
}

.trustee-designation {
    font-size: 0.95vw;
    color: #555;
    margin-bottom: 1.2vw;
    line-height: 1.5;
    flex-grow: 1;
    font-weight: 500;
}

.trustee-location {
    font-size: 0.75vw;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    border-top: 1px solid #f5f5f5;
    padding-top: 1vw;
    margin-top: auto;
}

@media (max-width: 960px) {
    .trustee-card {
        padding: 6.67vw 5.33vw;
        border-radius: 3vw;
    }
    .trustee-img-wrapper {
        width: 30vw;
        height: 30vw;
        margin-bottom: 5vw;
    }
    .trustee-name {
        font-size: 5.5vw;
        margin-bottom: 3vw;
    }
    .trustee-designation {
        font-size: 4vw;
        margin-bottom: 4vw;
    }
    .trustee-location {
        font-size: 3vw;
        padding-top: 4vw;
    }
}

/* ════════════ HOME SLIDER SECTION ════════════ */
.trustee-slider-section {
    padding: 2.5vw 0;
    background-color: var(--theme-bg-soft, #fcfcfc);
    overflow: hidden;
}

.ts-header {
    text-align: center;
    margin-bottom: 1.5vw;
}

.ts-label {
    display: inline-block;
    font-size: 1vw;
    letter-spacing: 0.3vw;
    text-transform: uppercase;
    color: var(--theme-primary, #f1c40f);
    margin-bottom: 1vw;
    font-weight: 600;
}

.ts-title {
    font-family: var(--font-heading, 'Marcellus', serif);
    font-size: clamp(1.5vw, 2.2vw, 2.5vw);
    color: var(--theme-accent, #1a1a1a);
    line-height: 1.2;
    margin-bottom: 0;
}

.ts-slider-wrap {
    position: relative;
    width: 100%;
}

.ts-slider {
    display: flex;
    gap: 1.56vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 1.04vw;
}

.ts-slider::-webkit-scrollbar {
    display: none;
}

.ts-card {
    flex: 0 0 calc(33.33% - 1.04vw);
    min-width: 320px;
    scroll-snap-align: start;
}

.ts-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.34vw;
    width: 2.34vw;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--theme-primary, #f1c40f);
}

.ts-nav-btn:hover {
    background: var(--theme-primary, #f1c40f);
    color: white;
}

.ts-nav-btn svg {
    width: 1.25vw;
    height: 1.25vw;
    transition: transform 0.3s;
}

.ts-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.ts-prev {
    left: -1.04vw;
}

.ts-next {
    right: -1.04vw;
}

@media (max-width: 960px) {
    .trustee-slider-section { padding: 8vw 0; }
    .ts-header { margin-bottom: 6vw; }
    .ts-slider { gap: 5.33vw; }
    .ts-card { flex: 0 0 85%; scroll-snap-align: center; }
    .ts-nav-btn { width: 12vw; height: 12vw; }
    .ts-nav-btn svg { width: 5.33vw; height: 5.33vw; }
    .ts-prev { left: -4vw; }
    .ts-next { right: -4vw; }
    .ts-title { font-size: 8vw; }
    .ts-label { font-size: 3.5vw; }
}
