.ifag-member-card {
    background: #f8f8f7;
    padding: 20px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.ifag-member-card-initials {
    background: #ce2139;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skew(-10deg);
    border-radius: 2px;
}

.ifag-member-card-initials-text {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    transform: skew(10deg); /* Counter-skew to keep text straight */
    display: inline-block;
}

.ifag-member-card-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ifag-member-card-name {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.ifag-member-card-role {
    font-size: 12px;
    color: #ce2139;
    font-weight: 600;
    margin-top: 5px;
}

.ifag-member-card-company {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.ifag-member-card:hover {
    background: #f1f1f0;
    transform: translateY(-3px);
}
