/* Team Carousel Base Styles */
.team-carousel-wrapper-ef7d3e32 {
    position: relative;
    width: 100%;
}

.swiper-container-ef7d3e32 {
    width: 100%;
    padding-bottom: 40px !important;
}

.team-card-ef7d3e32 {
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-card-ef7d3e32:hover {
    transform: translateY(-5px);
}

.image-container-ef7d3e32 {
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-container-ef7d3e32 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-card-ef7d3e32:hover .image-container-ef7d3e32 img {
    transform: scale(1.05);
}

.member-info-ef7d3e32 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.member-name-ef7d3e32 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.member-role-ef7d3e32 {
    font-size: 0.9rem;
    font-weight: 500;
}

.member-socials-ef7d3e32 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.social-icon-ef7d3e32 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f6f8;
    color: #001846;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icon-ef7d3e32:hover {
    background-color: #13B1BD;
    color: #ffffff;
}

.social-icon-ef7d3e32 svg,
.social-icon-ef7d3e32 i {
    font-size: 14px;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.bio-btn-ef7d3e32 {
    align-self: flex-start;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    background-color: transparent;
    border: 1px solid #13B1BD;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

/* Modal Popup Styles */
.team-modal-overlay-ef7d3e32 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

.team-modal-content-ef7d3e32 {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    animation: modalReveal-ef7d3e32 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalReveal-ef7d3e32 {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.team-modal-close-ef7d3e32 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f3f5;
    border: none;
    font-size: 24px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 2;
}

.team-modal-close-ef7d3e32:hover {
    background-color: #e9ecef;
}

.team-modal-body-ef7d3e32 {
    padding: 40px;
}

.team-modal-grid-ef7d3e32 {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.team-modal-image-wrap-ef7d3e32 {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f1f3f5;
}

.team-modal-image-wrap-ef7d3e32 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-modal-contact-ef7d3e32 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.modal-contact-link-ef7d3e32 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
}

.modal-contact-link-ef7d3e32:hover {
    color: #13B1BD;
}

.modal-contact-link-ef7d3e32 i {
    color: #13B1BD;
    width: 16px;
}

.team-modal-right-ef7d3e32 h2 {
    margin: 0 0 5px 0;
    font-size: 1.75rem;
    color: #001846;
}

.modal-payload-role-target-ef7d3e32 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #13B1BD;
    margin-bottom: 20px;
}

.modal-payload-text-target-ef7d3e32 {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
}

@media (max-width: 767px) {
    .team-modal-grid-ef7d3e32 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .team-modal-body-ef7d3e32 {
        padding: 30px 20px 20px 20px;
    }
}
