/* --- Elegant Team Section --- */
.wbk-team-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.wbk-team-title {
    color: #002e63;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.wbk-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

/* --- Refined Card Design --- */
.wbk-team-card {
    background: #ffffff;
    border-radius: 20px;
    padding-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0, 46, 99, 0.05);
    border: 1px solid rgba(0, 46, 99, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.wbk-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 46, 99, 0.12);
}

/* --- Updated Team Image Fix --- */
.wbk-team-img {
    width: 100%;
    height: 320px; /* Increased height so heads aren't cut off */
    background-size: cover;
    background-position: center top; /* Focus on the face/top of the image */
    border-radius: 15px 15px 0 0;
    transition: transform 0.6s ease;
}

/* Ensure the container doesn't squash the images */
.wbk-team-img-container {
    position: relative;
    overflow: hidden;
    height: 320px; 
    border-radius: 15px 15px 0 0;
}

.wbk-team-card:hover .wbk-team-img {
    transform: scale(1.04);
}

/* --- Elegant Tagline/Role Styling --- */
.wbk-team-name {
    margin: 20px 0 5px;
    color: #002e63;
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.wbk-team-card:hover .wbk-team-name {
    color: #070056; /* Faithway Orange */
}

.wbk-team-role {
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
}

/* --- Highlighted Card (CEO/Head) --- */
.wbk-team-card--highlight {
    border-top: 5px solid #00047a; /* Branded Orange Highlight */
}

/* --- Subtle Decorative Element --- */
.wbk-team-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #e67e22;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.wbk-team-card:hover::after {
    width: 100%;
}