.sc-container-6f4d27ac {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sc-card-6f4d27ac {
    position: relative;
    background-color: var(--sc-card-bg, #1a1a1a);
    border: 1px solid var(--sc-card-border, #333333);
    padding: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
    cursor: default;
    height: 100%;
    /* Initialize vars to center before first hover */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(255, 255, 255, 0.08);
}

.sc-card-6f4d27ac:hover {
    border-color: var(--sc-card-border-hover, #b3955b);
}

/* Spotlight Effect */
.sc-card-6f4d27ac::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;
}

.sc-card-6f4d27ac:hover::before {
    opacity: 1;
}

/* Inner Content */
.sc-content-6f4d27ac {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sc-header-6f4d27ac {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.sc-image-wrap-6f4d27ac {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-image-wrap-6f4d27ac img {
    max-width: 100%;
    height: auto;
}

.sc-watermark-6f4d27ac {
    font-size: 48px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    font-weight: 300;
}

.sc-title-6f4d27ac {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 15px;
    font-family: serif;
    font-weight: normal;
}

.sc-desc-6f4d27ac {
    font-size: 15px;
    color: #999999;
    line-height: 1.6;
    margin: 0;
}