.career-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin: 20px 0 30px;
}

.career-option-card {
    min-height: 170px;
}

.career-option-card p {
    color: #5f6f82;
    line-height: 1.5;
}

.career-focus-mode .career-videos-section {
    filter: blur(3px);
    opacity: 0.28;
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.career-videos-section {
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.career-wizard {
    display: none;
}

.career-wizard.is-open {
    display: block;
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.wizard-progress span {
    height: 7px;
    border-radius: 99px;
    background: #d8dee8;
}

.wizard-progress span.active {
    background: #0b1c3d;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.choice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #fff;
}

.rating-row {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) 180px;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.interest-row {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) 90px;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.wizard-error {
    color: #b00020;
    font-weight: bold;
    margin-top: 10px;
}

.career-results {
    display: none;
}

.career-results.is-open {
    display: block;
}

.career-match {
    border-left: 5px solid #0b1c3d;
}

.match-pill {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eaf0ff;
    color: #0b1c3d;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wizard-progress {
        grid-template-columns: repeat(4, 1fr);
    }

    .rating-row,
    .interest-row {
        grid-template-columns: 1fr;
    }
}
