.hs-tc-hero-card {
    padding: 1rem 1rem 0.5rem 1rem;
    border-radius: 8px;
    background: #ffffff0f;
    transform: scale(1);
    transition: all 0.3s ease;
    border: 1px solid #00000000;
    text-align: center;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.hs-tc-hero-card:hover {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(var(--color-theme), 0.3) 100%);
    border: 1px solid #ffffff1f;

    transform: scale(1.05);
}

.hs-tc-hc-photo {
    position: relative;
    border-radius: 100%;
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
    border: 1px solid #363636;
    overflow: hidden;
}

.hs-tc-hc-role {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    border-radius: 100%;
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
    border: 1px solid #363636;
    overflow: hidden;
    background: #353533;
    border: 3px solid #353533;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.hs-tc-hero-card:hover .hs-tc-hc-role {
    /* background: var(--color-theme); */
    border: 3px solid var(--color-theme);
}

.hs-tc-hero-card:hover .hs-tc-hc-photo {
    border: 1px solid rgba(var(--color-theme), 1);
}

/* .hero-name-wrapper {
    white-space: nowrap;
    overflow: hidden;

    display: flex;
    justify-content: center;
} */

.hero-name-wrapper.is-long {
    /* justify-content: flex-start; */
    /* -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 90%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 90%);
    margin-left: 15px; */
    zoom: 0.85;
    margin-top: 5px;
}

/* .hero-name-wrapper.is-long:hover .hs-tc-hc-name {
    -webkit-mask-image: none;
    mask-image: none;

    animation: scrollText 2.5s linear infinite alternate;
} */

.hs-tc-hc-name {
    font-weight: 600;
    white-space: nowrap;
    /* display: inline-block;
    transition: transform 0.3s ease; */
}

/* @keyframes scrollText {

    0%,
    10% {
        transform: translateX(0);
    }

    90%,
    100% {
        transform: translateX(-20px);
    }

} */

.hs-tc-hc-stat {
    color: var(--color-default-text-50);
    font-size: 0.85rem;
}

/* Light mode styles */
.light .hs-tc-hero-card {
    background: #e8e8e8;
    border: 1px solid #d0d0d0;
}

.light .hs-tc-hero-card:hover {
    background: linear-gradient(180deg, #d0d0d0 0%, #c0c0c0 100%);
    border: 1px solid #a8a8a8;
    transform: scale(1.05);
}

.light .hs-tc-hc-photo {
    border: 1px solid #999999;
}

.light .hs-tc-hc-role {
    /* background: #cccccc; */
    border: 3px solid #cccccc;
}

.light .hs-tc-hero-card:hover .hs-tc-hc-role {
    /* background: #cccccc; */
    border: 3px solid var(--color-theme);
}

.light .hs-tc-hero-card:hover .hs-tc-hc-photo {
    border: 1px solid #666666;
}
