/* Team Member Block Styles */
.team-member-block {
    margin-bottom: 2rem;
}

.team-member-block .position-relative {
    position: relative;
}

.team-member-block .shape {
    position: absolute;
    border-radius: 0.4rem;
}

.team-member-block .card {
    position: relative;
    z-index: 1;
    border-radius: 0.4rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, 0.07);
}

.team-member-block .card-img-top {
    margin: 0;
    overflow: hidden;
}

.team-member-block .card-img-top img {
    width: 100%;
    height: auto;
    display: block;
}

.team-member-block .card-body h4 {
    color: #343f52;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-member-block .card-body p {
    color: #60697b;
    margin-bottom: 0;
}

/* Background color variations */
.bg-soft-blue { background-color: rgba(63, 120, 224, 0.1); }
.bg-soft-yellow { background-color: rgba(250, 183, 88, 0.1); }
.bg-soft-red { background-color: rgba(226, 98, 107, 0.1); }
.bg-soft-green { background-color: rgba(69, 196, 160, 0.1); }
.bg-soft-purple { background-color: rgba(116, 126, 209, 0.1); }
.bg-soft-orange { background-color: rgba(247, 139, 119, 0.1); }
.bg-soft-pink { background-color: rgba(209, 107, 134, 0.1); }
.bg-soft-leaf { background-color: rgba(124, 183, 152, 0.1); }
.bg-soft-aqua { background-color: rgba(0, 174, 239, 0.1); }
.bg-soft-navy { background-color: rgba(52, 63, 82, 0.1); }
.bg-soft-violet { background-color: rgba(160, 124, 197, 0.1); }
.bg-soft-fuchsia { background-color: rgba(230, 104, 179, 0.1); }

/* Responsive adjustments */
@media (max-width: 767px) {
    .team-member-block .shape {
        display: none !important;
    }
}
