
.stbncpt-team-section {
    width: 100%;
}
.stbncpt-section-title {
    text-align: center;
    font-size: clamp(34px, 4vw, 44px);
    line-height: 1.15;
    margin: 0 0 36px;
    color: var(--stbncpt-heading-color, #2b2b2b);
    font-weight: 700;
}
.stbncpt-team-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(var(--stbncpt-desktop-cols, 4), minmax(220px, 280px));
    gap: 30px 40px;
    align-items: start;
}
.stbncpt-team-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}
.stbncpt-team-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #d2d9eb;
    overflow: hidden;
    border-radius: 3px;
}
.stbncpt-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.stbncpt-team-placeholder {
    width: 100%;
    height: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stbncpt-placeholder-icon {
    width: 54%;
    height: 54%;
}
.stbncpt-team-name {
    margin: 16px 0 8px;
    color: var(--stbncpt-name-color, #1e4ea1);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.1;
    font-weight: 700;
}
.stbncpt-team-designation {
    color: var(--stbncpt-designation-color, #222222);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.3;
}
@media (max-width: 1024px) {
    .stbncpt-team-grid {
        grid-template-columns: repeat(var(--stbncpt-tablet-cols, 2), minmax(200px, 280px));
        gap: 28px 28px;
    }
}
@media (max-width: 767px) {
    .stbncpt-section-title {
        margin-bottom: 24px;
    }
    .stbncpt-team-grid {
        grid-template-columns: repeat(var(--stbncpt-mobile-cols, 2), minmax(140px, 1fr));
        gap: 24px 24px;
    }
    .stbncpt-team-card {
        max-width: 300px;
    }
}
