/* Homepage — Our Leadership */

.hp-leadership {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, #f8faf9 0%, #fff 50%, #fdfbf7 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.hp-leadership .container {
    max-width: var(--hp-container-max, 1320px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hp-leadership__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hp-leadership__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #9a7209;
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.22);
}

.hp-leadership__head h2 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a !important;
}

.hp-leadership__head p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: #64748b !important;
}

.hp-leadership__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(0, 200, 104, 0.35);
    font-size: 13px;
    font-weight: 700;
    color: #00a855 !important;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.hp-leadership__all:hover {
    background: rgba(0, 200, 104, 0.08);
    color: #087a42 !important;
}

/* Position filters — full width row below header */
.hp-leadership__filters {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hp-leadership__filters--row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hp-leadership .pl-filter-swiper-wrap {
    position: relative;
    width: 100%;
    padding: 0 48px;
    min-height: 48px;
}

.hp-leadership .plFilterSwiper {
    width: 100%;
    overflow: hidden;
}

.hp-leadership .plFilterSwiper .swiper-wrapper {
    align-items: center;
}

.hp-leadership .plFilterSwiper .swiper-slide {
    width: auto !important;
    height: auto;
}

.hp-leadership .pl-filter-btn {
    border: 1px solid rgba(0, 200, 104, 0.25);
    background: #fff;
    color: #146f38 !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.hp-leadership .pl-filter-btn:hover,
.hp-leadership .pl-filter-btn.active {
    background: #00a855;
    border-color: #00a855;
    color: #fff !important;
}

.hp-leadership .pl-filter-swiper-wrap .swiper-button-prev,
.hp-leadership .pl-filter-swiper-wrap .swiper-button-next {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%);
}

.hp-leadership .pl-filter-swiper-wrap .swiper-button-prev {
    left: 0;
}

.hp-leadership .pl-filter-swiper-wrap .swiper-button-next {
    right: 0;
}

.hp-leadership .pl-filter-swiper-wrap .swiper-button-prev::after,
.hp-leadership .pl-filter-swiper-wrap .swiper-button-next::after {
    font-size: 13px !important;
    font-weight: bold;
    color: #b58c35;
}

.hp-leadership__empty {
    display: none;
    text-align: center;
    padding: 2rem;
    color: #64748b !important;
    font-size: 15px;
    margin: 0;
}

/* Member slider */
.hp-leadership__swiper {
    width: 100%;
    margin: 0;
    padding: 0 4px 52px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.hp-leadership__swiper .swiper-wrapper {
    align-items: stretch;
}

.hp-leadership__swiper .swiper-slide {
    height: auto;
}

.hp-leadership__card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-leadership__card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 200, 104, 0.3);
    box-shadow: 0 14px 32px rgba(0, 200, 104, 0.12);
}

.hp-leadership__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e8f5ee;
}

.hp-leadership__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hp-leadership__card:hover .hp-leadership__photo img {
    transform: scale(1.04);
}

.hp-leadership__contact {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(20, 111, 56, 0.82);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hp-leadership__card:hover .hp-leadership__contact {
    opacity: 1;
}

.hp-leadership__contact a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #146f38 !important;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hp-leadership__contact a:hover {
    background: #b58c35;
    color: #fff !important;
    transform: scale(1.08);
}

.hp-leadership__info {
    padding: 18px 16px 20px;
    text-align: center;
}

.hp-leadership__info h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a !important;
}

.hp-leadership__info span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #b58c35 !important;
}

/* Swiper nav */
.hp-leadership__swiper .swiper-button-next,
.hp-leadership__swiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    top: auto;
    bottom: 0;
    margin-top: 0;
}

.hp-leadership__swiper .swiper-button-next {
    right: calc(50% - 52px);
}

.hp-leadership__swiper .swiper-button-prev {
    left: calc(50% - 52px);
}

.hp-leadership__swiper .swiper-button-next::after,
.hp-leadership__swiper .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: bold;
    color: #00a855;
}

.hp-leadership__swiper .swiper-button-next:hover,
.hp-leadership__swiper .swiper-button-prev:hover {
    background: #00a855;
    border-color: #00a855;
}

.hp-leadership__swiper .swiper-button-next:hover::after,
.hp-leadership__swiper .swiper-button-prev:hover::after {
    color: #fff;
}

@media (max-width: 575px) {
    .hp-leadership .pl-filter-swiper-wrap {
        padding: 0 36px;
    }

    .hp-leadership .container {
        gap: 1.5rem;
    }
}
