
/* =========================
   Problem-Solving Roles
========================= */

.roles-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 30px;
}

/* role card */

.role-card {

    background-color: #FAF8F3;

    border: 2px solid #D8D3CA;
    border-radius: 14px;

    padding: 16px 18px;

    cursor: pointer;

    transition: all 0.2s ease;

    color: #232826;
}

.role-card:hover {
    border-color: #556B5D;
    transform: translateY(-2px);
}

.role-card.selected {
    background-color: #556B5D;
    border-color: #556B5D;
    color: white;
}

.role-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.role-desc {
    font-size: 13px;
    opacity: 0.85;
}

/* disabled button */

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}