/* Leadership Team Styles */
.leadership-content {
    max-width: 1200px;
    margin: 0 auto;
}

.leader-profile {
    position: relative;
}

.leader-image {
    position: relative;
}

.leader-image .img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.leader-image .img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.leader-image .img-wrap:hover img {
    transform: scale(1.05);
}

.leader-info h2 {
    font-size: 36px;
    line-height: 1.2;
}

.leader-title {
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 24px;
}

.leader-bio h6 {
    font-size: 18px;
    font-weight: 600;
}

.leader-expertise {
    
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-item {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #0C5AF5;
    color: #fff;
    border-color: #0C5AF5;
}

.leader-contact .tf-btn {
    display: inline-flex;
}

@media (max-width: 991px) {
    .leader-profile .d-flex {
        flex-direction: column;
    }
    
    .leader-image,
    .leader-info {
        width: 100%;
    }
    
    .leader-info h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .leader-info h2 {
        font-size: 24px;
    }
    
    .expertise-tags {
        gap: 8px;
    }
    
    .tag-item {
        font-size: 13px;
        padding: 6px 12px;
    }
}
