/* Management Team Page Styles */
.management-team-page {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.management-header {
    margin-bottom: 80px;
}

.management-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
}

.team-members {
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-item {
    margin-bottom: 100px;
    background: rgba(240, 247, 255, 0.75);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-member-item:last-child {
    margin-bottom: 0;
}

.team-member-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.team-member-content {
    padding-left: 40px;
}

.team-member-header {
    margin-bottom: 30px;
    position: relative;
}

.team-member-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.team-member-title {
    font-size: 1.25rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0077B5;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.team-member-linkedin:hover {
    background: #005885;
    color: #ffffff;
    transform: scale(1.1);
}

.team-member-vcard {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    background: #2C3E50;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.team-member-vcard:hover {
    background: #1a252f;
    color: #ffffff;
    transform: scale(1.1);
}

.team-member-bio {
    color: #000000;
    line-height: 1.8;
}

.team-member-bio p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #000000;
}

.team-member-bio p:last-child {
    margin-bottom: 0;
}

.team-member-bio p strong {
    color: #2C3E50;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .management-title {
        font-size: 2.75rem;
    }
    
    .team-member-item {
        padding: 40px 30px;
    }
    
    .team-member-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .team-member-image-wrapper {
        min-height: 350px;
    }
    
    .team-member-name {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .management-team-page {
        padding: 60px 0 50px;
        background-attachment: scroll;
    }
    
    .management-header {
        margin-bottom: 50px;
    }
    
    .management-title {
        font-size: 2.25rem;
    }
    
    .team-member-item {
        padding: 35px 25px;
        margin-bottom: 60px;
    }
    
    .team-member-image-wrapper {
        min-height: 300px;
    }
    
    .team-member-name {
        font-size: 2rem;
    }
    
    .team-member-title {
        font-size: 1.15rem;
    }
    
    .team-member-bio p {
        font-size: 1rem;
        margin-bottom: 18px;
    }
}

@media (max-width: 576px) {
    .management-title {
        font-size: 1.75rem;
    }
    
    .team-member-item {
        padding: 30px 20px;
    }
    
    .team-member-image-wrapper {
        min-height: 250px;
    }
    
    .team-member-name {
        font-size: 1.75rem;
    }
    
    .team-member-title {
        font-size: 1.05rem;
    }
    
    .team-member-bio p {
        font-size: 0.95rem;
    }
}
