.scw-card-wrap {
    display: inline-block;
}

.scw-card {
    background: #f5f6f8;
    border-radius: 32px;
    padding: 18px;
    width: 260px;            /* keep overall card width consistent */
    text-align: center;
    box-sizing: border-box;
}

.scw-card-image {
    width: 179px;
    height: 214px;
    margin: 0 auto 14px;
    border-radius: 26px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scw-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* key part – fills the frame while cropping evenly */
    object-position: center;
    display: block;
}

.scw-card-text {
    padding: 4px 6px 6px;
}

.scw-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #262656;
    margin-bottom: 4px;
}

.scw-card-title {
    font-size: 14px;
    font-weight: 400;
    color: #8a8a8a;
}
