.sc-question {
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    color: #475569;
    margin: .3rem 0 .6rem;
}

.sc-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: .8rem 0;
}

.sc-shape {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: .8rem 1rem;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

.sc-shape:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.sc-shape svg {
    display: block;
    width: 120px;
    height: 120px;
}
