.people-section {
    padding: 24px 0 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    background-color: #fff;
    padding:12px 24px;
}

.breadcrumb .home-icon {
    width: 21px;
    height: 21px;
}

.breadcrumb .crumb-link {
    color: #333;
    text-decoration: none;
}

.breadcrumb .sep {
    color: #999;
    margin: 0 4px;
}

.breadcrumb .current {
    color: #000;
    font-weight: 600;
}

.leader-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #fff;
    padding: 24px;
}

.leader-row {
    display: grid;
    align-items: start;
    gap: 0; 
}

.leader-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.leader-row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.leader-card {
    text-align: center;
    padding: 12px 24px;
}

.leader-row .leader-card:not(:first-child) {
    border-left: 1px solid #E5E5E5;
}

.photo-wrap {
    display: inline-block;
    width: 198px;
    height: 281px;
    overflow: hidden;
    border-radius: 4px;
    background: #f7f7f7;
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    margin-top: 12px;
    font-size: 16px;
    color: #222;
    font-weight: 600;
    line-height: 1.4;
}

.leader-title {
    margin-top: 4px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .leader-row-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .leader-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .leader-grid {
        gap: 16px;
    }
    .leader-card {
        padding: 12px 16px;
    }
}