.ngd-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 16px 0;
}

.ngd-team-card {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
}

.ngd-team-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #2a1040;
    overflow: hidden;
}

.ngd-team-photo img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center 10% !important;
    display: block !important;
}

.ngd-team-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.15);
}

.ngd-team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.ngd-team-name {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.ngd-team-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin: 4px 0 0;
}

.ngd-team-body {
    padding: 1.25rem;
}

.ngd-team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1rem;
}

.ngd-team-tag {
    background: #3a1a5e;
    color: #c084fc;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
}

.ngd-team-bio {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

