.prisma-team-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.prisma-team-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(136,212,152,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.prisma-team-showcase>.container {
    position: relative;
    z-index: 2;
}

.prisma-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.prisma-team-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.prisma-team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #88d498, #93ce78);
    border-radius: 2px;
}

.prisma-team-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    font-weight: 400;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prisma-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    margin-bottom: 30px;
    height: 420px;
}

.prisma-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.prisma-member-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #88d498, #93ce78);
}

.prisma-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.prisma-member-card:hover .prisma-member-photo {
    transform: scale(1.1);
}

.prisma-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(136, 212, 152, 0.8) 0%,
            rgba(147, 206, 120, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prisma-member-card:hover .prisma-member-overlay {
    opacity: 1;
}

.prisma-social-links {
    display: flex;
    gap: 15px;
}

.prisma-social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.prisma-member-card:hover .prisma-social-btn {
    transform: translateY(0);
    opacity: 1;
}

.prisma-member-card:hover .prisma-social-btn:nth-child(1) {
    transition-delay: 0.1s;
}

.prisma-member-card:hover .prisma-social-btn:nth-child(2) {
    transition-delay: 0.15s;
}

.prisma-member-card:hover .prisma-social-btn:nth-child(3) {
    transition-delay: 0.2s;
}

.prisma-member-card:hover .prisma-social-btn:nth-child(4) {
    transition-delay: 0.25s;
}

.prisma-social-btn:hover {
    background: white;
    color: #88d498;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.prisma-member-info {
    padding: 25px;
    text-align: center;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    position: relative;
}

.prisma-member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.2;
}

.prisma-member-position {
    font-size: 1rem;
    color: #5a6c7d;
    font-weight: 500;
    font-style: italic;
}

.prisma-member-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #88d498, #93ce78);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-link {
    padding: 12px 16px;
    border: 2px solid #88d498;
    background: transparent;
    color: #88d498;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: #88d498;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 212, 152, 0.3);
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading and No Results States */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.no-results p {
    font-size: 1.1rem;
}

/* Animation untuk fade in */
.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation delays untuk efek masuk berurutan */
.prisma-member-card:nth-child(1) {
    animation-delay: 0.1s;
}

.prisma-member-card:nth-child(2) {
    animation-delay: 0.2s;
}

.prisma-member-card:nth-child(3) {
    animation-delay: 0.3s;
}

.prisma-member-card:nth-child(4) {
    animation-delay: 0.4s;
}

.prisma-member-card:nth-child(5) {
    animation-delay: 0.5s;
}

.prisma-member-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .prisma-team-title {
        font-size: 2.5rem;
    }

    .prisma-member-card {
        height: 400px;
    }

    .prisma-member-image-container {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .prisma-team-showcase {
        padding: 60px 0;
    }

    .prisma-team-title {
        font-size: 2.2rem;
    }

    .prisma-team-subtitle {
        font-size: 1.1rem;
    }

    .prisma-member-card {
        height: 380px;
        margin-bottom: 25px;
    }

    .prisma-member-image-container {
        height: 240px;
    }

    .prisma-social-links {
        gap: 12px;
    }

    .prisma-social-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .prisma-member-info {
        padding: 20px;
    }

    .prisma-member-name {
        font-size: 1.2rem;
    }

    .prisma-member-position {
        font-size: 0.95rem;
    }

    .prisma-team-title {
        font-size: 1.8rem;
    }

    .prisma-team-subtitle {
        font-size: 1rem;
    }
}