.exam-shell {
    width: min(1180px, calc(100% - 32px));
}

.exam-start .brand-mark {
    background: linear-gradient(135deg, #94d82d, #f0b84f);
}

.exam-link {
    background: #e8f7df;
    border-color: #aad27b;
}

.exam-card {
    min-height: 500px;
}

.exam-workspace {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.exam-clue {
    display: grid;
    align-content: center;
    gap: 10px;
    min-height: 180px;
    border: 1px solid #d9e1e8;
    border-radius: 8px;
    padding: 18px;
    background: #fff8e6;
}

.exam-clue span {
    color: #6b4a00;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.exam-clue strong {
    color: #3f2a00;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1;
}

.exam-visual {
    min-height: 180px;
}

.exam-option-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
}

.exam-option {
    min-height: 72px;
    padding: 10px 14px;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.1;
}

.finish-link {
    justify-self: center;
}

@media (max-width: 760px) {
    .exam-shell {
        width: min(100% - 20px, 1180px);
    }

    .exam-workspace {
        grid-template-columns: 1fr;
    }

    .exam-clue {
        min-height: auto;
        text-align: center;
    }

    .exam-card {
        min-height: 560px;
    }
}
