.sbc-container-855eed5d {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sbc-card-855eed5d {
    position: relative;
    background-color: var(--sbc-card-bg, #1a1a1a);
    border: 1px solid var(--sbc-card-border, #2a2a2a);
    border-left: 2px solid transparent;
    padding: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-left-color 0.3s ease, border-color 0.3s ease;
    cursor: default;
    height: 100%;
    min-height: 250px;
    /* Initialize vars to center before first hover */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(255, 255, 255, 0.06);
}

.sbc-card-855eed5d:hover {
    border-left-color: var(--sbc-border-hover, #b3955b);
}

/* Spotlight Effect */
.sbc-card-855eed5d::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        var(--spotlight-color),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.sbc-card-855eed5d:hover::before {
    opacity: 1;
}

/* Inner Content */
.sbc-content-855eed5d {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sbc-category-855eed5d {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888888;
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}

.sbc-title-855eed5d {
    font-size: 32px;
    color: #ffffff;
    margin: 0 0 20px;
    font-family: serif;
    font-weight: normal;
}

.sbc-desc-855eed5d {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
    margin: 0 0 30px;
}

.sbc-tags-855eed5d {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.sbc-tag-855eed5d {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaaaaa;
    border: 1px solid #333333;
    padding: 6px 14px;
    border-radius: 2px;
}